vBulletin Search Engine Optimization
This is a discussion on Add-on for vBadvanced Gallery URLs within the Feature Requests forums, part of the vBSEO Google/Yahoo Sitemap category; Progress , but there is still a couple of problems. The URLs get added to the files, but the showimage.php ...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#16
| |||
| |||
|
Progress The URLs get added to the files, but the showimage.php URLs are missing the 'i=' part For example: Code: http://gallery.wirelessadvisor.com//showimage.php?900 should be Code: http://gallery.wirelessadvisor.com/showimage.php?i=900 I see where to add that in your php file, but I wanted to point it out for other people who want to use this. Also the URLs added have that double forward slash // can I just remove the trailing forward slash from $gallery_url ? |
|
#17
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs Quote:
The correct one shall be Code: <?php
# vbSEO Google Sitemap Generator - PhotoPost vbGallery Add On.
# Written by Lizard King (http://www.ayyas.com)
# Full HTTP path to your gallery root (without trailing forwardslash ex: 'http://www.ayyas.com/galeri'; )
$gallery_url = 'http://www.ayyas.com/galeri';
$mods = $db->query("SELECT catid,title FROM " . TABLE_PREFIX . "adv_gallery_categories ORDER BY `displayorder`");
while ($mod = $db->fetch_array($mods))
{
$url = $gallery_url.'/browseimages.php?c='.$mod['catid'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
$mods = $db->query_read('SELECT imageid,dateline FROM ' . TABLE_PREFIX . 'adv_gallery_images');
while ($mod = $db->fetch_array($mods))
{
$url = $gallery_url.'/showimage.php?i='.$mod['imageid'];
if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
?>
|
|
#18
| |||
| |||
|
It works great now. Thank you for making this! |
|
#19
| |||
| |||
|
deleted
|
|
#20
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs
Ah yes, you have your Gallery on another domain. You'll have to add it to a separate Google Webmaster entry. You would need to find some way to separate the Gallery URLs into their own sitemap file(s).
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#21
| |||
| |||
|
I have run into a new problem with the Gallery URLs. After they are submitted to Google, I get this error in my account for each one: Quote:
http://forums.wirelessadvisor.com (gallery URLs are appended to these sitemap files) while the Gallery URLs are all under http://gallery.wirelessadvisor.com Any idea how to resolve this issue? |
|
#22
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs
See my previous reply.
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#23
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs
Or, you could convert everything over to www.wirelessadvisor.com. Home: http://www.wirelessadvisor.com Forums: http://www.wirelessadvisor.com Gallery: http://www.wirelessadvisor.com/gallery
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#24
| |||
| |||
| Re: Add-on for vBadvanced Gallery URLs
Actually, physically on the server that is already my directory structure.
Last edited by Ocean; 11-25-2006 at 07:30 PM. |
|
#25
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs
True, I remember that now. You could just change your gallery URL to: http://forums.wirelessadvisor.com/gallery
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#26
| |||
| |||
| Re: Add-on for vBadvanced Gallery URLs
I don't think that will work either because then those URLs actually resolve to: http://www.wirelessadvisor.com/forums/gallery which doesn't exist. the /forums/ and /gallery/ directories are parallel. |
|
#27
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs
Ahhh yes. Quite the conumdrum. Might be time to try to consolidate your CT server.
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#28
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs Quote:
the only difference is my forum is www.mysite.com/forum.html |
|
#29
| |||
| |||
| Re: Add-on for vBadvanced Gallery URLs
Is it possible to have this add-on create a separate .xml.gz sitemap file that contains only the Gallery URLs? And, write that file to a specified directory?
|
|
#30
| ||||
| ||||
| Re: Add-on for vBadvanced Gallery URLs I am not sure about it. I will give it a try but it may be though to accomplish.
|
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Sitemap generating a lot more urls | poprulz | Troubleshooting | 13 | 02-28-2007 05:15 PM |
| Google Sitemap-Listing of old url's option-from 1.7 | T2DMan | Member Articles | 0 | 04-02-2006 09:46 AM |
| what to do with old urls? | Jonathan | General Discussion | 6 | 08-04-2005 04:57 PM |