vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
vBSEO Total Support Team Launches DeskPro New vBSEO Discount Level for Network Builders vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Album pictures with 3.7.3 and vbseo 3.2 not working

This is a discussion on Album pictures with 3.7.3 and vbseo 3.2 not working within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Originally Posted by abroad yes, by switching just the Member's Profile URLs rewrite rules off it works We now know ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > Troubleshooting

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read

Reply

 

LinkBack Thread Tools
  #16  
Old 08-31-2008, 03:01 PM
MadK's Avatar
Senior Member
 
Real Name: Leo
Join Date: Jun 2008
Location: Canada
Posts: 124
Blog Entries: 2
Quote:
Originally Posted by abroad View Post
yes, by switching just the Member's Profile URLs rewrite rules off it works
We now know that it is either caused by misconfiguration in your .htaccess (which is very unlikely if you haven't made any changes to it) or your member profile URLs rewrite rules.

Therefore, I will share with you my member profile URLs custom settings with which I have fixed a similar issue to yours in the past(backup as always):
You can change it to your likings, obviously, but keep a similar "form". These are all custom settings; thus, clicking the custom radio box is required.

Member Profile

[user_name]-[user_id].html

Visitor Messaging Pagination

members/[user_id]-[user_name]-page[page].html

Visitor Conversation

members/convo-[user_name]-[user_id]-with-[visitor_name]-[visitor_id].html

Visitor Conversation Pagination

members/[user_name]-[user_id]-with-[visitor_name]-[visitor_id]-page[page].html

Friends List Pagination

members/[user_name]-[user_id]-friends-page[page].html

Albums List

members/[user_name]-[user_id]-albums.html

Albums

members/[user_name]-[user_id]-albums-[album_title].html

Picture Page

members/[user_name]-[user_id]-albums-[album_id]-[album_title]-picture[picture_id]-[picture_title].html

Picture Page Pagination

members/[user_name]-[user_id]-albums-[album_title]-picture[picture_id]-[picture_title]-page[page].html

Picture File

members/[user_name]-[user_id]-albums-[album_title]-picture[picture_id]-[picture_title].[original_ext]


Unfortunately, I don't know which setting causes the bug; therefore, I recommend you to change all of your member profile URLs with my custom settings or use a similar form.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #17  
Old 08-31-2008, 03:09 PM
Member
 
Real Name: Patrick
Join Date: Mar 2007
Posts: 67
Thanks a lot. Made all the changes but didn't solve the problem.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #18  
Old 08-31-2008, 03:15 PM
MadK's Avatar
Senior Member
 
Real Name: Leo
Join Date: Jun 2008
Location: Canada
Posts: 124
Blog Entries: 2
Quote:
Originally Posted by abroad View Post
Thanks a lot. Made all the changes but didn't solve the problem.
Can you please post the content of your .htaccess and wrap it in [code] tags? Thank you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #19  
Old 08-31-2008, 03:18 PM
Member
 
Real Name: Patrick
Join Date: Mar 2007
Posts: 67
Code:
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On



# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
#RewriteBase /

#RewriteCond %{HTTP_HOST} !^www\.finlandlive\.info
#RewriteRule (.*) http://www.finlandlive.info/$1 [L,R=301]

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #20  
Old 08-31-2008, 03:35 PM
MadK's Avatar
Senior Member
 
Real Name: Leo
Join Date: Jun 2008
Location: Canada
Posts: 124
Blog Entries: 2
Are you running on a Windows server or Unix system?

If you are running Windows, please check this post:

User Albums - Pictures Not Displaying

If you are running Unix system, please check this post:

User Albums - Pictures Not Displaying

This has nothing to do with the topic, but I checked your robots.txt and noticed a misconfiguration. First of all, you are trying to block ALL spiders from indexing your forums which makes vBSEO totally useless and you have a typo. This is your current code:

Code:
User-agent: *
Disallow:
Sitemap: http://www.finlandlive.info/sitemap_index.xml.gz

This is the correct form

User-agent: *
Disallow: /
Sitemap: http://www.finlandlive.info/sitemap_index.xml.gz
I am just telling you the correct form so you can learn from your mistakes WITHOUT suggesting you to use it, because like I said, it makes vBSEO totally useless because if you read your robots.txt configuration like a webmaster, it basically means:

"Block all search engines from indexing me but here, look at my sitemap, oh no wait, I blocked you."



Therefore, the "expected" form should be:

Code:
User-Agent: *
Allow: /
Sitemap: http://www.finlandlive.info/sitemap_index.xml.gz
However, make sure to block your pages that do not need to be indexed, such as the register page, and many others. This is my robots.txt file, use a similar robots.txt if you want.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #21  
Old 08-31-2008, 03:47 PM
Member
 
Real Name: Patrick
Join Date: Mar 2007
Posts: 67
Thank you!

I am using Unix. Well it says that I have to add these lines in htaccess, but where do I see the name e.g. useralbums in this case:

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|useralbums/)

RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images|user albums)/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #22  
Old 08-31-2008, 04:00 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Update: resolved via support ticket. functions_vbseo.php file modified for that.
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #23  
Old 08-31-2008, 04:04 PM
Member
 
Real Name: Patrick
Join Date: Mar 2007
Posts: 67
thanks a lot! Everything works fine now!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #24  
Old 08-31-2008, 05:06 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
You are welcome!
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Can't delete an album because of vBSEO ? MonkY Troubleshooting 2 08-29-2008 04:10 PM
RC4 Pictures are gone Griechenland Bug Reporting 36 08-14-2008 06:12 AM
VbSeo Upgrade Sonrası Album Sorunu. with you Türkçe 8 07-01-2008 05:04 AM


All times are GMT -4. The time now is 01:13 AM.


Powered by vBulletin Version 3.8.0 Release Candidate 2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.