♥FWR Media 198 Posted December 12, 2012 I can't really help here as there is no history of bugs in this area and you provide no debug path. includes/modules/ultimate_seo_urls5/main/Usu5_Bootstrap::adminInstalled() is the method that dictates whether or not to install admin settings so there is the place to start. Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Share this post Link to post Share on other sites
seaman 0 Posted December 13, 2012 Hi Robert! Great job, thanks! When set in admin panel Enable SEO URLs 5 = true, On product_info.php, when clik "Share" on Facebook or other social services. icon is not displayed picture of the product, only the link. I identified, that in the URL is passed: If Enable SEO URLs 5 = false http://external.ak.fbcdn.net/safe_image.php?d=AQDMUYJdK1uXT_hx&url=http://my_domen.com/images/product_001.png If Enable SEO URLs 5 = true http://external.ak.fbcdn.net/safe_image.php?d=AQDMUYJdK1uXT_hx&url=http://my_domen.com/product_info.php/images/product_001.png Thanks! Share this post Link to post Share on other sites
mattyhew 0 Posted December 13, 2012 Hi Robert, Thanks for the reply. Sorry, this is going to sound like a right newbie idiot question - I'm not sure what you mean by debug path. How can I supply one? Share this post Link to post Share on other sites
♥FWR Media 198 Posted December 13, 2012 I identified, that in the URL is passed: If Enable SEO URLs 5 = false http://external.ak.fbcdn.net/safe_image.php?d=AQDMUYJdK1uXT_hx&url=http://my_domen.com/images/product_001.png If Enable SEO URLs 5 = true http://external.ak.fbcdn.net/safe_image.php?d=AQDMUYJdK1uXT_hx&url=http://my_domen.com/product_info.php/images/product_001.png Looks like the tep_href_link) wrapper is being used in the code to produce an image URL which won't work. Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Share this post Link to post Share on other sites
♥FWR Media 198 Posted December 13, 2012 Hi Robert, Thanks for the reply. Sorry, this is going to sound like a right newbie idiot question - I'm not sure what you mean by debug path. How can I supply one? I mean you have supplied no information that could assist me in solving your issue. All I can say to you is where to look to begin looking for a cause: - includes/modules/ultimate_seo_urls5/main/Usu5_Bootstrap::adminInstalled() Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Share this post Link to post Share on other sites
dr_lucas 38 Posted December 13, 2012 (edited) I mean you have supplied no information that could assist me in solving your issue. @@FWR Media Robert, can you kindly help me solve mine? 1) I want to add an additional word to the categories URL right after the slash so that it will change From: http://www.mysite.com/category-info-text-c-##.html?page=1&sort=3a To: http://www.mysite.com/MyExtraText-category-info-text-c-##.html?page=1&sort=3a How can I do that? The MyExtraText is a constant... Edited December 13, 2012 by dr_lucas Did I help you? Click "Like" or "Thanks"! It's free of charge. :)My contributions:Total Configuration (newly updated 07/2018, for both osC 2.2 and 2.3.4.1 BS Frozen CE)User Tracking with Admin 1.0 (newly updated 07/2018)FedEx - Web Services v9, FAQ System , Who's Online Enhancement, Order Editor, MoneyBookers IPN, Ship in Cart (MS2), Admin Products Paging, Margin Report v1.00, 2Checkout INS / IPN (Instant Notification System) for MS2.2, Visitor Web Stats, Time Zone Offset - Adjust to match your location, Category Meta Tags Share this post Link to post Share on other sites
♥FWR Media 198 Posted December 13, 2012 (edited) Seems like you are adding this hardcoded text to every single category. If this is the case then you need to modify the index page module: - catalog/includes/modules/ultimate_seo_urls5/page_modules/index.php Then find the line ( 176 ish ): - $link_text = $this->acquireLinkText(); And add your text as appropriate where: - $this->key == 'cPath' Edited December 13, 2012 by FWR Media Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Share this post Link to post Share on other sites
dr_lucas 38 Posted December 14, 2012 @@FWR Media, Yes, I tried it before, but it kept adding MyExtraText after the string, so I eventually did it with array_unshift and seems to work fine. Hope this helps others too. Is there any potential issue with this following code? $link_text = $this->acquireLinkText(); // If the query returned no results then we return false forcing the use of the standard osCommerce link wrapper Usu_Main::i()->setVar( 'page_not_found', false ); if ( false === $link_text ) { Usu_Main::i()->setVar( 'page_not_found', true ); $this->unsetProperties(); return; } array_unshift($link_text , "MyExtraText"); //<--Adding Extra Text return $this->returnFinalLink( Usu_Main::i() ->getVar( 'uri_modules', USU5_URLS_TYPE ) ->createLinkString( $this->page, Usu_Main::i() ->getVar( 'uri_modules', USU5_URLS_TYPE ) ->separateUriText( $this->linktext( $link_text ) ) , $this->dependencies[$this->key]['marker'], $this->keys_index[$this->key] ) ); } // end method Did I help you? Click "Like" or "Thanks"! It's free of charge. :)My contributions:Total Configuration (newly updated 07/2018, for both osC 2.2 and 2.3.4.1 BS Frozen CE)User Tracking with Admin 1.0 (newly updated 07/2018)FedEx - Web Services v9, FAQ System , Who's Online Enhancement, Order Editor, MoneyBookers IPN, Ship in Cart (MS2), Admin Products Paging, Margin Report v1.00, 2Checkout INS / IPN (Instant Notification System) for MS2.2, Visitor Web Stats, Time Zone Offset - Adjust to match your location, Category Meta Tags Share this post Link to post Share on other sites
simontoyou 0 Posted December 19, 2012 (edited) Hi I've been trying to search for the solution to my problem but I can't find the solution... Sometimes when I go to my website I get this error: Warning: Invalid argument supplied for foreach() in D:\hosting\10165383\html\ipt\includes\modules\ultimate_seo_urls5\main\bootstrap.php on line 342 Warning: Invalid argument supplied for foreach() in D:\hosting\10165383\html\ipt\includes\modules\ultimate_seo_urls5\main\bootstrap.php on line 371 Warning: Can not find cache system: file in D:\hosting\10165383\html\ipt\includes\modules\ultimate_seo_urls5\main\bootstrap.php on line 521 Fatal error: Call to a member function retrieve() on a non-object in D:\hosting\10165383\html\ipt\includes\modules\ultimate_seo_urls5\main\bootstrap.php on line 531 I've read that I should search CRON and get wget but that didn't really lead me to anything (sorry if I overlooked it). Thanks for your time. Oh, and here are the lines with the problems: Line 342: foreach ( $modules as $index => $module ) { Line 371: foreach ( $modules as $index => $module ) { Line 509-521: private function cacheSystem() { include_once Usu_Main::i()->getVar( 'interfaces_path' ) . 'cache_interface.php'; if ( is_readable( Usu_Main::i()->getVar( 'cache_system_path' ) . USU5_CACHE_SYSTEM . '.php' ) ) { include_once Usu_Main::i()->getVar( 'cache_system_path' ) . USU5_CACHE_SYSTEM . '.php'; $class_name = module_naming_convention( USU5_CACHE_SYSTEM, '_Cache_Module' ); Usu_Main::$performance['cache_system'] = $class_name; $cache_object = call_user_func( array( $class_name, 'i' ) ); if ( $cache_object instanceof Memcache ) { $cache_object->initiate(); } return Usu_Main::i()->setVar( 'cache', $cache_object ); } trigger_error( 'Can not find cache system: <b>' . USU5_CACHE_SYSTEM . '</b>', E_USER_WARNING ); } Line 531 Usu_Main::i()->getVar( 'cache' )->retrieve(); Edited December 19, 2012 by simontoyou Share this post Link to post Share on other sites
rudolfl 19 Posted December 22, 2012 I am trying to install the contribution, but have some issues. For some reason, I do not see the "Seo Urls 5" in admin->configuration. I am pretty sure I did the installation correctly. And I did not see anything in installation that inserts this value into DB. Am I missing something? May be it has something to do with the fact I had old SEO URLs installed? "SEO URLs" still exists in database, but when I go there I get an error: Warning: call_user_func(tep_reset_cache_data_seo_urls) [function.call-user-func]: First argument is expected to be a valid callback in /public_html/admin/includes/functions/general.php on line Well, this is expected as this function does not exist anymore. I can see that there is a database installation files, but when are they called? My original DB was done with SEO URLs addon for osCommerce MS-2.2. (I am converting shop from MS-2.2 to 2.3.3) Perhaps, it is not supported? Thanks, Rudolf Share this post Link to post Share on other sites
dreamy 0 Posted January 4, 2013 Hi, many thanks for this Addon, but is it possible to remove the "products_info.php", pxxx and cxxx from the url? THX dreamy Share this post Link to post Share on other sites
Wizbits 0 Posted January 9, 2013 (edited) Just installed the version for 2.3.3.., I have checked my install twice. Hosted on GoDaddy Linux Server, multi-language. Everytime I enable this module to true I get a 404 page not found error. Here are my settings..., any ideas? Thanks Andy Edited January 9, 2013 by Wizbits Share this post Link to post Share on other sites
Ken_GoDaddy 0 Posted January 10, 2013 @@Wizbits I'm with GoDaddy and came across your post. Have you been able to get plug-in working on your site? If not I would be more than happy to work with you further. Please feel free to reply or send me a private message. Share this post Link to post Share on other sites
badbo 1 Posted January 12, 2013 Just installed the version for 2.3.3.., I have checked my install twice. Hosted on GoDaddy Linux Server, multi-language. Everytime I enable this module to true I get a 404 page not found error. Here are my settings..., any ideas? Thanks Andy Did you add the .haccess file to your root? Share this post Link to post Share on other sites
Sunmanuk 0 Posted January 21, 2013 HI Has anyone fully uninstalled this contrib ? ive reverted the files to original and removed the uploaded files but it remains in the admin pannel any pointers gratefully recieved Cris Share this post Link to post Share on other sites
dr_lucas 38 Posted January 21, 2013 @@cris Tip: You should reverse the MySQL changes too Did I help you? Click "Like" or "Thanks"! It's free of charge. :)My contributions:Total Configuration (newly updated 07/2018, for both osC 2.2 and 2.3.4.1 BS Frozen CE)User Tracking with Admin 1.0 (newly updated 07/2018)FedEx - Web Services v9, FAQ System , Who's Online Enhancement, Order Editor, MoneyBookers IPN, Ship in Cart (MS2), Admin Products Paging, Margin Report v1.00, 2Checkout INS / IPN (Instant Notification System) for MS2.2, Visitor Web Stats, Time Zone Offset - Adjust to match your location, Category Meta Tags Share this post Link to post Share on other sites
Snarg 2 Posted January 21, 2013 The answer to this question is probably buried somewhere in this thread but, really, 193 pages? I mean, I don't mind reading and all.... Anyway, does this contrib work on 2.3.3? If so, are there any major modifications needed or is it pretty much as is? Thank you. Share this post Link to post Share on other sites
♥FWR Media 198 Posted January 21, 2013 The answer to this question is probably buried somewhere in this thread but, really, 193 pages? I mean, I don't mind reading and all.... Anyway, does this contrib work on 2.3.3? If so, are there any major modifications needed or is it pretty much as is? Thank you. Yes this contrib works to latest version of osC and PHP. Note: If you can't find a proposed code change then it no longer matters ( ignore it ) I haven't yet upgraded the "changes" instructions but some are really not important to correct operation on newer versions of osC. 1 Snarg reacted to this Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Share this post Link to post Share on other sites
badbo 1 Posted January 21, 2013 HI Has anyone fully uninstalled this contrib ? ive reverted the files to original and removed the uploaded files but it remains in the admin pannel any pointers gratefully recieved Cris Open your phpmyadmin and remove the fields Share this post Link to post Share on other sites
badbo 1 Posted January 21, 2013 (edited) Adding Ultimate Seo Urls 5 PRO to windows 2008 server and be able to use the rewrite function is a simple process. 1. Open your Internet Information Services Manager 2. Find the domain (your site) that you have installed Ultimate Seo Urls 5 PRO to 3. Open your site 4. In the middle window click on url rewrite 5. Once it is open in the right pane hit import rules 6. In the middle pane you will see a rewrite rules box and add the following rules and conditions to the box RewriteRule ^([a-z0-9-/]+)-p-([0-9]+).html$ product_info.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-c-([0-9_]+).html$ index.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-m-([0-9]+).html$ index.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-pi-([0-9]+).html$ popup_image.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-pr-([0-9]+).html$ product_reviews.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-pri-([0-9]+).html$ product_reviews_info.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-t-([0-9_]+).html$ articles.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-au-([0-9]+).html$ articles.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-a-([0-9]+).html$ article_info.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-i-([0-9]+).html$ information.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-links-([0-9_]+).html$ links.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-n-([0-9]+).html$ newsdesk_info.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-nc-([0-9]+).html$ newsdesk_index.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-nri-([0-9]+).html$ newsdesk_reviews_info.php [NC,L,QSA] RewriteRule ^([a-z0-9-/]+)-nra-([0-9]+).html$ newsdesk_reviews_article.php [NC,L,QSA] 7. Hit the apply button on the top right pane 8. Go to your admin and set Ultimate Seo Urls 5 PRO to true and set rule to rewrite Thats it. Enjoy!!!!!! Tested and working on windows 2008 server with osc 2.3.3 Edited January 21, 2013 by badbo Share this post Link to post Share on other sites
ai12 0 Posted January 22, 2013 HI all, I have an oscommerce store with SEO URLS 5. On my site all my url's are correct etc however my products have been indexed twice on google. I can view my products by typing in the url mysite.com/product_info.php?products_id=121?osCsid=pse95daf95fg9tgad4. My understanding is that SEO URLS should redirect this to mysite.com/product_info.php/computer-memory-p-102? Is this the case? I have coppied all of the content into my .htaccess file but it has still made no difference? Share this post Link to post Share on other sites
asifamin01 0 Posted January 27, 2013 HI Robert, I have a serious problem with seo urls, the contribution was working perfect on my previous hosting server, but since when I migrated my website to GODADDy.com, the category pages are blank and it says "No input file specified." when I change Configuration>Seo Url 5>Choose uri formate to "rewrite" then I get 404 error. I am really in serious trouble please Help!! Share this post Link to post Share on other sites
badbo 1 Posted February 1, 2013 HI Robert, I have a serious problem with seo urls, the contribution was working perfect on my previous hosting server, but since when I migrated my website to GODADDy.com, the category pages are blank and it says "No input file specified." when I change Configuration>Seo Url 5>Choose uri formate to "rewrite" then I get 404 error. I am really in serious trouble please Help!! Check your htaccess to see if the rewrites are in it and check to see if it is rewrite \ or rewrite \yourfolder if you put your site in a different folder and Reset USU5 Cache Share this post Link to post Share on other sites
bksbeat 0 Posted February 9, 2013 Please review http://forums.oscommerce.com/topic/391609-redirect-htaccess/ I had installed this add-on in June 2011. I would like to remove the index.php from appearing in the url. Is this possible? My website is www.nontando.com Share this post Link to post Share on other sites