vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   Administrative and Maintenance Tools - vBSEO Google/Yahoo Sitemap Generator (https://vborg.vbsupport.ru/showthread.php?t=184573)

hugh_ 07-10-2008 05:22 AM

Quote:

Originally Posted by iojam (Post 1571686)

I can't access the file in the thread...

hugh_ 07-10-2008 06:45 PM

Is there some other way I can get to this file?

Hugh

Chris04S 07-10-2008 07:55 PM

Are there any upload instructions for this? Do we upload the htaccess folder to the root/forum directory, do we not?

murrtex 07-11-2008 05:45 PM

Thanks

chevy01xtreme 07-12-2008 01:46 AM

done fast question after i CHMOD 777 the 'forum-root/vbseo_sitemap/data/' folder . do i leave it this way. or i change the premissions back to 744 ?

imported_silkroad 07-12-2008 06:21 AM

In our forum at www.unix.com/forum_index.php forum 2 is the "Dummies" forum with over 14, 000 threads.

However, the logfile of the sitemap generating process says:

Quote:

[homepage] [2,525.5Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay [2,525.7Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 2, total threads: 335, pages: 9 [2,526.3Kb mem used] [0s (+0s)]

(blah blah....)
Why does the forum have so many threads but the sitemap generator says there are 355 threads??

iojam 07-12-2008 09:20 AM

hugh_,

try to simply replace "dl_cats" with "file_cats" and "dl_files" with "file_files".


Chris04S,

.htaccess should be created in forums folder.


chevy01xtreme,

leave it at 0777.


imported_silkroad,

you have "Default View Age" option set to "Last month", so older threads are cut out: http://www.unix.com/unix-dummies-que...rs/index9.html I'd recommend to disable this option to show ALL thread for better exposure to search engines.

hugh_ 07-12-2008 09:42 AM

Quote:

Originally Posted by iojam (Post 1573444)
hugh_,

try to simply replace "dl_cats" with "file_cats" and "dl_files" with "file_files".

I don't see any instances of dl_cats or dl_files, the values are already marked as file_cats and file_files...

Hugh

iojam 07-12-2008 10:02 AM

Oh, that should be reverse replacement then :) ("file_"=>"dl_").

hugh_ 07-12-2008 11:09 AM

Having applied the changes you suggested leaving me with the following I still get an error (below):

Code:

<?php

/************************************************** ****************************************
* vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc. *
*-----------------------------------------------------------------------------------------*
* *
* Copyright ? 2005-2008, Crawlability, Inc. All rights reserved. *
* You may not redistribute this file or its derivatives without written permission. *
* *
* Sales Email: sales@crawlability.com *
* *
*-------------------------------------LICENSE AGREEMENT-----------------------------------*
* 1. You are free to download and install this plugin on any vBulletin forum for which *
* you hold a valid vB license. *
* 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files *
* themselves. *
* 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files. *
* 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution. *
************************************************** ****************************************/

$mods = $db->query("SELECT id,name FROM " . TABLE_PREFIX . "dl_cats ORDER BY `order`");
while ($mod = $db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/downloads.php?do=cat&id='.$mod['id'].'&name='.urlencode($mod['name']);

if(VBSEO_ON)
$url = vbseo_any_url($url);

vbseo_add_url($url, 1.0, '', 'daily');
}

$mods = $db->query("SELECT ff.id as fid, ff.name as fname, fc.id as cid, fc.name as cname FROM " . TABLE_PREFIX . "dl_files ff LEFT JOIN dl_cats fc ON
ff.catid=fc.id");
while ($mod = $db->fetch_array($mods))
{
$url = $vbseo_vars['bburl'].'/downloads.php?do=file&id='.$mod['fid'].'&name='.urlencode($mod['fname']).'&cat='.urlencode($mod['cname']);

if(VBSEO_ON)
$url = vbseo_any_url($url);
vbseo_add_url($url, 1.0, '', 'daily');
}
?>

Error:

<!--
Database error in vBulletin 3.7.2:

Invalid SQL:
SELECT id,name FROM dl_cats ORDER BY `order`;

MySQL Error : Unknown column 'order' in 'order clause'
Error Number : 1054
Request Date : Saturday, July 12th 2008 @ 07:06:33 AM
Error Date : Saturday, July 12th 2008 @ 07:06:55 AM
Script : http://www.xxx.com/forum/vbseo_sitemap.php
Referrer : http://www.xxx.com/forum/index.php
IP Address : xxx
Username : Unregistered
Classname : vB_Database
MySQL Version :
-->

phunksta 07-12-2008 01:37 PM

Nice mod *INSTALLED*
Had a little problem setting this up, but found the solution.

Got the 404 error when trying to access the sitemap, so found the problem was the .htaccess file.
This was being ignored by apache because in the httpd.conf the AllowOverrides None option was set.
A bit of googling shows that apache doesn't seem to like .htaccess files much, unless you REALLY want to use them. So, I moves the .htaccess file to /etc/httpd/conf.d/vbseo_sitemap.conf
Apache likes it now and just includes it with all the other configs.

Not much use if you're on some sort of limited access webserver, but having full control over my server this seemed the better option.

iojam 07-12-2008 06:26 PM

Ok, please try this:
PHP Code:

<?php

 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright c 2005-2007, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 ******************************************************************************************/

     
$dl_seourls false;


    
$mods $db->query("SELECT id,name FROM " TABLE_PREFIX "dl_cats ORDER BY `id`");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=cat'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['name']):'').
            
'&amp;id='.$mod['id'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);

          
vbseo_add_url($url1.0'''daily');
    }

    
$mods $db->query("SELECT f.id as fid,f.name as fname,c.id as cid,c.name as cname".
        
" FROM " TABLE_PREFIX "dl_files f".
        
" LEFT JOIN " TABLE_PREFIX "dl_cats c on c.id=f.category");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=file'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['fname']).'&amp;cid='.$mod['cid'].'&amp;ctitle='.vbseo_filter_text($mod['cname']):'').
            
'&amp;id='.$mod['fid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }  
?>


Turbe 07-12-2008 06:53 PM

Are there any issues running this on Apache on XP (PHP 5)?

Thanks in advance...

hugh_ 07-12-2008 06:57 PM

Quote:

Originally Posted by iojam (Post 1573697)
Ok, please try this:
PHP Code:

<?php

 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright c 2005-2007, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 ******************************************************************************************/

     
$dl_seourls false;


    
$mods $db->query("SELECT id,name FROM " TABLE_PREFIX "dl_cats ORDER BY `id`");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=cat'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['name']):'').
            
'&amp;id='.$mod['id'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);

          
vbseo_add_url($url1.0'''daily');
    }

    
$mods $db->query("SELECT f.id as fid,f.name as fname,c.id as cid,c.name as cname".
        
" FROM " TABLE_PREFIX "dl_files f".
        
" LEFT JOIN " TABLE_PREFIX "dl_cats c on c.id=f.category");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=file'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['fname']).'&amp;cid='.$mod['cid'].'&amp;ctitle='.vbseo_filter_text($mod['cname']):'').
            
'&amp;id='.$mod['fid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }  
?>


That worked, great thanks!

Hugh

TsirhCitna 07-13-2008 05:32 AM

After installing vBSEO and running the generator I resubmitted my sitemaps to Google and it tells me this warning:

Unsupported file format
Your Sitemap does not appear to be in a supported format. Please ensure it meets our Sitemap guidelines and resubmit.

len backus 07-14-2008 02:50 PM

I still get nervous about uploading files and folders to the right place. Do I just select all the 6 folders and 3 individual files and then drag them up to the "Forums" folder?

https://vborg.vbsupport.ru/external/2008/07/52.jpg

PoetJA-1975 07-14-2008 03:45 PM

Thanx ;)

Jacquii.

Jonaid 07-14-2008 03:51 PM

I'm having trouble getting this to work. I've put everything where it should be but it doesn't seem to generate a sitemap :(

When I run the generator no errors come up:

Code:

[homepage] [776.6Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay [776.6Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 1, total threads: 0, pages: 1 [776.7Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 2, total threads: 0, pages: 1 [777.0Kb mem used] [0s (+0s)]
[SECTION START] showthread [777.1Kb mem used] [0s (+0s)]
[archive homepage] [777.8Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay archived [777.8Kb mem used] [0s (+0s)]
[SECTION START] showthread archived [778.2Kb mem used] [0s (+0s)]
[SECTION START] member [778.9Kb mem used] [0s (+0s)]
[SECTION START] polls [779.4Kb mem used] [0s (+0s)]
[SECTION START] blogs [779.4Kb mem used] [0s (+0s)]
[SECTION START] albums [779.5Kb mem used] [0s (+0s)]
[SECTION START] groups [779.6Kb mem used] [0s (+0s)]
[SECTION START] tags [779.6Kb mem used] [0s (+0s)]
[create sitemap file] filename: sitemap_1.xml.gz, number of urls: 8 [780.7Kb mem used] [0s (+0s)]
[create sitemap in text format] part #1 [780.7Kb mem used] [0s (+0s)]
[create sitemap index] filename: sitemap_index.xml.gz, number of sitemaps: 1 [782.2Kb mem used] [0s (+0s)]
Sitemap has been created. Click here to return [782.0Kb mem used] [106s (+106s)]

But there isn't one actually created. Anyone know how to fix this?

Greek76 07-14-2008 04:11 PM

Quote:

Originally Posted by iojam (Post 1573697)
Ok, please try this:
PHP Code:

<?php

 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright c 2005-2007, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 ******************************************************************************************/

     
$dl_seourls false;


    
$mods $db->query("SELECT id,name FROM " TABLE_PREFIX "dl_cats ORDER BY `id`");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=cat'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['name']):'').
            
'&amp;id='.$mod['id'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);

          
vbseo_add_url($url1.0'''daily');
    }

    
$mods $db->query("SELECT f.id as fid,f.name as fname,c.id as cid,c.name as cname".
        
" FROM " TABLE_PREFIX "dl_files f".
        
" LEFT JOIN " TABLE_PREFIX "dl_cats c on c.id=f.category");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $vbseo_vars['bburl'].'/downloads.php?do=file'.
            (
$dl_seourls?'&amp;title='.vbseo_filter_text($mod['fname']).'&amp;cid='.$mod['cid'].'&amp;ctitle='.vbseo_filter_text($mod['cname']):'').
            
'&amp;id='.$mod['fid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url1.0'''daily');
    }  
?>


Where do I install that?

iojam 07-15-2008 01:25 PM

TsirhCitna,

your sitemap looks ok for me: http://www.tenstones.net/forums/sitemap_index.xml.gz


len backus,

those are vBSEO files on your screenshot, not vBSEO Sitemap Generator.


Jonaid,

don't you have sitemap files in data/ folder?



Greek76,

you only need that if you have DownloadsII (vBulleting mod) installed.

Jonaid 07-15-2008 01:34 PM

I'm an idiot....there it is staring at me. Thanks! lol

Do I have to move it to the root directory? thats where the link in my vbseo_sitemap page is stating it should be?

cykelmyggen 07-15-2008 07:05 PM

Hi
Only succesfull ping is Yahoo as listed below. Anyone who can point me in the direction of a solution to this? I'm also running vBSEO 3.2.0.

Google ping: FAILED.
Yahoo ping: Successful.
Ask ping: FAILED.
Moreover ping: FAILED.
Live.com ping: FAILED.

iojam 07-15-2008 09:21 PM

Jonaid,

you should create .htaccess folder as described in installation instructions, no need to move files.

cykelmyggen,

what is your sitemap URL?

Black Tiger 07-15-2008 11:04 PM

Nice that there is a new release. Pity tho that the downloads.php is still not fixed.
I had to fix it manually again.

But still thanks for this new release, I clicked *installed*.:)

cykelmyggen 07-16-2008 05:28 AM

Quote:

Originally Posted by iojam (Post 1576322)

cykelmyggen,

what is your sitemap URL?

My sitemap-URL is:
http://www.boggnasker.dk/vbforum/sitemap_index.xml.gz

punchbowl 07-16-2008 02:57 PM

What happens if you have more than 50,000 links on your site?

alessai 07-16-2008 08:27 PM

iojam im still waiting for a reply to my post (page 6 last one)

seanm07 07-17-2008 07:14 AM

It wont work for me i get:
Code:

[homepage] [2,947.7Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay [2,947.7Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 1, total threads: 0, pages: 1 [2,947.7Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 2, total threads: 6, pages: 1 [2,947.8Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 5, total threads: 2, pages: 1 [2,947.9Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 6, total threads: 0, pages: 1 [2,948.0Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 16, total threads: 1, pages: 1 [2,948.1Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 17, total threads: 1, pages: 1 [2,948.2Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 18, total threads: 0, pages: 1 [2,948.2Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 7, total threads: 2, pages: 1 [2,948.3Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 14, total threads: 36, pages: 2 [2,948.4Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 8, total threads: 8, pages: 1 [2,948.7Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 3, total threads: 0, pages: 1 [2,948.8Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 19, total threads: 0, pages: 1 [2,948.9Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 20, total threads: 0, pages: 1 [2,948.9Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 4, total threads: 0, pages: 1 [2,949.0Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 21, total threads: 20, pages: 1 [2,949.1Kb mem used] [0s (+0s)]
[SECTION START] showthread [2,949.2Kb mem used] [0s (+0s)]
[archive homepage] [3,085.1Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay archived [3,085.1Kb mem used] [0s (+0s)]
[SECTION START] showthread archived [3,089.4Kb mem used] [0s (+0s)]
[SECTION START] member [3,141.5Kb mem used] [0s (+0s)]
[SECTION START] polls [3,147.9Kb mem used] [0s (+0s)]
[SECTION START] blogs [3,152.9Kb mem used] [0s (+0s)]
[SECTION START] albums [3,152.9Kb mem used] [0s (+0s)]
[SECTION START] groups [3,153.1Kb mem used] [0s (+0s)]
[SECTION START] tags [3,153.2Kb mem used] [0s (+0s)]

Warning: fopen(/home/admin/public_html/forums/vbseo_sitemap/data/sitemap_1.xml.gz) [function.fopen]: failed to open stream: Permission denied in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 769

Warning: fopen(/home/admin/public_html/forums/vbseo_sitemap/data/urllist.txt.gz) [function.fopen]: failed to open stream: Permission denied in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 775

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 786

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

I HAD TO CUT THE POST A LOT HERE A BIG LOT BUT IT WAS JUST WHATS ABOVE AND BELOW





Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 797

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 800

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 816

Warning: fclose(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 817
[create sitemap file] filename: sitemap_1.xml.gz, number of urls: 398 [2,962.1Kb mem used] [2s (+2s)]
[create sitemap in text format] part #1 [2,962.1Kb mem used] [2s (+0s)]

Warning: filesize() [function.filesize]: stat failed for /home/admin/public_html/forums/vbseo_sitemap/data/sitemap_1.xml.gz in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 837

Warning: fopen(/home/admin/public_html/forums/vbseo_sitemap/data/progress.dat) [function.fopen]: failed to open stream: Permission denied in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 1064

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 1065

Warning: fclose(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 1066

Warning: fopen(/home/admin/public_html/forums/vbseo_sitemap/data/sitemap_index.xml.gz) [function.fopen]: failed to open stream: Permission denied in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 1282

Warning: fwrite(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 1283

Warning: fclose(): supplied argument is not a valid stream resource in /home/admin/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 1284
[create sitemap index] filename: sitemap_index.xml.gz, number of sitemaps: 1 [2,962.4Kb mem used] [2s (+0s)]

Any ideas? The website is www.aouv.co.uk but we have /forums at the end to get to our forum

iojam 07-17-2008 12:55 PM

cykelmyggen,

try to regenerate sitemap.


punchbowl,

vBSEO Sitemap Generator splits it on multiple files.


seanm07,

make sure that you have 0777 permissions for vbseo_sitemap/data/ folder.



alessai,
http://www.vbseo.com/wiki/Sitemap:FA...To_Domain_Root

seanm07 07-17-2008 01:19 PM

Ok how exactly do i do that?

*edit nevermind i have done it.

Thanks i voted motm

chevy01xtreme 07-17-2008 04:23 PM

Quote:

Originally Posted by iojam (Post 1577697)
cykelmyggen,
seanm07,

make sure that you have 0777 permissions for vbseo_sitemap/data/ folder.

alessai,
http://www.vbseo.com/wiki/Sitemap:FA...To_Domain_Root

so you must keep that folder 0777 chmod? that wont affect secruity will it ?

is vbseo site down it hasnt worked all day for me

Javierogo 07-17-2008 11:42 PM

It works very good the installation, i just hope everything it works fine. I can't found the "installation" button or something like that. :erm:

Black Tiger 07-18-2008 12:01 AM

@Javierogo: It's the "Mark as installed" link, you can find it on every page on the top right side next to the mod description under "Mod Information", it's just under "Edit settings".;)

hugh_ 07-18-2008 04:00 AM

Could I suggest a feature to allow automatic log pruning?

sundarmobiles 07-18-2008 06:29 AM

hi sir sitemap downloads log not created for me here is the screen shot..................


http://gallery.srimeenakshimobiles.c...serialNumber=2

cykelmyggen 07-18-2008 07:34 AM

Quote:

Originally Posted by iojam (Post 1577697)
cykelmyggen,

try to regenerate sitemap.

I just found out, by looking at scheduled jobs, that there are two instances of the sitmap-generator listed - is that correct? When I look at installed products I see only 1 instance! See attached screenshot.

alessai 07-18-2008 09:12 AM

im not talking about sitemap index, im talking about the links inside the sitemap index they are not in the root and this is the problems

iojam 07-18-2008 10:45 PM

chevy01xtreme,

yes, you should keep data/ folder with 0777 permissions. There is an .htaccess file in that folder that prevents opening files directly from it.


hugh_,

you can setup log pruning in vbseo_sitemap_config.php file:
PHP Code:

    define('VBSEO_SM_PRUNE'0); // logs age in days to prune 


sundarmobiles,

do you have vBSEO product installed (it is required).


cykelmyggen,

you should remove the second one.


alessai,

the page I linked above describes exact steps how to change that.

alessai 07-19-2008 12:01 PM

i did what you told me to do

http://www.gulf-heart.com/sitemap_index.xml.gz

open the file and you will see:

<sitemap>
<loc>http://www.gulf-heart.com/vb/sitemap_1.xml.gz</loc>
<lastmod>2008-06-01T02:01:25+00:00</lastmod>
</sitemap>
...etc

the sitemap should be
http://www.gulf-heart.com/sitemap_1.xml.gz
so live.com will accept it

iojam 07-19-2008 06:32 PM

Have you done this:
http://www.vbseo.com/wiki/Sitemap:FA...To_Domain_Root
Quote:

2. Define "Sitemap Files URL" option in vBSEO Sitemap Generator configuration to: "http://www.yourdomain.com"
3. Open vbseo_sitemap/ interface in browser and re-generate the sitemap.


All times are GMT. The time now is 12:54 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02093 seconds
  • Memory Usage 2,001KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete