Page 49 of 85 FirstFirst ... 39474849505159 ... LastLast
Results 481 to 490 of 847
  1. #481
    Join Date
    Mar 2006
    Posts
    919
    Plugin Contributions
    2

    Default Re: Google SitemapAdmin

    Quote Originally Posted by Mr_B View Post
    Hi,

    Has anyone tried this MOD with the new Zen Cart Ver. 1.3.8 yet?

    If so does it work ....
    Yes. It seems to work fine.

    I've submitted my XML sitemaps to all 4 of the search engines (that this contribution will ping) and am now waiting to see what the result are.

  2. #482
    Join Date
    Apr 2005
    Location
    London
    Posts
    468
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Hi,
    I have installed this mod all all seemed ok, I can generate the sitemaps and I went to google webmaster tools and submitted the product sitemap, again all ok. However, when I use the Ping service in admin, ni th epopup window it says:

    Warning: file() [function.file]: URL file-access is disabled in the server configuration in /home/********/public_html/googlesitemap.php on line 124

    Warning: implode() [function.implode]: Bad arguments. in /home/*********/public_html/googlesitemap.php on line 124

    Another error also references line 130

    Any ideas??
    Thanks
    Pete
    FORUM:
    # a public meeting or assembly for open discussion
    #An online discussion group, where participants with common interests can exchange open messages.
    # a public facility to meet for open discussion

  3. #483
    Join Date
    Apr 2005
    Posts
    44
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Hi Everyone,

    I've just installed this mod on a new store 1.3.7. I had to ammend the install.sql file because the tables have the prefix zen_.

    I am able to configure google xml sitemap through configuration, but when I click google xml sitemap under TOOLS I get an Internal Server error. Any ideas what could be the problem?

    Thanks
    Matt

  4. #484
    Join Date
    Jul 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Should I worry about this remark, that appeared after running the sql:

    ERROR: cannot insert configuration_key "" because it already exists
    Note: 1 statements ingrored. See "upgrade exceptions" table for additional details.

    It seems to work properly?
    Zenner newby - on Version 1.3.7 with Export shipping info -Multilingual ezpages - Admin profiles - Google Analytics - GoogleSitemapAdmin - and building :)

  5. #485
    Join Date
    Apr 2007
    Posts
    649
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by MeltDown View Post
    I'm getting the following 500 error when I attempt to create the sitemap in Google XML Sitemap Admin:



    I searched this thread for this partucular error without success.

    Any suggestions? Thanks
    I've got the same problem. Anyone, anyone?

  6. #486
    Join Date
    Jul 2006
    Location
    Washington State
    Posts
    77
    Plugin Contributions
    0

    link problem External links

    I have been looking at the code for this mod and see that external links are skipped. On MY site I have zencart at the front. I also have a section of the site I call a reference site which is placed inside a folder inside htdocs. The pages there are all html pages and it is a large section of my website. Now the only way I can reference to this area is with ezpages creating a link in the IMPORTANT LINKS section. The reference area has its own index.html page which get people to all the other pages in that area. The problem is that I have to use an external link to get to it even though it is on the same server and in the same domain. Converting these pages to ZC style pages would be a MAJOR job taking too much time. I can see in the code to this mod that it is probably not too large an undertaking to modify it to allow external links to be indexed in the ezpages.xml file so that search engines can find it. Already I have installed the ezpages_on_sitemap V1.01 mod which has put the external linked pages on the ZenCart sitemap. This shows that it CAN be done. Does anyone know what code to change to allow the external linked ezpages to be listed and what code to put in to do it? Many of us do not JUST have ZC on our sites and I am sure many are interested in this option.

  7. #487
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Google SitemapAdmin

    Site maps are not that hard to make... would take longer to modify the code.

    If your not using a 'robot.txt' file, then your losing the full effect of a site map. Of course not all bots follow what's in the file. You can tell the bots where your other folder is with in the robot text file. As for coding it into the mod, it wouldn't be to hard.

    If your not sure how to use a robot text file, Google it.
    This site below has a nice online tool for making one as well.

    http://www.mcanerin.com/EN/search-engine/robots-txt.asp
    Dave
    Always forward thinking... Lost my mind!

  8. #488
    Join Date
    Feb 2006
    Location
    Minneapolis, MN
    Posts
    14
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    My host GoDaddy no longer supports
    file('http://www.google.com/webmasters/sitemaps/ping?sitemap=' . $google->submit_url));

    This is a solution that works for me... for now at least... until I find a better solution... and some more dotdotdots...

    I have this above "if ($submit){"
    PHP Code:
    function ExtractString($str$start$end) {
        
    $str_low strtolower($str);
        
    $pos_start strpos($str_low$start);
        
    $pos_end strpos($str_low$end, ($pos_start strlen($start)));
        if ( (
    $pos_start !== false) && ($pos_end !== false) ) {
            
    $pos1 $pos_start strlen($start);
            
    $pos2 $pos_end $pos1;
            return 
    substr($str$pos1$pos2);
        }

    And this between the "Start Pinging..." and "End Pinging..."
    PHP Code:
    echo '<br />Start Pinging ----------------------------------------------------------------------------------------';
            if(isset(
    $_GET['pinggoogle']) && $_GET['pinggoogle'] == 'yes') {
                echo 
    '<br />Google Ping...<br />';
                echo 
    '<div style="background-color: #FFFFCC; border: 1px solid #000000; padding: 5px">';
                
    /***************/
                
    $ch curl_init("http://www.google.com/webmasters/sitemaps/ping?sitemap="$google->submit_url);
                
    curl_setopt($chCURLOPT_HEADER0);
                
    curl_setopt($chCURLOPT_RETURNTRANSFER1);
                
    $curl_results curl_exec($ch);
                
    curl_close($ch);
                
    $bodytxt ExtractString($curl_results"<h2>""</h2>");
                echo 
    $bodytxt;
                
    /***************/
                
    echo '</div>';
            }
            if(isset(
    $_GET['pingyahoo']) && $_GET['pingyahoo'] == 'yes') {
                echo 
    '<br />Yahoo! Ping...<br />';
                echo 
    '<div style="background-color: #FFFFCC; border: 1px solid #000000;">';
                
    /***************/
                
    $ch curl_init("http://search.yahooapis.com/SiteExplorerService/V1/ping?sitemap="$google->submit_url);
                
    curl_setopt($chCURLOPT_HEADER0);
                
    curl_setopt($chCURLOPT_RETURNTRANSFER1);
                
    $curl_results curl_exec($ch);
                
    curl_close($ch);
                
    $bodytxt $curl_results;
                
    //$bodytxt = ExtractString($curl_results, "<Message>", "</Message>");
                
    echo $bodytxt;
                
    /***************/
                
    echo '</div>';
            }
            if(isset(
    $_GET['pingask']) && $_GET['pingask'] == 'yes') {
                echo 
    '<br />Ask.com Ping...<br />';
                echo 
    '<div style="background-color: #FFFFCC; border: 1px solid #000000;">';
                
    /***************/
                
    $ch curl_init("http://submissions.ask.com/ping?sitemap="$google->submit_url);
                
    curl_setopt($chCURLOPT_HEADER0);
                
    curl_setopt($chCURLOPT_RETURNTRANSFER1);
                
    $curl_results curl_exec($ch);
                
    curl_close($ch);
                
    $bodytxt ExtractString($curl_results"<h1>""</h1>");
                echo 
    $bodytxt;
                
    /***************/
                
    echo '</div>';
            }
            if(isset(
    $_GET['pingms']) && $_GET['pingms'] == 'yes') {
                echo 
    '<br />Microsoft Ping...<br />';
                echo 
    '<div style="background-color: #FFFFCC; border: 1px solid #000000;">';
                
    /***************/
                
    $ch curl_init("http://www.moreover.com/ping?u="$google->submit_url);
                
    curl_setopt($chCURLOPT_HEADER0);
                
    curl_setopt($chCURLOPT_RETURNTRANSFER1);
                
    $curl_results curl_exec($ch);
                
    curl_close($ch);
                
    $bodytxt $curl_results;
                echo 
    $bodytxt;
                
    /***************/
                
    echo '</div>';
            }
    echo 
    '<br />End Pinging ----------------------------------------------------------------------------------------<br />'
    use at your own risk... I take no responsibility nor support any of the above code... blah blah blah... legaleze mumbo jumbo...

  9. #489
    Join Date
    Nov 2007
    Posts
    27
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    The mod worked fine until last week. I now receive the following error when I try to update the sitemap. I would sincerely appreciate any advice on how to fix this problem. I am not "code-savvy" so I do not know what the following error message means.

    fopen(DIR_FS_CATALOG/sitemapcategories.xml) [function.fopen]: failed to open stream: No such file or directory in /home/wscheil/public_html/googlesitemap.php on line 240

  10. #490
    Join Date
    Feb 2006
    Location
    Minneapolis, MN
    Posts
    14
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by willandjenny View Post
    The mod worked fine until last week. I now receive the following error when I try to update the sitemap. I would sincerely appreciate any advice on how to fix this problem. I am not "code-savvy" so I do not know what the following error message means.

    fopen(DIR_FS_CATALOG/sitemapcategories.xml) [function.fopen]: failed to open stream: No such file or directory in /home/wscheil/public_html/googlesitemap.php on line 240
    Check that the sitemap files exist in the correct area and that the proper permissions are applied to them.

    Per the readme.txt file included with the mod "If error messages occur, change permissions on the XML files to 777" --> this can be done using an FTP program like FileZilla.

 

 
Page 49 of 85 FirstFirst ... 39474849505159 ... LastLast

Similar Threads

  1. v150 google modudle, shipping costs are no longer being passed to google
    By alcanlove in forum Addon Shipping Modules
    Replies: 2
    Last Post: 10 Sep 2012, 06:46 PM
  2. Google Checkout-anyway to avoid being redirected to Google payment page?
    By acreativepage in forum Addon Payment Modules
    Replies: 6
    Last Post: 23 Jan 2009, 12:50 AM
  3. Google SiteMapAdmin vs. Google XML sitemap
    By distanceDemon in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 9 Nov 2007, 03:39 PM
  4. Google Sitemapadmin
    By ghgarcia in forum All Other Contributions/Addons
    Replies: 10
    Last Post: 14 Oct 2007, 08:11 AM
  5. Google SitemapAdmin SQL Error
    By jeanmichel in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 30 Oct 2006, 08:57 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR