gaugeboson Posted April 21, 2008 Share Posted April 21, 2008 Server error! The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script. I am not really sure where to go with this one. If I delete the .htaccess file inside of the htdocs folder I get this message: Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\phpweb20\htdocs\index.php on line 2 Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\phpweb20\htdocs\index.php on line 2 Link to comment https://forums.phpfreaks.com/topic/102173-server-error-500/ Share on other sites More sharing options...
PFMaBiSmAd Posted April 21, 2008 Share Posted April 21, 2008 What is in your .htaccess file? My guess is that you have statements that are trying to set php values or flags and php is running as a CGI wrapper. You cannot set php value in a .htaccess file when php is running as a CGI wrapper (you need to use a local php.ini in this case.) Link to comment https://forums.phpfreaks.com/topic/102173-server-error-500/#findComment-523080 Share on other sites More sharing options...
gaugeboson Posted April 21, 2008 Author Share Posted April 21, 2008 My .htaccess file: RewriteEngine on RewriteCond %{SCRIPT_FILENAME} !-f RewriteCond %{SCRIPT_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 Link to comment https://forums.phpfreaks.com/topic/102173-server-error-500/#findComment-523113 Share on other sites More sharing options...
PFMaBiSmAd Posted April 21, 2008 Share Posted April 21, 2008 It is likely that mod_rewrite is not enabled on the server. Link to comment https://forums.phpfreaks.com/topic/102173-server-error-500/#findComment-523131 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.