vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) 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

sitemap no more pinging since upgrade 2.0 => 2.1

This is a discussion on sitemap no more pinging since upgrade 2.0 => 2.1 within the General Discussion forums, part of the vBSEO Google/Yahoo Sitemap category; We are some people here : vBSEO Google/Yahoo Sitemap Generator - Page 32 - vBulletin.org Forum we have just upgraded ...

Go Back   vBulletin SEO Forums > vBSEO Google/Yahoo Sitemap > General Discussion

Enhancing 80 million pages.

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

Reply

 

LinkBack Thread Tools
  #1  
Old 11-28-2007, 12:46 PM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
sitemap no more pinging since upgrade 2.0 => 2.1

We are some people here :

vBSEO Google/Yahoo Sitemap Generator - Page 32 - vBulletin.org Forum

we have just upgraded to 2.0 to 2.1 and

Code:
Google ping: FAILED.
Yahoo ping: FAILED.
Ask ping: FAILED.
Moreover ping: FAILED.
known bug ? I have just uploaded new files and imported the xml as usual..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 11-28-2007, 01:16 PM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
fixed it,

had to change

allow_url_fopen = Off to On

I guess the ping method changed.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 11-28-2007, 01:19 PM
Keith Cohen's Avatar
vBSEO Staff
vBSEO Total Customer SupportBig Board Administrator
 
Real Name: Keith Cohen
Join Date: Jul 2005
Location: Raleigh, NC USA
Posts: 6,264
Blog Entries: 1
Yes. That option is also required to be On for vBulletin's option of upload an avatar (or a post attachment) from a URL to work.
__________________
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 11-28-2007, 01:23 PM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
ho ok thanks for the info Keith, reason I did not caught it previously was probably my board is actually off under construction with VPS under setting up, thanks for the clarification
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 12-02-2007, 07:37 AM
fide's Avatar
Member
 
Real Name: Markus Jung
Join Date: Jan 2006
Location: Germany
Posts: 47
My provider does not allow allow_url_fopen = On - even for Managed Servers. Is there any alternative - the pings worked well with the old sitemap version.

Markus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 12-02-2007, 07:53 AM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
CURL - DreamHost but I think you'll needd some code changes, cant' help you unfortunely to mod the sitemap PHP code, no enough knowledge, you may look at a VPS solution to administrate yourself you httpd smtp etc that's free of restrictions
Have been like you in a shared environment some times ago and have been bored of all restrictions that didnt run my site as I want, since VPS all is so better
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 12-02-2007, 10:42 AM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,433
Blog Entries: 1
Hello,

you can copy'n'paste vbseo_query_http() function code in vbseo_sitemap_functions.php file from older Sitemap Generator version.
__________________
Oleg Ignatiuk / 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 12-02-2007, 05:15 PM
fide's Avatar
Member
 
Real Name: Markus Jung
Join Date: Jan 2006
Location: Germany
Posts: 47
I replaced

PHP Code:
    function vbseo_query_http($url)
    {
        return @
implode(''file($url));
    } 
in the new version with

PHP Code:
    function vbseo_query_http($url$retcont false)
    {
           
ini_set('default_socket_timeout'5);
           
$purl parse_url($url);
        
$connsocket = @fsockopen($purl['host'], 80$errno$errstr5);
           
$start 0;
           
$timeout 50;
           while(
$start $timeout)
           {
            
$start++;
            if (
$connsocket)
            {
             
$start 100;
             
$out "GET ".$url." HTTP/1.0\n";
             
$out .= "Host: ".$purl['host']."\n";
                
$out .= "Referer: http://".$purl['host']."/\n";
             
$out .= "Connection: Close\n\n";
              
$inp '';
             @
fwrite($connsocket$out);
             while (!
feof($connsocket)) {
                
$inp .= @fread($connsocket4096);
             }
             @
fclose($connsocket);
            }

        }

        
preg_match("#^(.*?)\r?\n\r?\n(.*)$#s",$inp,$hm);
        
$headersstr $hm[1] ? $hm[1] : $inp;
        
$headers split("\r?\n"$headersstr);
         list(
$proto$code) = sscanf($headers[0], '%s %s');

        return (
$code==200) ? ($retcont $hm[2] : true) : false;
    } 
from the old one.

The ping result is still "FAILED".

Markus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 12-02-2007, 06:18 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,433
Blog Entries: 1
Try to replace the last line with:
PHP Code:
        return $hm[2] ; 
__________________
Oleg Ignatiuk / 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 12-02-2007, 07:01 PM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
Oleg I think you should introduce in a next version the possibility to switch from the new url pinging to the old one, I see a few peoples on vbulletin.org having problems with v2.1 due to some crap shared hosters restrictions on this php.ini setting.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11  
Old 12-02-2007, 07:30 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,433
Blog Entries: 1
Yes, both methods will be included in the next version.
__________________
Oleg Ignatiuk / 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12  
Old 12-03-2007, 04:19 AM
fide's Avatar
Member
 
Real Name: Markus Jung
Join Date: Jan 2006
Location: Germany
Posts: 47
Quote:
Originally Posted by Oleg Ignatiuk View Post
Try to replace the last line with:
PHP Code:
        return $hm[2] ; 
Thank you - that worked:

Quote:
Google ping: Successful.
Yahoo ping: Successful.
Ask ping: Successful.
Moreover ping: FAILED.
Moreover ist not that important to me...

Markus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13  
Old 12-05-2007, 08:04 PM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
someone could help me please sitemap is no more PINGING again but this time I have allow_url_fopen still on On and I notice my RSS urls feeds that are being autoposted on the forum are no more parsed and posted, should be related to the same issue I have with sitemap but I do not seewhat's happening, what I changed is blocking sitemap llinks and rss feeds links being checked but there's nothing in my lighttpd logs and php_logs, I'm in a chroot I have probably changed something wronlgy but cant see what yet , chmods are oks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14  
Old 12-05-2007, 08:53 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,433
Blog Entries: 1
Did you apply the modification mentioned above?
__________________
Oleg Ignatiuk / 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.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15  
Old 12-05-2007, 09:04 PM
Senior Member
 
Real Name: A.D
Join Date: Oct 2007
Location: France
Posts: 158
Blog Entries: 2
no not needed , I have changed something other I think not related to sitemap but probably to PHP or lighttpd because the vbulletin RSS feeds systems is also no more posting new feeds but can't find out why yet
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
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
vBSEO Sitemap Generator 2.0 Released Juan Muriente vBSEO Announcements 18 12-11-2007 02:44 PM


All times are GMT -4. The time now is 05:44 PM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.