Application Error apache.exe – Modul msvcr71.dll

Posted by Chris B. Kerndter on Januar 20, 2009, under Bugs, Knowledgebase.

I just came across a little problem with my XAMPP installation. After reorganising some local virtual webservers in my %SYSTEM%/drivers/etc/host and %APACHE%/conf/extra/httpd-vhosts.conf

I could not restart my apache through the XAMPP Control Panel it just kept crashing with the error

	Fehlgeschlagene Anwendung apache.exe, Version 2.2.4.0,
	fehlgeschlagenes Modul msvcr71.dll, Version 7.10.3052.4,
	Fehleradresse 0x000017fb.

I restarted my machine but no change. I checked out the changes I had made to the httpd.conf file an realized I had not only used blanks in my webserver path -which worked fine so far, if quoted-, but also “umlaut” or mutated vowels. After changing these to the international circumscription, everything worked fine and I was able to restart my apache.

NameVirtualHost www.dapper-anhaenger.loc

<VirtualHost *:80>
	ServerName www.dapper-anhaenger.loc
	DocumentRoot "E:/2009/Dapper Anhänger/de.anhaenger-dapper.www"
	DocumentRoot "E:/2009/Dapper_Anhaenger/de.anhaenger-dapper.www"
	<Directory "E:/2009/Dapper Anhänger/de.anhaenger-dapper.www">
	<Directory "E:/2009/Dapper_Anhaenger/de.anhaenger-dapper.www">
		AllowOverride All
		Order allow,deny
		Allow from all
	</Directory>
	ErrorLog "E:/2009/Dapper Anhänger/de.anhaenger-dapper.www/error.log"
	ErrorLog "E:/2009/Dapper_Anhaenger/de.anhaenger-dapper.www/error.log"
	CustomLog "E:/2009/Dapper Anhänger/de.anhaenger-dapper.www/access.log" common
	CustomLog "E:/2009/Dapper_Anhaenger/de.anhaenger-dapper.www/access.log" common
</VirtualHost>

No related posts.

Ähnliche Artikel bereitgestellt von Yet Another Related Posts Plugin.

Leave a Comment