Page 44 of 85 FirstFirst ... 34424344454654 ... LastLast
Results 431 to 440 of 847
  1. #431
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Default Re: Google SitemapAdmin

    Quote Originally Posted by a_berezin View Post
    admin_folder\includes\languages\english\goo glesitemap.php don't use zen_get_info_page() function has no 298 lines.

    Reinstall.
    Hey you are right. Must have been a bad ftp session or something to put the wrong files there. I re-uploaded and PERFECT!

    Thanks for pointing that out.
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  2. #432
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Installed google sitemap locally with a fresh install of zen cart 1.3.7.
    I also installed the latest version of Ultimate SEO URLs
    http://www.zen-cart.com/index.php?ma...roducts_id=231.

    From what I can gather there have been compatibility issues with Chemo's Ultimate URLs and the sitemap generator in the past.

    I am wondering however if there is a solution for the new Ultimate SEO and 1.3.7.

    Can anyone help me out?

    Basically I am getting this for all four of the xml files...
    ERROR: Google Product Sitemap Generation FAILED!

    All the configuration items are basically set to the default.

    thanks in advance

  3. #433
    Join Date
    Mar 2007
    Location
    NJ
    Posts
    68
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Hi Folks!

    It seems that the latest version is generating the sitemaps with an error in one. Google does not like the EZ pages xml page. I'm getting the following error.

    The XML page cannot be displayed

    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later. A semi colon character was expected.

    [FONT=Arial]Any ideas? Thanks...[/FONT]
    Regards,

    John

  4. #434
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by mafiasam View Post
    Installed google sitemap locally with a fresh install of zen cart 1.3.7.
    I also installed the latest version of Ultimate SEO URLs
    http://www.zen-cart.com/index.php?ma...roducts_id=231.

    From what I can gather there have been compatibility issues with Chemo's Ultimate URLs and the sitemap generator in the past.

    I am wondering however if there is a solution for the new Ultimate SEO and 1.3.7.

    Can anyone help me out?

    Basically I am getting this for all four of the xml files...
    ERROR: Google Product Sitemap Generation FAILED!

    All the configuration items are basically set to the default.

    thanks in advance
    This issue was solved. It was a problem with the permissions of the xml files. On the local machine they were writable but when they were transferred to the server the permissions changed.

  5. #435
    Join Date
    Aug 2006
    Location
    Kihikihi, New Zealand
    Posts
    230
    Plugin Contributions
    3

    Default Re: Google SitemapAdmin

    I am also having issues with this mod.

    I have a fresh install of the latest ZenCart, and the xml files are located in catalog/*.xml.

    Initially I received an error, so I changed all the permissions to CMOD 777, as suggested by Andrew in his installation instructions.

    I am getting the following error:

    Processing file: http://www.domain.com/subdir/sitemapezpages.xml
    Warning: fopen(http://www.domain.com/subdir/sitemapezpages.xml): failed to open stream: HTTP wrapper does not support writeable connections. in /aaa/bbb/c/d/e/domainename/html/subdir/googlesitemap.php on line 203
    Failed!
    ERROR: Google Category Sitemap Generation FAILED!
    This is the code in googlesitemap.php:

    Code:
    $filename .= '.xml';
    echo 'Processing file: ' . $filename;
    if ($fp = fopen($filename, 'w+')){    (line 203)
    fwrite($fp, $data, strlen($data));
    fclose($fp);
    echo ' OK! Written ' . $records . ' records, ' . strlen($data) . ' bytes <br />';
    return true;
    } else {
    echo ' Failed!<br />';
    $file_check = file_exists($filename) ? 'true' : 'false';
    return false;
    This error comes up for all the *.xml files.

    Any idea's?

    Thanks,

    Goshawk

  6. #436
    Join Date
    May 2007
    Location
    Leicester, England
    Posts
    165
    Plugin Contributions
    1

    Default Re: Google SitemapAdmin

    Quote Originally Posted by Goshawk View Post
    I am also having issues with this mod.

    I have a fresh install of the latest ZenCart, and the xml files are located in catalog/*.xml.

    Initially I received an error, so I changed all the permissions to CMOD 777, as suggested by Andrew in his installation instructions.

    I am getting the following error:



    This is the code in googlesitemap.php:

    Code:
    $filename .= '.xml';
    echo 'Processing file: ' . $filename;
    if ($fp = fopen($filename, 'w+')){    (line 203)
    fwrite($fp, $data, strlen($data));
    fclose($fp);
    echo ' OK! Written ' . $records . ' records, ' . strlen($data) . ' bytes <br />';
    return true;
    } else {
    echo ' Failed!<br />';
    $file_check = file_exists($filename) ? 'true' : 'false';
    return false;
    This error comes up for all the *.xml files.

    Any idea's?

    Thanks,

    Goshawk
    Still sounds like a file permissions problem to me. I have found that some web hosts don't allow complete CHMOD changes. It may be that you need to go to your cPanel (if your web host has such a thing) and change the permissions from there!

  7. #437
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Google SitemapAdmin

    Quote Originally Posted by Goshawk View Post
    I am getting the following error:
    Processing file: http://www.domain.com/subdir/sitemapezpages.xml
    Warning: fopen(http://www.domain.com/subdir/sitemapezpages.xml): failed to open stream: HTTP wrapper does not support writeable connections. in /aaa/bbb/c/d/e/domainename/html/subdir/googlesitemap.php on line 203
    Failed!
    ERROR: Google Category Sitemap Generation FAILED!
    Any idea's?
    Only one idea - wrong setting for GOOGLE_SITEMAP_XML_FS_DIRECTORY. You myst set FILE SYSTEM directory! Not 'http://www.domain.com/subdir/', '/aaa/bbb/c/d/e/domainename/html/subdir/'.

  8. #438
    Join Date
    Aug 2006
    Location
    Kihikihi, New Zealand
    Posts
    230
    Plugin Contributions
    3

    Default Re: Google SitemapAdmin

    Thanks Andrew,

    That was the problem, changed the filepath to:
    /home/content//html/catalog/ and it is now working.

    Goshawk

  9. #439
    Join Date
    Oct 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Hi Andrew,
    I added your files to my site, www.tot2teenonline.com . I have a link in the admin now, but when I click the link to create sitemap, I get a blank screen. In addition, Google doesn't seem to be picking up anything but my Home Page which was added priorto your files. Any thoughts as to how to fix the 'create sitemap' issues?


  10. #440
    Join Date
    Sep 2007
    Posts
    67
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Hey Guys,

    I am trying to load in the mod to the 1.3.7 and while try to generate the XML files steps, it throws the following error :


    Warning: main(includes/header.php) [function.main]: failed to open stream: No such file or directory in C:\domains.com\wwwroot\store\googlesitemap.php on line 84

    Warning: main(includes/header.php) [function.main]: failed to open stream: No such file or directory in C:\domains.com\wwwroot\store\googlesitemap.php on line 84

    Warning: main(includes/header.php) [function.main]: failed to open stream: No such file or directory in C:\domains.com\wwwroot\store\googlesitemap.php on line 84

    Fatal error: main() [function.require]: Failed opening required 'includes/header.php' (include_path='.;c:\php4\pear') in C:\domains.com\wwwroot\store\googlesitemap.php on line 84
    Any ideas?

 

 
Page 44 of 85 FirstFirst ... 34424344454654 ... 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