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 Quote Link to comment 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.) Quote Link to comment 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 Quote Link to comment 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.