Results 1 to 10 of 847

Hybrid View

  1. #1
    Join Date
    Oct 2008
    Posts
    6
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    i install the google sitempa
    when comt to tools----google xml sitemap -----click here

    can not creat the xml..

    help assp......

  2. #2
    Join Date
    Apr 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Hi, have installed everything but when I try to add the mysql as instructed via copy and paste (not file upload) I just get logged out of my admin. File upload works I have been using it fine, paste doesn't.

    I tried to run it instead via phpmyadmin and got:

    #1146 - Table 'user_dbname.configuration_group' doesn't exist

    Can you advise please?

    Thanks

  3. #3
    Join Date
    Apr 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    Just to add Full error message.

    When I try to run the install via phpmyadmin I get:

    SQL query:

    SELECT (
    @configuration_group_id := configuration_group_id
    )
    FROM configuration_group
    WHERE configuration_group_title = 'Google XML Sitemap'
    LIMIT 1 ;

    MySQL said:
    #1146 - Table 'user_dbname.configuration_group' doesn't exist

    Please advise
    Thanks

  4. #4
    Join Date
    Aug 2007
    Location
    Cannon Beach, OR
    Posts
    180
    Plugin Contributions
    0

    Default Re: Google SitemapAdmin

    For those of you who don't like getting the Google warning,

    "All the URLs in your Sitemap have the same priority.":

    I have made a little hack that will alter the priority of the first 2 urls in each sitemap. It arbitrarily reduces the priority of the first 2 urls by .1. If your priority is set for .7, then the first 2 urls will have a priority of .6 and the rest will be .7. This will satisfy the google bot and eliminate the warning message.

    It is also possible to open up your sitemap files and manually alter a couple of urls. This will also work. But I have mine set up to run daily as an automated task, so do not have this option. So I created a couple of lines of code to handle this for me.

    In googlesitemap.php, the following is all original code, except for the part between "// begin kehrli mod:" and "// end kehrli mod". Just find that part of the code and insert the 3 new lines.

    PHP Code:
          $number++;
          
    $contentXML .= ' <url>' "\n";
          
    $contentXML .= '  <loc>' utf8_encode($url['loc']) . '</loc>' "\n";
          if(isset(
    $url['lastmod']) && $url['lastmod'] != '')
            
    $contentXML .= '  <lastmod>' $this->LastMod($url['lastmod']) . '</lastmod>' "\n";
          if(isset(
    $url['changefreq']) && $url['changefreq'] != '')
            
    $contentXML .= '  <changefreq>' $url['changefreq'] . '</changefreq>' "\n";
          if(isset(
    $url['priority']) && $url['priority'] != '')
    // begin kehrli mod:
            
    if($number 3)
              
    $contentXML .= '  <priority>' . ($url['priority'] - .1) . '</priority>' "\n";
            else
    // end kehrli mod
              
    $contentXML .= '  <priority>' $url['priority'] . '</priority>' "\n";
          
    $contentXML .= ' </url>' "\n"

 

 

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

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