peterwilson_69
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Weaver] What are the minimum requirements?I’m stuck using WP 2.8.4 because my web host provider is grapevine.com.au (and they suck)… and my client wants to stick with them… so I’m double-stuck!
It’s very frustrating trying to find themes and plugins for 2.x
Yes, I’m trying to get the old Weaver working that is no longer officially supported.
Thanks for any help peoples : )
PS.
As it turned out, permissions, httpd.ini and permalinks had nothing to do with this error.The following post got my brain thinking:
Internal Server Error on index.phpI edited the index.php file and changed the path from…
require('./wordpress/wp-blog-header.php');
…to…
require('wordpress/wp-blog-header.php');
…and the wordpress site started working. Must be a Windows/IIS6 path thing.Note: I’ve installed WordPress to a separate subdirectory to avoid cluttering up the root directory. However if you’ve installed WordPress into the root directory, I suspect you’ll just have to remove the
./part.Wow! I can’t believe I overlooked such a simple thing (as did another technical person helping me).
The wordpress site works fine if I copy it to a subdirectory.
wwwroot\wordpress <-- works fine wwwroot\index.php <-- returns 500 errorHowever the index.php file in the root directory always returns HTTP/1.1 500 Internal Server Error.
I’m getting the same error as this guy:
index.php not working in root with iis6I suspect the webserver has a corrupted configuration.
Thanks but did not work. I created a subdirectory for another wordpress installation, and this works… however I can not get the index.php file to work in wwwroot. It never works and always returns:
HTTP/1.1 500 Internal Server Error
I’ll probably delete everything and start again… but it feels like some stupid permissions problem or IIS6 configuration issue.
My httpd.ini file contains:
RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]Only the wp-admin section of the website works, everything else is either a 404 or 500 error.