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
Bookmarks