vb.org Archive

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

glennybee 02-18-2008 11:48 AM

Quote:

Originally Posted by iojam (Post 1445370)
glennybee,

did you create .htaccess file in forums folder?

I had added the .htaccess lines to the file, yes, but it only resided in the root. I've copied it to the /forums folder and all working now. Thanks for your help.

binkuang 02-18-2008 10:42 PM

i install the Sitemap Generator. why my vbseo SE Bots Activity Log show nothing activity?

Black Tiger 02-18-2008 11:52 PM

@Glennybee:
Quote:

I couldn't be bothered to read 43 pages
You said you are new to this. I give you a tip. Try the "search this mod" funktion, you do a search only in this mod that way, no need to read all pages.:)
Glad to see you have it working now!

@Iojam: I use the only code which was mentioned here as working, posted by Winstone in post #432 (page 29 in my browser). The one included in the mod did not work.
This is the full code:
Code:

<?php

 /******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.        *
 *-----------------------------------------------------------------------------------------*
 *                                                                                        *
 * Copyright ? 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.    *
 ******************************************************************************************/

        $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&id='.$mod['id'];

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

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

        $mods = $db->query("SELECT id as fid FROM " . TABLE_PREFIX . "dl_files");
        while ($mod = $db->fetch_array($mods))
        {       
                $url = $vbseo_vars['bburl'].'/downloads.php?do=file&id='.$mod['fid'];

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

In fact I'm wondering if this mod should not be kicked to the graveyard. I'm already happy some members are helping each other with this.

Black Tiger 02-19-2008 12:03 AM

And I'm just reading this in the vbseo_sitemap.php
Code:

$addons = preg_split('#[\r\n]+#', $vboptions['vbseo_sm_addons']);

foreach($addons as $addon)
if($addon && file_exists(VBSEO_DAT_FOLDER_ADDON . $addon))
{

Shouldn't there be a ";" (semicolumn or how do you call that in English) behind one of the last two lines?
Because the parse error said "expecting ;".

Black Tiger 02-19-2008 01:09 PM

Fixed, code over here was wrong, problem: missing html entry's in the downloads addon.

Now we are lucky to have such good coder as RSJelle who DOES know what the word "support" means and even fixes code-error for a mod which is not his.

Anyone else having problems with the downloads addon (for Downloads II by RSJelle), check this mod:
https://vborg.vbsupport.ru/showthrea...14#post1446414
Threadnumber #2355
There's the solution to the downloads addon problem. Working like a charm now.

I'm going to click uninstall now, not because I uninstalled but because of the missing correct files in the download zipfile, the bad coded files (not linux but with windows editor) and the lack of support by the coder (last post by him 13th april 2007 almost a year ago?)
He at least lost 1 future customer for the commercial product.

Any other member here, thanks for trying to give me support with my problem.

iojam 02-19-2008 01:46 PM

binkuang,

that feature is only working if you have vBSEO product installed additionally to vBSEO Sitemap Generator.


Black Tiger,

I'm glad you got it resolved! Btw, I'm providing "official" support for vBSEO Sitemap Generator mod here, so it's not left unsupported :)
The downloads mod add-on code included in the package was prepared for an older version (the one that was available at that moment) and new downloads mod release has db table names changed.

Black Tiger 02-19-2008 02:06 PM

IoJam:
I'm sorry, I did not know you were providing official support over here, I thought only the coder was doing that, I already complained about it, cause I was going mad and did not know you took over, sorry.:(

It's great to here it's not left unsupported so I will click install again.
And I did not resolve the problem, RSJelle did.:)

The new mod indeed had db table names changed, but somewhere in this thread (I pointed to it in an earlier reply) somebody updated it but it still not worked with that now code (dl_cats and dl_files).

It would be a good idea to integrate the new addon in the release zipfile.
Also it would be a good idea to check the release php files with an editor like Editpad Lite because with almost every file you can use the "convert to linux" option, which means they are edited with something like Wordpad, which can cause strange things on some linux distro's due to the hidden layout signs wordpad generates.

Suggestion: If the release zip could be updated with these things, it would be fully up to date again and used without problems.

iojam 02-19-2008 02:46 PM

That will be certainly included in the next update for vBSEO Sitemap Generator (possibly with other generator add-ons updated/added), thank you. :)

