Page 44 of 146 FirstFirst ... 3442434445465494144 ... LastLast
Results 431 to 440 of 1456
  1. #431
    Join Date
    Jan 2007
    Posts
    65
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by hairydog View Post
    Sorry I can't help with the solution for shared SSL, but I can't help thinking that it's not great sorting out SEO URLs if you have those horrible session IDs appended to your URLs.

    I think there must be something wrong with your cookie settings if they are being used. Perhaps if you could sort that out, you might be one step further forward.
    I would be very grateful if you could point out where cookies settings are.
    I didn't see any cookies paths in the configure files like OsCom

    Thanks

  2. #432
    Join Date
    Mar 2006
    Posts
    25
    Plugin Contributions
    0

    red flag Lack of Development

    I'm disappointed.

    I contributed several times to the fund to fix this thing and three months on, the fix has not been addressed.

    I am going to go through the drill of updating my store to 1.3.7.

    But I am going to run without SEO URL's as I don't have time to chase bugs like people here are reporting with this.

    I think there has been enough time for Dreamscape to either find the reported 10-15 hours we all paid for or to tell us he was in an auto accident and laid up unable to type.

    That said, I will monitor this thread and hope that someday this issue gets addressed.

    It's a poor compromise to have to not have SEO, but I value stabililty more and there is enough code wrangling one has to do just to get the features I am using in place.

    We go live Friday.

  3. #433
    Join Date
    Mar 2005
    Posts
    32
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Somebody is filling his moneypockets here LOL.

    This is one of the reasons that I put ZENCART in de recycle bin and went back to my old perfect working Creloaded 6.2 version. This version has perfect working Ultimate Seo Url

  4. #434
    Join Date
    Mar 2006
    Posts
    25
    Plugin Contributions
    0

    Idea or Suggestion Re: Chemo's Ultimate URL's

    Quote Originally Posted by Noutje View Post
    Somebody is filling his moneypockets here LOL.

    This is one of the reasons that I put ZENCART in de recycle bin and went back to my old perfect working Creloaded 6.2 version. This version has perfect working Ultimate Seo Url
    That is interesting.

    I have until Friday to do the upgrade to 1.36 and a few other things and get my site live.

    I had CreLoaded, bought a version of it a while back. How easy would it be to transplant my look/feel to CreLoaded and just get away from all of this nonsense?

    Has anyone moved a ZenCart to CreLoaded recently and found it any easier than the complicated update process I am staring at?

    If so, let me know.

    If it's as easy as a ZC update, then a bunch of us ought to just shift over and send Zen a message that this kind of development shenanigans don't work.

  5. #435
    kelvyn Guest

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by immunecology View Post
    That is interesting.
    I have until Friday to do the upgrade to 1.36 and a few other things and get my site live.
    I think (hope!) you mean 1.3.7!
    Quote Originally Posted by immunecology View Post
    If it's as easy as a ZC update, then a bunch of us ought to just shift over and send Zen a message that this kind of development shenanigans don't work.
    To be fair, the developer of this extension is nothing to do with Zen Cart.

    On the other hand, you could argue that readable/seo-friendly URLs etc are such a basic core functionality, that they shouled be part of the core anyway.

  6. #436
    Join Date
    Mar 2006
    Posts
    25
    Plugin Contributions
    0

    red flag Re: Chemo's Ultimate URL's

    Quote Originally Posted by kelvyn View Post
    I think (hope!) you mean 1.3.7!To be fair, the developer of this extension is nothing to do with Zen Cart.

    On the other hand, you could argue that readable/seo-friendly URLs etc are such a basic core functionality, that they shouled be part of the core anyway.


    Yeah- I am updateing 1.3.6 to 1.3.7 -- Or thinking about it it almost seems like a fresh install and reinstall of all my mods is the best answer. 10-12 hours of file comparison seems like an unholy price to pay to upgrade the code base.

    Plus all the nagging concern that extensions that were certified under 1.3.6 or 1.3.x might have some unknown bug induced by 1.3.7.

    Is it just me or does anyone else feel like a beta tester instead of a user.

    And yeah--ZenCard should have addressed the SEO URL issue a long time ago.

  7. #437
    Join Date
    Jan 2007
    Posts
    65
    Plugin Contributions
    0

    Default Chemo's Ultimate URL's: fix for shared SSL

    Hi Folks

    I applied this to my includes/classes/seo.url.php, and it works like a charm now:

    line 145 (or search for //don't rewrite paypal IPN)

    replace

    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);
          }
    
          /*
    by

    Code:
          // don't rewrite the paypal IPN notify url
          if (($page == 'ipn_main_handler.php') || ($connection == 'SSL')) {
           return $this->stock_href_link($page, $parameters, $connection, $add_session_id, true, $static, $use_dir_ws_catalog);
          }
    
          /*
    let me know if it fixes your problem!

  8. #438
    Join Date
    Jan 2007
    Posts
    65
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's: fix for shared SSL

    I talked too fast: it redirects to the good pages, but we are back to NON SSL pages. Arf.

  9. #439
    Join Date
    May 2005
    Location
    Bath, Somerset
    Posts
    1,053
    Plugin Contributions
    3

    Default Re: Chemo's Ultimate URL's

    This code is meant for Shared SSL sites only, where the SSL pages do not need to be SEO pages.

    - From a base zen -cart install, open includes/functions/html_output.php, and rename zen_href_link funtion to zen_original_href_link

    - Next, before this function, paste the following code:

    Code:
      function zen_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true, $static = false, $use_dir_ws_catalog = true) {
    		if ($connection == 'SSL') return original_zen_href_link($page, $parameters, $connection, $add_session_id, $search_engine_safe, $static, $use_dir_ws_catalog);
    		if (!isset($GLOBALS['seo_urls']) && !is_object($GLOBALS['seo_urls'])) {
    			include_once(DIR_WS_CLASSES . 'seo.url.php');
    
    			$GLOBALS['seo_urls'] = &new SEO_URL($_SESSION['languages_id']);
    		}
    
    		return $GLOBALS['seo_urls']->href_link($page, $parameters, $connection, $add_session_id, $static, $use_dir_ws_catalog);
      }
    - Next, perform the standard install as instructed in the readme documents.

    - Finally, in the admin TUN OFF autmatic redirects.

    Thats it. This code ensures that ALL SSL page links are created as standard zen URLs. If its an SSL page, the chancews are that you really don't need the page to have an SEO url in the first place, as the search engines are probably not indexing these pages anyway.

    This patch works, and I currnetly have it installed on over 20 sites using shared SSLs. The SEO contribution is a fantastic module to install, and in its defence, I have it installed on well over 40 sites, and not a problem on any of them.

    Good luck,

    ABsolute

  10. #440
    Join Date
    Jan 2007
    Posts
    65
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Thank you so much for your help, I installed it and ir works perfectly!

    Ahem... I don't want to be a party pooper after the big hurray, but did you try to click on "log out" on your 40 sites ? ;-)

    Not a big issue, since I know very few people who actually log out, but I have sometimes very demanding clients and I'm sure that day will come with an email asking "my site has a broken link, thank you for fixing this".

    I am clueless on how to fix this one...besides removing the log out link haha!

 

 

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