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
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.
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.
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).
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.
Re: Chemo's Ultimate URL's
Quote:
Originally Posted by DrByte
Thanks to Chris for the update and thanks to Isaac for the fix.
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
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
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.
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 ?