Initiates the "0x00000000" memory referenced by the Apache error "0x6eec38dc" directive. The memory cannot be "read".
The reason: configured over httpd.conf, added a Web site configuration that points to the mobile hard disk.
The code is as follows |
Copy Code |
<virtualhost *:80> DirectoryIndex index.html index.php ServerName "www.sjolzy.cn" DocumentRoot "j:/www/sjolzy.cn" <directory "j:/www/sjolzy.cn" > Options Indexes MultiViews AllowOverride All Order Allow,deny Allow from all </Directory> </VirtualHost> |
J is a mobile hard drive letter, two days before the configuration, these two days to start Apache error memory can not be read: ' "0x6eec38dc" instruction Reference "0x00000000" memory. The memory cannot be "read". ' And at night it was remembered. Deleted the reboot, sure enough.
Solutions introduced by other friends
First, if you can exclude the hardware reasons (memory is incompatible, replace the memory. Is the video card driver correctly pressed or is it maliciously overwritten? ) Look down:
Second, the system or other software caused by the following methods can be handled: the system itself has problems, timely installation of the official release of the patch, if necessary, reload the system. Virus problem: Antivirus. Antivirus software conflicts with other software: uninstalling the problematic software.
Third, the browser appears memory can not read, write tips: 1, run →regedit→ into the registry, in →
Hkey_local_machine/software/microsoft/windows/currentversion/explorer/shellexecutehooks
This position has a normal key value of {aeb6717e-7e19-11d0-97ee-00c04fd91972}, which deletes the other.
2, open the cmd window to enter the following command:
The code is as follows |
Copy Code |
For%i in (%windir%/system32/*.dll) do regsvr32.exe/s%i carriage return For%i in (%windir%/system32/*.ocx) do regsvr32.exe/s%i carriage return reboot.
|
If the above method cannot be solved, only use the last resort:
Fully registered DLL: Open run input →cmd→ carriage return
Then the following line of characters copied into the Black cmd box to return to wait for the DLL file to complete the registration is closed, in order to prevent input errors can be copied this instruction, and then at the command prompt after the right mouse button → paste → enter, patiently wait until the screen scrolling stop.
(Here's the code to run):
The code is as follows |
Copy Code |
For%1 in (%windir%/system32/*.dll) do regsvr32.exe/s%1
|
Reboot the machine when finished.