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 :smile:
Thanks
Printable View
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.
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.
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.
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
byCode:// 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);
}
/*
let me know if it fixes your problem!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);
}
/*
I talked too fast: it redirects to the good pages, but we are back to NON SSL pages. Arf.
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:
- Next, perform the standard install as instructed in the readme documents.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);
}
- 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
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!