glennybee 02-20-2008 04:07 PM

Hi folks, thanks for this mod.

I had been looking into sitemaps before finding this mod.

I've created a google webmaster account, found a website that creates a sitemap.xml for you and uploaded the sitemap.xml to http://www.domain.co.uk/sitemap.xml.

Then I found this mod, installed and it seems to be working ok. I get a ping ok message for all search engines and I get an email saying it's been done.

I've added a .htaccess file to my http://www.domain.co.uk/forums folder.

I've read pretty much this whole thread and it's only confused me more lol.

Should I remove the sitemap.xml that I uploaded to google the first time? Is this mod uploading a sitemap as well as the one I currently have?

How does google access the file uploaded by this mod if the map is at /vbseo_sitmap/data/sitemap_1.xml.gz? Does it not need to be at /sitemap.xml? Does the .htaccess file allow a 'virtual link' from /forums to the actual sitemap??

So confused! :confused:

Any clarification would be much appreciated!

Thanks
Glen

EDIT:

I've not added a url of http://www.domain.co.uk/forums to my webmaster tools in google and added the sitemap http://www.domain.co.uk/forums/sitemap_1.xml.gz and it's accepted it ok. So I assume that everytime this mod updates the sitemap, google will be able to extract it from that location.

Think I'm understanding it now. lol

iojam 02-20-2008 04:22 PM

You should not remove your older sitemap, you can submit both to Google. Although files are stored in data/ folder, you can still access them via forums folder using rewrite rule in .htaccess file.

glennybee 02-20-2008 05:23 PM

I think I understand more now.

Thanks iojam

momo2 02-20-2008 07:25 PM

