|
|
#1 (permalink) |
|
the cool one
Seasoned Poster
Joined in Dec 2007
80 posts
Gave thanks: 10
Thanked 1 Time in 1 Post
|
Grr Wordpress hasn't been working for a while now.
![]() Tell Him The pages don't work, comments don't work only the index page works. Anyone know why?
__________________
|
|
|
|
|
|
#4 (permalink) |
|
Senior Member
Super #1
Joined in Jan 2005
1,546 posts
Gave thanks: 70
Thanked 33 times
|
Looks like you set up permalinks...did WordPress not create an htaccess for you?
If you already had an htaccess, it might not have plopped the code into it. It should have inserted the following: Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
|
|
|
|
|
|
#5 (permalink) |
|
Registered User
Fresh Surpasser
Joined in Mar 2008
Hosted on sh138
11 posts
Gave thanks: 3
Thanked 0 times
|
ceo's on the ball.
For some reason, WordPress has a hard time detecting Apache on Surpass servers. I had the same problem over on sh138. If you feel like getting your hands dirty, open wp-includes/vars.php in your editor of choice. Look for this bit of code around line 61: Code:
$is_apache = ((strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') !== false) || (strpos($_SERVER['SERVER_SOFTWARE'], 'LiteSpeed') !== false)) ? true : false; Code:
$is_apache = true; Once you've done that, simply go into the Settings -> Permalinks section of your WordPress admin panel, select your preferred permalinks scheme, and hit Save Changes. But yeah, ceo's solution is a fair bit easier. ![]()
__________________
PaperStSoapCo.com, sh138 |
|
|
|
|
|
#6 (permalink) |
|
Custom User Title
Seasoned Poster
Joined in Jul 2008
Lives in Sydney, Australia
Hosted on sh144
55 posts
Gave thanks: 1
Thanked 1 Time in 1 Post
|
I think it has to do with phpSuExec
Basically there's some variables that now need to be specified in a php.ini instead of an htaccess because PHP is running as a service and not as a module of apache I just submitted a ticket to helpdesk and it's all good |
|
|
|