Page 13 of 146 FirstFirst ... 311121314152363113 ... LastLast
Results 121 to 130 of 1456
  1. #121
    Join Date
    Feb 2006
    Posts
    326
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by DrByte

    Ahhh... thank you if I seemed whiny or obtuse. I was trying really hard to follow the thread and figure out what to do, and just wasn't getting it. I used the link you provided. As best I can tell the one thing that changed from this fileset was the html_output fix. I seem to have my https back now with the module enabled.
    Thanks very much
    Give us your best shot!
    http://www.photoimprints.com

  2. #122
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by BlessIsaacola
    but then again why do you want to install this mod? ZC works just fine without it :)
    Zencart works just fine without any mods installed, but we customize and install to fit our needs.

  3. #123
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by styledata
    Ahhh... thank you if I seemed whiny or obtuse. I was trying really hard to follow the thread and figure out what to do, and just wasn't getting it. I used the link you provided. As best I can tell the one thing that changed from this fileset was the html_output fix. I seem to have my https back now with the module enabled.
    Thanks very much
    the html_output update was largely to add compatibility fixes for bugs fixed in newer versions of the v1.3.x series.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

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

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by voltage
    Zencart works just fine without any mods installed, but we customize and install to fit our needs.
    Voltage, I was actually NOT talking about all mods, I was talking specifically about the mod in discussion (Chemo's Ultimate URL's). There have been mixed reviews about it (especially if you've been following the poll and discussion in separate thread about it).

  5. #125
    Join Date
    Apr 2005
    Location
    Houston, TX
    Posts
    1,410
    Plugin Contributions
    1

    Default Re: Chemo's Ultimate URL's

    If this mod is causing you major headaches and you are spending weeks and weeks of time trying to get it to work, by all means, move on. It provides a little boost to your SEO but there are other things that you could and should be focusing on that will make a more significant impact.

    I believe this has given my site a little boost as far as SEO is concerned, but it is not a silver bullet and never will be. Some argue because they don't use it and they have been able to acheive high PR its proof that it doesn't work and isn't needed (which is faulty logic and doesn't really prove anything, hardly a scientific experiment in my opinion). But to each his own. It IS completely optional (as all mods are) and if you are gonna blow hours and days of work, don't do it.

  6. #126
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by DrByte
    Thanks to Chris for the update and thanks to Isaac for the fix.

  7. #127
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by Woodymon
    Thanks to Chris for the update and thanks to Isaac for the fix.
    Now rereading the archived support thread I see I should have thanked flewid for locating the missing apostophe.

    Has anyone documented all the "confirmed" successfull FIXES since Dreamscape's release and documented the fixes that have actually made it into DrBytes releases? And those which did not not make it into the latest release?

    Woody

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

    Default Re: Chemo's Ultimate URL's

    Woody,

    With DrByte's latest release all the known changes have been incorporated. The only one I am not sure about is the issue with Paypal. Here is the fix from Dreamscape for it:

    Important: Paypal IPN Patch

    For anyone having Paypal IPN problems, please try the following patch

    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);
     	}
    Please note that the above IPN patch may have been included in DrByte's fix but I did not check it.

    Another important notice (per A_berezin's post and confirmed to be the case):
    Zen-Cart use dynamic info_page (zen_get_info_page()). This mod use old style hard-coded FILENAME_PRODUCT_INFO in seo.url.php and .htaccess. You may rewrite seo.url.php to support dynamic info_page. But what about hard-coded .htaccess? Any time you add new product type or change type_handler you must edit two files!

    I have a patch for the music product type but not for other product types. Dreamscape is planning to support product type in future release.

    There are a few other contributions that if you have installed you need to make sure it works with ultimate seo. The link to the old discussion is here: http://www.zen-cart.com/forum/showth...t=ultimate+seo

  9. #129
    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.

  10. #130
    Join Date
    Oct 2005
    Posts
    287
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    I installed SEO and also made the "Paypal Fix" editing.
    How do I do a "Credit Card Fix" , there were 2 mentions of this same problem on this thread but no solution to that , anybody ?

 

 

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