daddyg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Strange error after upgrading to v2.6FYI I uninstalled classic and default themes. I thought reinstalling them might help but I still get the same warning with the unamended themes.php
Forum: Fixing WordPress
In reply to: GET variables causing problemsHi Burtonkent,
I think you’ve might have the same problem as me:-
https://www.ads-software.com/support/topic/155694?replies=1#post-689332
The 404 is caused for me by the &name variable passed on by aweber to the query string in the url.
If you remove it the 404 should go. Though obviously if you want to use the name that’s not a solution.
Cheers…Graham
Forum: Fixing WordPress
In reply to: Possible URL length problemThanks huckmag.
But can’t you just use the post slug feature in the wp control panel to abbreviate the post-title to something shorter?
I was really trying to find out if there was a known limit that would explain why one works and the other doesn’t.
Anyone know about a max url length
Thanks
Graham
Forum: Installing WordPress
In reply to: Images not found on Permalinks page.Ok, the problem I have now is that my menu links in the left hand column of the permalink url:-
https://www.golfbettingguide.com/blog/2006/07/31/scandinavian-masters-2006-tip-1/
now point to a wrong address. For instance, the “exchange betting” menu link goes to:
https://www.golfbettingguide.com/blog/2006/07/31/content/exchange-betting-guide.php
when it should be
https://www.golfbettingguide.com/content/exchange-betting-guide.phpThe menu link has a relative path set:
“../content/exchange-betting-guide.php”but ofcourse I can’t change the path to:
“../../../../../content/exchange-betting-guide.php” because the menu is contained in the wp blog theme index.phpI know this is related to mod_rewrite(). I have two .htaccess files, one at
golfbettingguide.com which contains:RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html .phtmland one at golfbettingguide/blog which contains:
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html .phtml<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect FeedBurner to your own Feed
RewriteBase /blog/
RewriteRule ^feedburner_417786/?$ /blog/feed/ [R,L]
RewriteCond %{HTTP_USER_AGENT} ^FeedBurner.*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
# Feed Redirect Rules will go here
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>I’m not sure which .htaccess file (I’m guessing the blog one?) I need to change, or to what, so I’d be extremely grateful for any advise offered.
Many thanks,
Forum: Installing WordPress
In reply to: Images not found on Permalinks page.I’ve got the images on the permalinks pages displaying by placing absolute full path’s to the images in my theme’s index.php file, eg I’ve specified my logo url as:
https://www.golfbettingguide.com/images/gbg.gif
But I’m not sure I should need to specify absolute path’s should I? Or is that the only solution?
In case it’s relevant my .htaccess file for my blog (located at: https://www.golfbettingguide.com/blog/ )l
looks like this:RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html .phtml<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect FeedBurner to your own Feed
RewriteBase /blog/
RewriteRule ^feedburner_417786/?$ /blog/feed/ [R,L]
RewriteCond %{HTTP_USER_AGENT} ^FeedBurner.*$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
# Feed Redirect Rules will go here
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>I’d really appreciate if anyone has any advice on this.
Forum: Installing WordPress
In reply to: Images not found on Permalinks page.Sorry that should have read:
I have two images folders (containing the same images), at
GolfBettingGuide.com/images
and
GolfBettingGuide.com/blog/wp-content/themes/GBG/imagesThanks.
Forum: Fixing WordPress
In reply to: wp duplicating blog page all over my siteAll sorted!
I had a mod_rewrite rule in the .htaccess file at
GolfBettingGuide.com aswell as in the .htaccess file at
GolfBettingGuide.com/blogForum: Fixing WordPress
In reply to: Simple .htaccess questionThanks Cypher..that’s a big help
Cheers.
Forum: Fixing WordPress
In reply to: wp duplicating blog page all over my siteThinking about this some more, it must be related to my .htaccess file I think. I did amend it a couple of weeks ago when I was trying to install and set up the wp feedburner plug in. Anyway, this is what my .htaccess file looks like:-
RemoveHandler .html .htm
AddType application/x-httpd-php .php .htm .html .phtml<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>Does this look ok? Could the mod_rewrite rule be causing this do you think?
Thanks for any help
Forum: Everything else WordPress
In reply to: using wordpress for a link directoryIf someone in wp support could help me out here, I’d really appreciate it.
Thanks again.
DaddyG
Forum: Themes and Templates
In reply to: Questions about my website design to wordpress themeThank you …that’s just the sort of guide I’m looking for.
Cheers.