404 issue
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- 404 issue
404 issue
11-04-2010 1:35 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I can get to my home page when I use Firefox's Uppity extension - say I'm on http://www.larryni.me.uk/blog/about/ and activate Uppity then it takes me up a step to the blog/index page.
I've upgraded WP, went through all the WP settings and changed the theme - to no avail. Is it possible that something else changed when Plusnet did the CGI upgrades? I did notice WP giving me quite a few errors shortly after CGI came back on, but all went back to normal then.
Also, are there any plans to restore ssh access? It was so much handier to use when doing upgrades.
Re: 404 issue
11-04-2010 2:31 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
A cgi-platform-php-upgrade-faq gives useful information on the implications of the upgrade. The /~username feature you mentioned is associated with the suEXEC security model and this post on Page 2 of the long thread gives more information.
As far as reintroduction of ssh access is concerned I would think that is most unlikely.
Re: 404 issue
11-04-2010 3:13 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I had a look in my .htaccess, but really have no idea what to change - it was created by WP initially:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php
</IfModule>
Could anyone point me in the right direction please?
Re: 404 issue
11-04-2010 6:25 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Is anyone here good with regular expressions?

Re: 404 issue
16-04-2010 11:26 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I still haven't been able to sort this out. There's gotta be someone who can help me with this?
Re: 404 issue
16-04-2010 2:54 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Does using something like the following to solve the trailing slash problem help?
Quote from: Gabe You'll notice that on the new ccgi platform, %{REQUEST_FILENAME} does contain the full file path and can be tested for file or directory status, so the trailing-slash problem would now be solved by:
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [R,L]
That comes from Gabe's post I linked to earlier.
Re: 404 issue
16-04-2010 3:08 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I did try to change my .htaccess based on that snippet from Gabe's post, but I have no luck with it. I tried simply adding it to htaccess as is, replacing / with /blog/, and also rewriting the part that Wordpress added (see above) and simply cannot get rid of the 404 when the trailing slash is missing.
Re: 404 issue
16-04-2010 11:06 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
You need to retain RewriteEngine On, of course. I would try with each of
RewriteBase / and
RewriteBase /blog/
Re: 404 issue
20-04-2010 9:49 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
If you still want to fix the trailing slash problem, try putting this
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^(.+[^/])$ $1/ [R,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php
in a .htaccess in your root folder and deactivate the .htaccess in your blog folder (by renaming it was.htaccess or similar).
Gabe
Re: 404 issue
21-04-2010 10:46 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator

adie:quote
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page