Page 19 of 146 FirstFirst ... 917181920212969119 ... LastLast
Results 181 to 190 of 1456
  1. #181
    Join Date
    Oct 2005
    Posts
    206
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    My Store: Bonsai tree seeds

  2. #182
    Join Date
    Sep 2004
    Posts
    335
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    I am having a little problem with the mod, ultimate seo. I am getting an error code, 404 everytime i click on the lick of a product put in the shopping cart.

  3. #183

    Default Re: Chemo's Ultimate URL's

    That did the trick, thanks.
    Rich People scream, Wealthy people whisper

    www.cooltechcentral.com

  4. #184
    Join Date
    Sep 2006
    Posts
    163
    Plugin Contributions
    1

    Default Re: Chemo's Ultimate URL's

    I have installed this and Chemo's excellent Google Sitemaps on an OsCommerce site and they work just fine together.

    However, although SEO Ult URLs works just as well on a Zen Cart installation, the Zen Cart Google Sitemaps Admin is no good with it - that puts the horrid old SEO unfriendly URLs into the XML.

    I've tried and failed to get the OsCommerce Google Sitemaps to install on Zen Cart (well, it was worth a try!). Is there a Chemo equivalent for Zen Cart that I've missed?

  5. #185
    Join Date
    Feb 2004
    Location
    Georgia, USA
    Posts
    1,948
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by hairydog
    I have installed this and Chemo's excellent Google Sitemaps on an OsCommerce site and they work just fine together.

    However, although SEO Ult URLs works just as well on a Zen Cart installation, the Zen Cart Google Sitemaps Admin is no good with it - that puts the horrid old SEO unfriendly URLs into the XML.

    I've tried and failed to get the OsCommerce Google Sitemaps to install on Zen Cart (well, it was worth a try!). Is there a Chemo equivalent for Zen Cart that I've missed?
    Are you using the sitemap from Andrew which works flawlessly? You can get it here: http://zen-cart.spb.ru/index.php?mai...d=15&chapter=0

  6. #186
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by monkeymadness
    hello

    i have this mod working on 1.3.02 which i'll explain how to do below...a few minor issues that i'm not sure are important

    adds .html to every page so if you type in yourdomain.com/contact_us it'll take you to the custom page not found but if you type yourdomain.com/contact_us.html you'll get there

    doesnt like ez pages

    to get the page not found to appear instead of the home page try the setting in admin > config >my store > missing page check > page not found
    it may be too simple to be the answer but its all i can think of seeing as it works for me

    to get ultimate seo to work on 1.3.2 go to dreamscapes site

    http://www.dream-scape.com/pub/zenca...mate_SEO_URLs/

    download the mod and upload the files

    go to installation on the dreamscape site

    ignore the 2 instruction of changing application_top.php

    instead go to the directory /includes/init_includes
    edit the file init_templates.php

    look for the location where a line which says:
    ----------------------------------------------------------------------
    include_once(DIR_WS_LANGUAGES . *$_SESSION['language'] . '.php');
    -------------------------------------------------------------------------
    insert following lines immediate after this location:
    --------------------------------------------------------------------
    // line added for SEO v2.100

    require_once(DIR_WS_CLASSES . 'seo.url.php');

    if (!is_object($seo_urls)) {
    $seo_urls = &new SEO_URL($_SESSION['languages_id']);
    }

    // end of line addition to SEO v2.100
    ------------------------------------------------------------------------

    then go back to dreamscapes site and follow the instructions 3-8

    dont forget to add the paypal fix to seo.url.php

    ----------------------------------------------------------------------------------------

    The problem: the paypal payment mod is using zen_href_link to construct the notify url. We need to tell the SEO mod to skip modifying this url.

    The solution: In the class file seo.url.php we just have to add a check for ipn_main_handler.php

    Find the function function href_link()

    The very beginning of the function has code like:

    Code:
    // don't rewrite when disabled
    // don't rewrite images, css, js, xml, real html files, etc
    if ( ($this->attributes['SEO_ENABLED'] == 'false') || (preg_match('/(.+)\.(html?|xml|css|js|png|jpe?g|gif|bmp|tiff?|ico|gz|zip|rar)$/i', $page)) ) {
    return $this->stock_href_link($page, $parameters, $connection, $add_session_id, true, $static, $use_dir_ws_catalog);
    }


    Immediately after that, add the following:

    Code:
    // don't rewrite the paypal IPN notify url
    if ($page == 'ipn_main_handler.php') {
    return $this->stock_href_link($page, $parameters, $connection, $add_session_id, true, $static, $use_dir_ws_catalog);
    }

    -------------------------------------------------------------------------------------

    and remember to compare and merge the html_output.php if your using imagehandler2

    thats all i did...thanks to zenhorocks who worked it out in another achived thread somewhere out there

    hope it helps....if anyone knows how of get rid of the .html it would be much appreciated as it doesnt seem right

    good luck
    I attempted to use these instructions to install Ultimate SEO URLs on my site http://www.oldwestgames.com
    I followed the instructions. I am now however getting a blank page when I go to the home address of my site as listed above and there is no configuration in the zen cart admin for this mod.
    I think one problem may be that my realtive path to my catalog in my .htacces file might be wrong or I might be putting the .htaccess file code in the wrong directory. Can anyone tell me what that path might be and the appropriate directory for the .htaccess file is? I would hate to uninstall this mod and then have to go back and keep trying to reinstall.
    Help, please, ASAP. thanks
    Sam

    zen cart version 1.3.5
    no other mods
    Last edited by mafiasam; 12 Sep 2006 at 12:14 AM.

  7. #187
    Join Date
    Sep 2006
    Posts
    163
    Plugin Contributions
    1

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by BlessIsaacola
    Are you using the sitemap from Andrew which works flawlessly? You can get it here: http://zen-cart.spb.ru/index.php?mai...d=15&chapter=0
    That's the one I'm using, but it doesn't work flawlessly for me. It doesn't put the SEO friendly URLs into the XML.

  8. #188
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by mafiasam
    I attempted to use these instructions to install Ultimate SEO URLs on my site http://www.oldwestgames.com
    I followed the instructions. I am now however getting a blank page when I go to the home address of my site as listed above and there is no configuration in the zen cart admin for this mod.
    I think one problem may be that my realtive path to my catalog in my .htacces file might be wrong or I might be putting the .htaccess file code in the wrong directory. Can anyone tell me what that path might be and the appropriate directory for the .htaccess file is? I would hate to uninstall this mod and then have to go back and keep trying to reinstall.
    Help, please, ASAP. thanks
    Sam

    zen cart version 1.3.5
    no other mods
    okay, so I actually got it to return an error message at the home page now...

    1146 Table 'mafiasam_zc.seo_cache' doesn't exist
    in:
    [DELETE FROM seo_cache WHERE cache_expires <= '2006-09-11 18:43:55']
    can anyone give me an idea what this means?

    thanks

  9. #189
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    1146 Table 'mafiasam_zc.seo_cache' doesn't exist
    in:
    [DELETE FROM seo_cache WHERE cache_expires <= '2006-09-11 18:43:55']

    okay I was told by a support person at opensourcehost (my hosting company) that I need to upload a sql file through myphpadmin in order to get this working but I have not found the sql file anywhere on this forum or in any of the downloads for this contribution. I am now able to get to the Configuration> SEO URLs in zencart admin but I don't want to mess with any of the settings if I don't have to and doing a cache reset only gives me the same error message obviously.

  10. #190
    Join Date
    Jan 2006
    Location
    Portland, Oregon
    Posts
    276
    Plugin Contributions
    0

    Re: Chemo's Ultimate URL's

    Quote Originally Posted by mafiasam
    1146 Table 'mafiasam_zc.seo_cache' doesn't exist
    in:
    [DELETE FROM seo_cache WHERE cache_expires <= '2006-09-11 18:43:55']

    okay I was told by a support person at opensourcehost (my hosting company) that I need to upload a sql file through myphpadmin in order to get this working but I have not found the sql file anywhere on this forum or in any of the downloads for this contribution. I am now able to get to the Configuration> SEO URLs in zencart admin but I don't want to mess with any of the settings if I don't have to and doing a cache reset only gives me the same error message obviously.
    Got it!

    For anyone else who got this problem please be advised that you must rename the TABLE_SEO_CACHE in your mysql database to seo_cache

    This was not mentioned anywhere in any of the installation instructions and it took me forever to find a solution because of the length of these threads...

    To rename a table using phpmyadmin see this...

    http://www.theadminzone.com/forums/s...ead.php?t=1729

    sorry for all the threads as I worked out my problem but I figure seeing how I worked it out might help others with the same problems....
    Last edited by mafiasam; 12 Sep 2006 at 03:15 AM.

 

 

Similar Threads

  1. v151 with ultimate seo Url,how to change the ez-page url ?
    By whywell in forum General Questions
    Replies: 1
    Last Post: 17 Jan 2013, 09:12 AM
  2. Chemo's Ultimate SEO URL's and EZPages?
    By Doodlebuckets in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 5 Aug 2008, 08:36 PM
  3. Fix for Easy Populate Froogle with Chemo's Ultimate URL's
    By mccord42 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 8 Feb 2007, 04:06 PM
  4. Can NOT access Admin after installing Chemo's Ultimate URL's
    By hankliu in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 12 Dec 2006, 10:33 AM

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