Page 73 of 85 FirstFirst ... 2363717273747583 ... LastLast
Results 721 to 730 of 847
  1. #721
    Join Date
    Oct 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    well maybe something else.

    In my config menu it reads google XML sitemap instead of just googlesitemap with triggers the menu option in admin profiles.
    Could this be it?

  2. #722
    Join Date
    Oct 2008
    Posts
    10
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    I have isolated the problem.

    I installed sitemaps on a site without admin profiles and with ultimate SEO and the problem was the same.

    Then I installed sitemaps on a site with admin profiles and without ultimate SEO.

    The difference was that I didnt get any errors when installing the SQL patches, and it works.

    errors when installing the sql patches where :

    ERROR: adding "configuration_key" "" not possible because it already exists.
    Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.


    Any thoughts on how to handle it?
    I took Ultimate SEO becouse I couldn't get Simple to work.

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

    Default Re: Google SitemapAdmin

    Someone has been talking about the same problem. But how he solved this problem, I do not remember.

  4. #724
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    the mod install in my site
    can you lock here
    http://www.trickid.co.il/sitemapproducts.xml
    http://www.trickid.co.il/sitemapcategories.xml

    but i can't update with the update_1_3_4.sql
    copy the text and have error


    this error :
    Code:
    1062 Duplicate entry 'GOOGLE_SITEMAP_XML_FS_DIRECTORY' for key 2
    in:
    [INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES (NULL, 'XML directory', 'GOOGLE_SITEMAP_XML_FS_DIRECTORY', '', 'Directory using for saving XML files. Setting it to your root directory. If empty, Google Sitemap use DIR_FS_CATALOG directory.', @configuration_group_id, 7, NOW(), NULL, NULL);]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

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

    Default Re: Google SitemapAdmin

    Sam inv,
    Try to upload install.sql. Not copy/paste - use upload.

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

    Default Re: Google SitemapAdmin

    dmagic,
    From what version you update?

  7. #727
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by a_berezin View Post
    dmagic,
    From what version you update?
    i'm install this - http://zen-cart.spb.ru/zc-contributi...temapAdmin.zip

    PHP Code:
    SET @configuration_group_id=0;
    SELECT (@configuration_group_id:=configuration_group_idFROM configuration_group WHERE configuration_group_title'Google XML Sitemap' LIMIT 1;
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;

    INSERT INTO configuration_group (configuration_group_idconfiguration_group_titleconfiguration_group_descriptionsort_ordervisibleVALUES (NULL'Google XML Sitemap''Google XML Sitemap Configuration''1''1');
    SET @configuration_group_id=last_insert_id();
    UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;

    INSERT INTO configuration (configuration_idconfiguration_titleconfiguration_keyconfiguration_valueconfiguration_descriptionconfiguration_group_idsort_orderdate_addeduse_functionset_functionVALUES 
    (NULL'Compress XML File''GOOGLE_SITEMAP_COMPRESS''false''Compress Google XML Sitemap file', @configuration_group_id1NOW(), NULL'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (
    NULL'Products changefreq''GOOGLE_SITEMAP_PROD_CHANGE_FREQ''weekly''How frequently the Product pages page is likely to change.', @configuration_group_id2NOW(), NULL'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),
    (
    NULL'Category changefreq''GOOGLE_SITEMAP_CAT_CHANGE_FREQ''weekly''How frequently the Category pages page is likely to change.', @configuration_group_id3NOW(), NULL'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),
    (
    NULL'Lastmod tag format''GOOGLE_SITEMAP_LASTMOD_FORMAT''date''Lastmod tag format:<br />date - Complete date: YYYY-MM-DD (eg 1997-07-16)<br />full -    Complete date plus hours, minutes and seconds: YYYY-MM-DDThh:mm:ssTZD (eg 1997-07-16T19:20:30+01:00)', @configuration_group_id4NOW(), NULL'zen_cfg_select_option(array(\'date\', \'full\'),'),
    (
    NULL'Category priority''GOOGLE_SITEMAP_CAT_CHANGE_PRIOR''0.5''The default priority of the products URL. Valid values range from 0.0 to 1.0.', @configuration_group_id3NOW(), NULLNULL),
    (
    NULL'Products priority''GOOGLE_SITEMAP_PROD_CHANGE_PRIOR''0''The default priority of the products URL. Valid values range from 0.0 to 1.0.', @configuration_group_id5NOW(), NULLNULL),
    (
    NULL'Use Google Sitemaps Stylesheet''GOOGLE_SITEMAP_USE_XSL''true''Google Sitemaps Stylesheet gss.xsl', @configuration_group_id6NOW(), NULL'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (
    NULL'XML directory''GOOGLE_SITEMAP_XML_FS_DIRECTORY''''Directory using for saving XML files. Setting it to your root directory. If empty, Google Sitemap use DIR_FS_CATALOG directory.', @configuration_group_id7NOW(), NULLNULL),
    (
    NULL'EZPages Header''GOOGLE_SITEMAP_EZPAGES_HEADER''true''Use EZPages Header links to feed sitemapezpages.xml?', @configuration_group_id10NOW(), NULL'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (
    NULL'EZPages Sidebox''GOOGLE_SITEMAP_EZPAGES_SIDEBOX''true''Use EZPages Sidebox links to feed sitemapezpages.xml?', @configuration_group_id10NOW(), NULL'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (
    NULL'EZPages Footer''GOOGLE_SITEMAP_EZPAGES_FOOTER''true''Use EZPages Footer links to feed sitemapezpages.xml?', @configuration_group_id10NOW(), NULL'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (
    NULL'EZPages changefreq''GOOGLE_SITEMAP_EZPAGES_CHANGE_FREQ''weekly''How frequently the EZPages pages page is likely to change.', @configuration_group_id3NOW(), NULL'zen_cfg_select_option(array(\'always\', \'hourly\', \'daily\', \'weekly\', \'monthly\', \'yearly\', \'never\'),'),
    (
    NULL'EZPages priority''GOOGLE_SITEMAP_EZPAGES_CHANGE_PRIOR''0.5''The default priority of the EZPages URL. Valid values range from 0.0 to 1.0.', @configuration_group_id3NOW(), NULLNULL); 

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

    Default Re: Google SitemapAdmin

    If you INSTALL, why you use UPDATE?

  9. #729
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by a_berezin View Post
    If you INSTALL, why you use UPDATE?
    i don't know ...
    so it's ok ?

    Thanks !

  10. #730
    Join Date
    Oct 2008
    Posts
    591
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Quote Originally Posted by dmagic View Post
    i don't know ...
    so it's ok ?

    Thanks !
    after update 4 sitemap i have Sitemap stats
    Total URLs: 366


    sitemapindex.xml
    Sitemap Index 5 hours ago Warnings 183

    sitemapproducts.xml
    Sitemap 15 hours ago Warnings 159

    All the URLs in your Sitemap have the same priority.
    All the URLs in your Sitemap are set to the same priority (not the default priority). Priority indicates the importance of a particular URL relative to other URLs on your site, and doesn't impact your site's performance in search results. If all URLs have the same priority, Google can't tell which are more important.


    how can i fix the problem no Indexed URLs

 

 
Page 73 of 85 FirstFirst ... 2363717273747583 ... 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