starting today i got this error :(

Warning: fopen(/home/ivshare/public_html/forum/vbseo_sitemap/data/downloads.dat) [function.fopen]: failed to open stream: Permission denied in /home/ivshare/public_html/forum/vbseo_sitemap/vbseo_getsitemap.php on line 45

Warning: fwrite(): supplied argument is not a valid stream resource in /home/ivshare/public_html/forum/vbseo_sitemap/vbseo_getsitemap.php on line 46

Warning: fclose(): supplied argument is not a valid stream resource in /home/ivshare/public_html/forum/vbseo_sitemap/vbseo_getsitemap.php on line 47
‹������?”Ak? ??+?;?#?’.]’??SwZ?1.-?-?Ÿ~?&[z??AD??????b3???“wZ(Y? ?d??)???)LѦZ. - o?I?š?E?–E?.??˜SNH??x??Xu ??`M?K8CWh>hq…?+?�y{޾????P??/?E~i?UŒg>5?˜? ?G0s?rq?A?h–‘=?GŪ™EŸ?žv?Œ™jɻ?>?)–}„mŽ?9?›q,զU uesHCˆ?v?:‡$???-K?d?F?ϐnˆ} ?| <?H| ?} <?H} d?"?7ƒٷ???? ??q?h��

mdcdeve 02-20-2008 11:55 PM

Hi, i keep receiving this error when submitting to google.

Quote:

Your Sitemap does not appear to be in a supported format. Please ensure it meets our Sitemap guidelines and resubmit.
I've used this generator for a long time and i haven't changed anything so i don't know why this would happen. All the files are in place still and so is the .htaccess code, the url i submit is


JVCode 02-21-2008 09:13 AM

Hi, does vbseo work properly on VBulletin 3.7.0 Beta 5?

mariocaz 02-22-2008 03:10 AM

Nice Mod, I hope this helps to my site.

Cheers,

Mario

DaFlameking 02-22-2008 04:40 AM

yes mod_rewrite is allowed on my server and the rewrite rules are allowed in my .htaccess file. I already rewrited my url so it changes from http://www.domain.com to http://domain.com

so i know its working, it just gives an error with this SEO thing.

if my forums is in a folder and not in the main public_html area such as

http://domain.com/forums/

i put the rewrite stuff in the .htaccess specifically for that forums folder in the forums folder.

Quote:

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

baghdad4ever 02-22-2008 10:34 AM

hi

today google delete all indexed pages of my site

Quote:

Sitemap statistics:
Total URLs: 862387
Indexed URLs: 0
plz i have error in google area

and this is the detail

Quote:

Sitemap summary
Most sites will not have all of their pages indexed.
Improve how Google crawls and indexes your site.

how to fix that plz

zatzy 02-22-2008 10:56 AM

I get erors when trying to run it anybody know what the problem could be? I have set the folder to 777 but I still get some permission errors and other stuff. Here is how it looks when running vbseo_sitemap. (I have shoretend the address down and put the xxxx in there)

[homepage] [4,259.2Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay [4,259.6Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 4, total threads: 0, pages: 1 [4,259.9Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 13, total threads: 10, pages: 1 [4,259.9Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 6, total threads: 53, pages: 3 [4,260.0Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 10, total threads: 0, pages: 1 [4,260.0Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 11, total threads: 0, pages: 1 [4,260.0Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 1, total threads: 0, pages: 1 [4,260.0Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 5, total threads: 6, pages: 1 [4,260.2Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 2, total threads: 57, pages: 3 [4,260.3Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 3, total threads: 5, pages: 1 [4,260.4Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 8, total threads: 3, pages: 1 [4,260.5Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 12, total threads: 1, pages: 1 [4,260.5Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 14, total threads: 3, pages: 1 [4,260.6Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 7, total threads: 24, pages: 2 [4,260.8Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 9, total threads: 13, pages: 1 [4,261.0Kb mem used] [0s (+0s)]
[SECTION START] showthread [4,260.9Kb mem used] [0s (+0s)]

Warning: gzopen(/xxxx/www.hojliv.se/htdocs/vbseo_sitemap/data/sitemap_1.xml.gz) [function.gzopen]: failed to open stream: Permission denied in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 579

Warning: gzopen(/xxxx/www.hojliv.se/htdocs/vbseo_sitemap/data/urllist.txt.gz) [function.gzopen]: failed to open stream: Permission denied in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 583

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 593

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /xxxx/www.hojliv.se/htdocs/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

And on it goes....

Black Tiger 02-22-2008 12:35 PM

Quote:

Hi, does vbseo work properly on VBulletin 3.7.0 Beta 5?
I don't know about vbSEO, but this site-map generator mod does.

iojam 02-22-2008 01:41 PM

momo2,

make sure that you have 0666 permissions for data/downloads.dat file.

mdcdeve,

does your sitemap looks ok if you open its URL in browser?

JVCode,

yes, there are no known issues with it.

iojam 02-22-2008 01:43 PM

zatzy,

if you have any files inside data/ folder, set them to 0666 too.


Quote:

i put the rewrite stuff in the .htaccess specifically for that forums folder in the forums folder.
Yes, you should put rewrite rules in forums folder, and do not forget about "RewriteEngine on" line.

zatzy 02-22-2008 04:01 PM

Quote:

Originally Posted by iojam (Post 1448688)
zatzy,

if you have any files inside data/ folder, set them to 0666 too.


Yes, you should put rewrite rules in forums folder, and do not forget about "RewriteEngine on" line.

Ok changed the value on the data-folder and files, the htaccess I have just used the file that I got with the package.
All errors are gone exept f?r one: http://www.hojliv.se/htdocs/vbseo_si..._functions.php on line 424

Borden 02-22-2008 04:13 PM

This works :http://www.mysite.com/forum/vbseo_sitemap/

This does not: http://www.mysite.com/forum/sitemap_index.xml.gz
Please help.

iojam 02-23-2008 12:10 AM

zatzy,

please try this: https://vborg.vbsupport.ru/showthrea...rl#post1395488


Borden,

did you create .htaccess file in forum folder?

baghdad4ever 02-23-2008 03:33 PM

any idea plz about this

https://vborg.vbsupport.ru/showpost....&postcount=657

zatzy 02-23-2008 04:50 PM

Quote:

Originally Posted by iojam (Post 1449058)
zatzy,

please try this: https://vborg.vbsupport.ru/showthrea...rl#post1395488


Borden,

did you create .htaccess file in forum folder?



Thank you! It works now

R1lover 02-23-2008 11:12 PM

does this work with 3.7 ??

Black Tiger 02-23-2008 11:48 PM

R1lover: Have a look at the previous page. Or to be short.... yes it does.

Kalina 02-24-2008 12:04 AM

When I go to view my sitemap via the url provided, it has this error:

Code:

XML Parsing Error: not well-formed
Location: http://www.webtalkforums.com/sitemap_index.xml.gz
Line Number 1, Column 1:


^

I did add the proper lines to my .htaccess file, any ideas what's wrong?

I am running it on vbulletin 3.6.8 PL2

Kalina 02-24-2008 12:52 AM

Actually, I didn't set this part "Addon Generator Modules" I guess I have to? I thought it's optional.

Ok, well that made it worse. Database error while trying to generate sitemap.

R1lover 02-24-2008 02:44 AM

Quote:

Originally Posted by Black Tiger (Post 1449605)
R1lover: Have a look at the previous page. Or to be short.... yes it does.

I looked but didn't see it... thank for the answer though.

PAKIDIL 02-24-2008 11:48 AM

Quote:

Originally Posted by iojam (Post 1449058)
zatzy,

please try this: https://vborg.vbsupport.ru/showthrea...rl#post1395488


Borden,

did you create .htaccess file in forum folder?

i was also having the same error but after the link u gave i rid of that error but get new one which is forum data error see this


[homepage] [2,128.8Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay [2,128.8Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 1, total threads: 0, pages: 1 [2,128.9Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 2, total threads: 1, pages: 1 [2,129.1Kb mem used] [0s (+0s)]
[SECTION START] showthread [2,129.3Kb mem used] [0s (+0s)]
[archive homepage] [2,138.2Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay archived [2,138.3Kb mem used] [0s (+0s)]
[SECTION START] showthread archived [2,138.6Kb mem used] [0s (+0s)]
[SECTION START] member [2,140.5Kb mem used] [0s (+0s)]
[SECTION START] polls [2,141.6Kb mem used] [0s (+0s)]
[SECTION START] blogs [2,141.7Kb mem used] [0s (+0s)]
Database error
The Forums database has encountered a problem.


so any help please

glennybee 02-24-2008 03:33 PM

Hi,

Does anyone know how to get this working with DownloadsII?

I've made the modifications suggested on page29 but they don't seem to be working.

I ran the sitemap generator and there were no urls to add.

I then added a test .zip to the downloads and ran it again.

It still shows as 0 new urls.

Is there anything else I need to do?

Any help would be much appreciated.

Thanks
Glen

iojam 02-24-2008 03:40 PM

Kalina,

Please try to modify your vbseo_getsitemap.php file
FIND:
PHP Code:

        if($ext=='gz' && ($umatch[1] || !strstr($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip')) ) 

replace with:
PHP Code:

        if($ext=='gz'

add-ons list is optional.


PAKIDIL,

you should disable "Include Blog URLs" option.

iojam 02-24-2008 03:41 PM

glennybee,

did you include downloads mod in add-ons list in vBSEO Sitemap Generator options?

glennybee 02-24-2008 06:22 PM

Thanks iojam, no I did not include the addons in that section.

I have now and it's working 100%. :)

Many thanks for the advice.

If I could rep, I would. ;)

mahmuttunc 02-24-2008 06:33 PM

i have a question or a kind of a problem.i have installed it all but i do not think it is all working properly.firstly mysite.com/public_html/vbseo_sitemap/data/

in this folder the sitemap.xml file does not exist there is only .htaacces file which inside it says deny all. and a index.php file.

Is that how it is meant to be as on google sitemaps under the webmaster website when i submitted the xml after a day google gave error saying

General HTTP error: 404 not found
We encountered an error while trying to access your Sitemap. Please ensure your Sitemap follows our guidelines and can be accessed at the location you provided and then resubmit.

so i think i may have gone wrong somewhere but not sure where.

Can i have help please .thank you

PAKIDIL 02-24-2008 06:59 PM

thanks for the reply but now its showing new error after i disable blog url its says
[homepage] [2,129.1Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay [2,129.2Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 1, total threads: 0, pages: 1 [2,129.2Kb mem used] [0s (+0s)]
[forumdisplay] forum_id: 2, total threads: 1, pages: 1 [2,129.5Kb mem used] [0s (+0s)]
[SECTION START] showthread [2,129.6Kb mem used] [0s (+0s)]
[archive homepage] [2,138.6Kb mem used] [0s (+0s)]
[SECTION START] forumdisplay archived [2,138.7Kb mem used] [0s (+0s)]
[SECTION START] showthread archived [2,138.9Kb mem used] [0s (+0s)]
[SECTION START] member [2,140.8Kb mem used] [0s (+0s)]
[SECTION START] polls [2,142.0Kb mem used] [0s (+0s)]

Warning: gzopen(/home/hamarich/public_html/forum/vbseo_sitemap/data/sitemap_1.xml.gz) [function.gzopen]: failed to open stream: Permission denied in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 579

Warning: gzopen(/home/hamarich/public_html/forum/vbseo_sitemap/data/urllist.txt.gz) [function.gzopen]: failed to open stream: Permission denied in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 583

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 593

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 604

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 607

Warning: gzwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 623

Warning: gzclose(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 624
[create sitemap file] filename: sitemap_1.xml.gz, number of urls: 23 [2,142.6Kb mem used] [0s (+0s)]
[create sitemap in text format] part #1 [2,142.6Kb mem used] [2s (+2s)]

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

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

Warning: fwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 867

Warning: fclose(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 868

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

Warning: fwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 1007

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

Warning: unlink(/home/hamarich/public_html/forum/vbseo_sitemap/data//progress.dat) [function.unlink]: Permission denied in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 876

Warning: fopen(/home/hamarich/public_html/forum/vbseo_sitemap/data/1203886583.log) [function.fopen]: failed to open stream: Permission denied in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 754

Warning: fwrite(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 755

Warning: fclose(): supplied argument is not a valid stream resource in /home/hamarich/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 756

so any help please ?

zatzy 02-24-2008 07:49 PM

Hi again,

iojam have been trying to get you guys attention in the thread for the vb 3.0 version but I guess you dont browse there as much, I run another board on 3.0 and have some issues with the plugin if you could please take a look (love the plug-in whe using 3.6 an woul like it to work on the 3.0 board aswell)

https://vborg.vbsupport.ru/showthread.php?t=144732

Kalina 02-24-2008 11:19 PM

Quote:

Originally Posted by iojam (Post 1450014)
Kalina,

Please try to modify your vbseo_getsitemap.php file
FIND:
PHP Code:

        if($ext=='gz' && ($umatch[1] || !strstr($_SERVER['HTTP_ACCEPT_ENCODING'],'gzip')) ) 

replace with:
PHP Code:

        if($ext=='gz'


I tried that and when I click my sitemap url it then wants me to download it instead of letting me view it in the browser, so I can't tell if it looks right that way, any ideas? Thank you.


All times are GMT. The time now is 03:14 AM.

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.02506 seconds
  • Memory Usage 1,927KB
  • 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
  • (3)bbcode_code_printable
  • (4)bbcode_php_printable
  • (14)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