Page 62 of 85 FirstFirst ... 1252606162636472 ... LastLast
Results 611 to 620 of 847
  1. #611
    Join Date
    Aug 2004
    Location
    Saint Petersburg, Russia
    Posts
    1,786
    Plugin Contributions
    13

    Default Re: Base URL Problem

    Hi David,
    Quote Originally Posted by ptnan View Post
    1. How can i change the 'base url' to match the real situation of my site: under the /store/ directory of the base domain
    Sorry, this is very old version - absolutely no time to publish fresh version.

    Find this in googlesitemap.php (lines 223-229):
    Code:
        if(GOOGLE_SITEMAP_XML_FS_DIRECTORY == '') {
          $this->savepath = DIR_FS_CATALOG;
          $this->base_url = HTTP_SERVER . '/';
        } else {
          $this->savepath = rtrim(GOOGLE_SITEMAP_XML_FS_DIRECTORY, '/') . '/';
          $this->base_url = HTTP_SERVER . '/';
        }
    Replace by:
    Code:
        $this->savepath = DIR_FS_CATALOG;
        $this->base_url = HTTP_SERVER . DIR_WS_CATALOG;
    Quote Originally Posted by ptnan View Post
    2. I do have 4 pages of EZPage links. Why sitemapezpages.xml would not show the fact?
    1)
    Quote Originally Posted by a_berezin View Post
    Check your settings in Admin->Configurations->Google XML Sitemap:
    EZPages Header
    EZPages Sidebox
    EZPages Footer
    2) Sitemap ignore EZ-pages with "External Link URL"

  2. #612
    Join Date
    Jun 2008
    Posts
    19
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    hi, a_berezin

    it's very nice of you to give such a helpful reply!

    thank you for your help and looking forward on the new version of google sitemap!

    all the best for you,
    david

  3. #613
    Join Date
    Jan 2007
    Location
    England
    Posts
    82
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Seems to be a problem with this addon? Using it causes warning errors in google webmaster tools. Says lots of the links have 'too many redirects'. Maybe a seo addon problem instead?

    But, using an online sitemap generator works fine.

  4. #614
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Posts
    79
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by imperialis View Post
    Hi
    When I go to Google it says I have an error
    Unsuported file format
    This is what it says where should I change this?

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

    Some things you might check are:

    That the file uses the correct header. For a Sitemap file, the header can look like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    For a Sitemap index file, the header can look like this:

    <?xml version="1.0" encoding="UTF-8"?>
    <sitemapindex
    xmlns="http://www.sitemaps.org/schemas<wbr>/sitemap/0.9">
    That the namespace in the header is "http://www.sitemaps.org/schemas/sitemap/0.9". Note that this must end in 0.9. If it ends in .9, you'll see an error.

    That each XML attribute is enclosed in either single quotes (') or double quotes (") and that those quotes are straight, not curly. If you use a word processing program, such as Microsoft Word, you may find that it inserts curly quotes.
    Does anyone have a solution for this? I am getting the same "unsupported file format" error from Google.

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

    Default Re: Google SitemapAdmin

    rlfreshwater,
    1. Turn off "Compress XML File";
    2. Delete sitemap*.xml.gz (sitemapproducts.xml.gz, sitemapezpages.xml.gz, sitemapcategories.xml.gz).

  6. #616
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Posts
    79
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by a_berezin View Post
    rlfreshwater,
    1. Turn off "Compress XML File";
    2. Delete sitemap*.xml.gz (sitemapproducts.xml.gz, sitemapezpages.xml.gz, sitemapcategories.xml.gz).
    Thank you Andrew! I am giving that a try right now ...

  7. #617
    Join Date
    Oct 2007
    Location
    Atlanta, GA
    Posts
    79
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Well I tried Andrew's suggestion and it didn't work. I guess I'm just going to give up on this.

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

    Default Re: Google SitemapAdmin

    Quote Originally Posted by rlfreshwater View Post
    I am getting the same "unsupported file format" error from Google.
    What file produce this error?
    http://www.queerrepublictees.com/sitemapindex.xml ?
    http://www.queerrepublictees.com/sitemapindex.xml ?
    http://www.queerrepublictees.com/sitemapproducts.xml ?

    How you specify sitemap in Google Webmaster?

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

    Default Re: Google SitemapAdmin

    Read next post

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

    Default Re: Google SitemapAdmin

    rlfreshwater,
    I think I found it.
    googlesitemap.php
    find:
    Code:
        $header .= '        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9' . "\n";
        $header .= '        http://www.sitemaps.org/schemas/sitemap/0.9/' . ($tag == 'urlset' ? 'sitemap' : 'siteindex') . '.xsd"' . "\n";
    replace by
    Code:
        $header .= '        xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9"' . "\n";
        $header .= '        url="http://www.sitemaps.org/schemas/sitemap/0.9/' . ($tag == 'urlset' ? 'sitemap' : 'siteindex') . '.xsd"' . "\n";

 

 
Page 62 of 85 FirstFirst ... 1252606162636472 ... 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