

misterbling
Members-
Content count
136 -
Joined
-
Last visited
Profile Information
-
Real Name
Lee
-
Interests
Hip Hop Jewelry | Bling Bling | Iced Out
- Website
-
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
Robert, Upgraded to your Pro version. Am getting an odd issue with forcing cookies on. If you clear out cookies in a browser, everything is fine until your second click the site redirects you to the index page. Assuming its a session issue since once this happens if you keep the cookie there are no further issues. Wondering if this has happened to someone before? Tried in html_output function tep_href_link( $page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true ) { return Usu_Main::i()->hrefLink( $page, $parameters, $connection, $add_session_id, $search_engine_safe ); } function tep_href_link( $page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = false, $search_engine_safe = true ) { return Usu_Main::i()->hrefLink( $page, $parameters, $connection, $add_session_id, $search_engine_safe ); } But still experiencing the issue. This is a long thread and haven't seen this issue, please if I could be pointed in the right direction. Thanks -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
Question. I have tested on a vanilla and while manufacturers pages work fine the product urls come out semi dynamic ie; /the-wheel-of-time-p-23.html?manufacturers_id=8 On categories and subcategories is fine /the-wheel-of-time-p-23.html Wondering if this is standard or no? Thanks -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
OK I'm honestly very impressed by this system. The reason for switching over was due to urls going to a file system other than database requirements by others. Had no idea memcache was also an option. Kudos. DO you see any complications with eaccelerator and memcache? Thanks -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
I agree. In the future I'd suggest to just include it in the "drop on top" everyone and their mother realizes it would just work that way. Just a suggestion, happy to play around with this and compare to the original ULTIMATE SEO URLS. Thanks -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
WOW OK here it is Line from instructions Well no. There are additional files to upload, you could have put in "drop on top", you didn't. probably an oversight...whatever. Not a big deal, and hopefully others will be helped by this. -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
FWR, Just did and that fixed it. BTW instructions DID NOT mention this and for a true "drop on top" should have included includes/modules/ultimate_seo_urls5/* Hopefully this will help others and possibly you could fix on next package. Thanks -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
\ULTIMATE_Seo_Urls_5_r141_stable\drop_on_top\catalog\includes\functions\html_output.php Line 20 include_once DIR_WS_MODULES . 'ultimate_seo_urls5' . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR . 'usu.php'; Where is this file? usu.php \drop_on_top\catalog\includes\modules\ Just has product_listing.php -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
FWR, Downloaded latest version. unzipped uploaded includes and admin folders into the root. Created over 50 oscommerce stores. I'll look further into it... but out of the box "drop on top" does not work or files are in the wrong places in your actual mod. Will look into it and post corrections. Thanks -
ULTIMATE Seo Urls 5 - by FWR Media
misterbling replied to FWR Media's topic in General Add-Ons Support
Well, Was expecting a bit more due to the hype Warning: include_once(includes/modules/ultimate_seo_urls5/classes/usu.php) [function.include-once]: failed to open stream: No such file or directory in /home/user/testsite.com/includes/functions/html_output.php on line 20 And yes vanilla install "drop on top" uploaded admin and includes folders into root. And no not the wrong (admin) folder literally in there double checked, line 20 in html_output.php Latest download. -
Store Mode (Open | Closed | Maintenance)
misterbling replied to olsonsp4c's topic in General Add-Ons Support
It's not defined. The "CLOSED_MESSAGED" That is. You could simply define it there if you wanted ie; define('CLOSED_MESSAGED', 'We are temporarily closed'); before it. What you missed in the instructions was this -
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
misterbling replied to spidometrs's topic in General Add-Ons Support
Jack, Will keep an eye out for it, never would have noticed it it wasn't for your canonical addition to the header tag contribution. Thanks -
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
misterbling replied to spidometrs's topic in General Add-Ons Support
Jack, just installed the latest version Ultimate SEO 2-2.2d-4 -
[CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo
misterbling replied to spidometrs's topic in General Add-Ons Support
Possible Bug? Found out when a subcategory is 301'd it doesn't redirect with the full url. ie subs have 2 sets of numbers -c-11_22.html http://www.misterbling.com/bling-cross-watches-c-11_27.html Correct url But try an incorrect http://www.misterbling.com/notcorrect-c-11_27.html Redirects but goes here http://www.misterbling.com/bling-cross-watches-c-27.html instead of http://www.misterbling.com/bling-cross-watches-c-11_27.html Can someone verify on their site on a sub? Thanks -
PayPal WPP Direct Payments & Express Checkout Support
misterbling replied to dynamoeffects's topic in Other
Have installed and upon returning to the site from paypal all of the payment options are still available, what would the problem be, has this been addressed before. Thanks -
REQUEST FOR QUOTE: Freight and International Shipping Quote Modules
misterbling replied to Naegle's topic in General Add-Ons Support
Here's the Fix for Zones Replace if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_RFQ_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id <> '" . MODULE_SHIPPING_RQF_ZONE . "' and zone_country_id <> '" . $order->delivery['country']['id'] . "' order by zone_id"); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] < 1) { $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { $check_flag = true; break; } } if ($check_flag == false) { $this->enabled = false; } } } if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_RFQ_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_SHIPPING_RFQ_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id"); // $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id <> '" . MODULE_SHIPPING_RQF_ZONE . "' and zone_country_id <> '" . $order->delivery['country']['id'] . "' order by zone_id"); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] == $order->delivery['zone_id']) { $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { $check_flag = true; break; } } if ($check_flag == true) { $this->enabled = false; } } }