Guest Posted December 15, 2011 Share Posted December 15, 2011 thats it it is in the application top.php file not the bm_languages.php file Then add the following below above the // include the language translations require(DIR_WS_LANGUAGES . $language . '.php'); /** * ULTIMATE Seo Urls 5 PRO by FWR Media */ Usu_Main::i()->setVar( 'languages_id', $languages_id ) ->setVar( 'request_type', $request_type ) ->setVar( 'session_started', $session_started ) ->setVar( 'sid', $SID ) ->setVar( 'language', $language ) ->setVar( 'filename', $PHP_SELF ) ->initiate( ( isset( $lng ) && ( $lng instanceof language ) ) ? $lng : array(), $languages_id, $language ); Does that make sense Quote Link to comment Share on other sites More sharing options...
mizan Posted December 16, 2011 Share Posted December 16, 2011 I wanna install it,but At the first stage,I got a problem.At the catalog/index.php ,My page code is the below:- <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); // the following cPath references come from application_top.php $category_depth = 'top'; if (isset($cPath) && tep_not_null($cPath)) { $categories_products_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_TO_CATEGORIES . " where categories_id = '" . (int)$current_category_id . "'"); $categories_products = tep_db_fetch_array($categories_products_query); if ($categories_products['total'] > 0) { $category_depth = 'products'; // display products } else { $category_parent_query = tep_db_query("select count(*) as total from " . TABLE_CATEGORIES . " where parent_id = '" . (int)$current_category_id . "'"); $category_parent = tep_db_fetch_array($category_parent_query); if ($category_parent['total'] > 0) { $category_depth = 'nested'; // navigate through the categories } else { $category_depth = 'products'; // category has no products, but display the 'no products' message } } } require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DEFAULT); ?> <?php if ($category_depth == 'nested') { $tab_sel = tep_href_link(FILENAME_CATEGORIES_NESTED); $current_page = FILENAME_CATEGORIES_NESTED; require(DIR_WS_INCLUDES . 'template_top.php'); include(FILENAME_CATEGORIES_NESTED); ?> <?php } elseif ($category_depth == 'products' || isset($HTTP_GET_VARS['manufacturers_id'])) { $tab_sel = tep_href_link(FILENAME_CATEGORIES_LISTING); $current_page = FILENAME_CATEGORIES_LISTING; require(DIR_WS_INCLUDES . 'template_top.php'); include(FILENAME_CATEGORIES_LISTING); ?> <?php } else { // default page $tab_sel = tep_href_link(FILENAME_DEFAULT); $current_page = FILENAME_DEFAULT; require(DIR_WS_INCLUDES . 'template_top.php'); $first_page = true; ?> <?php echo tep_draw_content_top();?> <div class="none"> <?php echo tep_draw_title_top();?> <h1><?php echo HEADING_TITLE; ?></h1> <?php echo tep_draw_title_bottom();?><br /> </div > <div class="contentContainer"> <?php include(DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); include(DIR_WS_MODULES . FILENAME_UPCOMING_PRODUCTS); ?> </div> <?php echo tep_draw_content_bottom();?> <?php } require(DIR_WS_INCLUDES . 'template_bottom.php'); require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> so,I did not find the following code to replace with:- tep_draw_form('filter', FILENAME_DEFAULT, 'get') please guide how to fix it? tnx Quote Link to comment Share on other sites More sharing options...
twindaddy Posted December 17, 2011 Share Posted December 17, 2011 Hi9, I just installed the contribution. I want to configure it, butt now i get this error: Call to undefined function tep_call_function() in /admin/configuration.php on line 69 Has anybody the same problem or a sollution for this? Thank you Quote Link to comment Share on other sites More sharing options...
yaniv14 Posted December 17, 2011 Share Posted December 17, 2011 I have the same problem like MrHilsen, but it's more complicated with me because my categories are in hebrew characters, and I cannot replace 1 or 2 characters like nick suggested, because there are no matching letters in hebrew and english. so the bottom line is when I install the addon its only working if I press an item, but when I need to go thru categories, it wont work, will give me error unable to load the page. Please help. Quote Link to comment Share on other sites More sharing options...
zeberrun Posted December 30, 2011 Share Posted December 30, 2011 hello 2,3,1 UTf-8 the product name is Felix FL 660 Sarto Lux Ceramic Tabanlı Ütü but in the address bar product_info.php/felix-660-sarto-lux-ceramic-tabanl-buharl-p-108780 ths modification is done $pattern = ( defined( 'USU5_REMOVE_ALL_SPEC_CHARS' ) && USU5_REMOVE_ALL_SPEC_CHARS == 'true' ) ? "@[^\sa-z0-9]@i" : "@[!#\$%&'\"()\*\+,\-\./:;<=>\?\@\[\]\^_`\{|\}~]+@"; Quote Link to comment Share on other sites More sharing options...
zeberrun Posted December 31, 2011 Share Posted December 31, 2011 if danish, turkish character conversion path does not work, in admin/seourl5/ Enter special character conversions. (Better to use the file based character conversions) write convertions here. enable multi lang support false. than works. Quote Link to comment Share on other sites More sharing options...
concorde44 Posted January 3, 2012 Share Posted January 3, 2012 Hi everybody, BIG thanks to FWR Media for this great contrib. I'm osc2.2ms2 and I have successfully replaced the Ultimate SEO by CHemos with this one on my website. everything is fine except the redirections 301, when a product is not found. I dont understand the logic if a product is not found, because desactivated on the admin side. the result I have is : ->header 301, moved permanently >> new location, is the correct url of the desactivated product, but on the body part of the website I have the text PRODUCT NOT FOUND. If the product is not found, why tell google a 301 redirect to this not found page ? The page will be crawled by google and indexed with wrong information. Am I Right ? Why an 404 redirect shouldn't be better, for a desactivated product that we may be never have again ? so I tried to put this code on the product_info.php page : ... <?php if ($product_check['total'] < 1) { header("HTTP/1.1 404 Not Found"); header("Status: 404 Not Found"); ?> .... and this on the .htaccess : ErrorDocument 404 /includes/modules/ultimate_seo_urls5/includes/notfound_404.php and the 404 is not showing up . Still 301 redirect when checking with an external tool. Any idea to show the 404 page ? another question : this url is not showing me the 404 error page (/includes/modules/ultimate_seo_urls5/includes/notfound_404.php) : http://my-store.com/cool-product-p-1280.html, Please note the coma after the .html But a ugly apache screen : Not Found The requested URL cool-product-p-1280.html, was not found on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. Apache/2.0.59 (Unix) mod_ssl/2.0.59 OpenSSL/0.9.8g Server at my-store.com Port 80 Thanks for your help ! and best wishes ! Sebastien. Quote Osc 2.2 MS2 Link to comment Share on other sites More sharing options...
DCore Posted January 3, 2012 Share Posted January 3, 2012 (edited) - installed it / upgraded from Chemos variant in Oscommerce 2.2 ms2 on a Linux Server - thought everything was fine - until I clicked on the flag to change to other language ( english ) > then only header parts of the index template get loaded ( the rest is broken = not loaded ) > when I switch back to german works fine again > when I installed dutch as 3rd language I could switch to it without problem ( I did everything as advised in the manuals. Even installed the delivered index.php and language box to see if my files are the problem. ) ( I tested all kinds of parameters and settings. ) Could it be that the problem has something to to with any language_id or charsets mismatch ? (why did it work with chemos version than?) I need help or advise cause I don´t know what the problem is... I don´t get any php error messages. Anybody? Edited January 3, 2012 by DCore Quote Link to comment Share on other sites More sharing options...
DCore Posted January 3, 2012 Share Posted January 3, 2012 - installed it / upgraded from Chemos variant in Oscommerce 2.2 ms2 on a Linux Server - thought everything was fine - until I clicked on the flag to change to other language ( english ) > then only header parts of the index template get loaded ( the rest is broken = not loaded ) > when I switch back to german works fine again > when I installed dutch as 3rd language I could switch to it without problem ( I did everything as advised in the manuals. Even installed the delivered index.php and language box to see if my files are the problem. ) ( I tested all kinds of parameters and settings. ) Could it be that the problem has something to to with any language_id or charsets mismatch ? (why did it work with chemos version than?) I need help or advise cause I don´t know what the problem is... I don´t get any php error messages. Anybody? Now suddenly I get an error after trying to switch to english language: Catchable fatal error: Argument 1 passed to aPage_Modules::linkText() must be an array, null given, called in /includes/modules/ultimate_seo_urls5/page_modules/product_info.php on line 170 and defined in /deployment/includes/modules/ultimate_seo_urls5/abstracts/page_modules.php on line 338 mmm Quote Link to comment Share on other sites More sharing options...
DCore Posted January 3, 2012 Share Posted January 3, 2012 the parameters are: Choose the uri format > path_rewrite Then I get this error: Catchable fatal error: Argument 1 passed to aPage_Modules::linkText() must be an array, null given, called in /includes/modules/ultimate_seo_urls5/page_modules/product_info.php on line 170 and defined in /includes/modules/ultimate_seo_urls5/abstracts/page_modules.php on line 338 Any other setting of parameters doesn´t throw an error but stops to build up the pages. strange Quote Link to comment Share on other sites More sharing options...
DCore Posted January 3, 2012 Share Posted January 3, 2012 Here´s my temporary conclusion for what goes wrong when I switch to english: when the parameters are: Choose how your product link text is made up > p (product name) the URI is made but the link to the page / product is broken because it´s missing something e.g. the category... ( when the parameters here are: cp it works -!#* but I never needed this combination of categories and product cause it produces to long urls... ) Why is this problem only there when I switch to english ? Quote Link to comment Share on other sites More sharing options...
shakus Posted January 4, 2012 Share Posted January 4, 2012 (edited) Hello everybody! hmmmm....although I found in this forum several conversations concerning the problem, I didn't find a definitive solution yet. Thats why I want to ask the question one more time: Is there any way to let the both contributions "Ultimate Seo Urls 5" and "Header tags SEO 3.0" work error free together??? The Problem: I have installed Header tags SEO 3.0. And it works very good as long I have disabled USU 5. When I activate USU5 my header tags disappear and only the default tags are viewed. Thanking you in anticipation for your help! Edited January 4, 2012 by shakus Quote Link to comment Share on other sites More sharing options...
Guest Posted January 4, 2012 Share Posted January 4, 2012 Hi Quick one This add on used to work up until this morning when I was adding new products to my website it was adding it ok but when I clicked on the new product on the front page of my website it was just going to the front page again instead of going to the product info page And I had some one look at it and he said it was the seo url 5 that was the problem He said set it to false and he said it will work so i set it to false and the new product i added worked correctly by when clicking on it - it when to the product info page Does that all make sense Can anyone help with it please or is there a fix for it please Kind Regards Ian Quote Link to comment Share on other sites More sharing options...
DCore Posted January 4, 2012 Share Posted January 4, 2012 Hi thanks for a great contrib it does wonders for seo however my popup images does not work in my second language setting.. in default it all works fine.. the link is: mens/mens_pant.jpg in my second language it adds a /cs at the end like: mens/mens_pant.jpg/cs how can I get rid off the /cs in the link name?? it is clearly seo url that causes this thanks for a fast reply... losing a lot of customers here I have a similar problem, when I switch to my second language (english), the page doesn´t get loaded completely. So I was wondering if you solved this problem, or found the reason why it´s dysfunctional ? ( I am thinking about going back and reactivating Chemos Ultimate Seo version and making it work with php 5.3 ) Quote Link to comment Share on other sites More sharing options...
concorde44 Posted January 5, 2012 Share Posted January 5, 2012 Hi everybody, Have you the same thing as me : an unknown product = 404 page ie : my-store/dummy-p-4333333333.html I finally prefer to have "product not found". Do you know how to achieve that ? I have some products that are on the main floor of the catalogue. I mean not in any categories. Those products are now generating a 404 page. Can someone give me a clue to let those products appears normally ? THanks! Seb Quote Osc 2.2 MS2 Link to comment Share on other sites More sharing options...
♥geoffreywalton Posted January 5, 2012 Share Posted January 5, 2012 Move them into a category. HTH G Quote Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile Virus Threat Scanner My Contributions Basic install answers. Click here for Contributions / Add Ons. UK your site. Site Move. Basic design info. For links mentioned in old answers that are no longer here follow this link Useful Threads. If this post was useful, click the Like This button over there ======>>>>>. Link to comment Share on other sites More sharing options...
jjj0923 Posted January 5, 2012 Share Posted January 5, 2012 I wonder if someone might give me some clues as to how to fix a problem. I just moved an OSC site from apache1.3 to apache2.2 with php5.3 (64 bit versions) and discovered that I had to in my virtual host section: <Directory /home/sites/www.mysite.com/web> Options +ExecCGI Indexes FollowSymLinks MultiViews AllowOverride Options AllowOverride all Order allow,deny allow from all </Directory> just for any link to work. However all of the links from my categories all wind up pointing to my home page. I know that my .htaccess file is being read. Here's a copy of my .htaccess file. any ideas on why all links wind up pointing to my home page? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #ultimate seo# $Id: .htaccess 1739 2007-12-20 00:52:16Z hpdl $ # # This is used with Apache WebServers # # For this to work, you must include the parameter 'Options' to # the AllowOverride configuration # # Example: # # <Directory "/usr/local/apache/htdocs"> # AllowOverride Options # </Directory> # # 'All' with also work. (This configuration is in the # apache/conf/httpd.conf file) # The following makes adjustments to the SSL protocol for Internet # Explorer browsers #<IfModule mod_setenvif.c> # <IfDefine SSL> # SetEnvIf User-Agent ".*MSIE.*" \ # nokeepalive ssl-unclean-shutdown \ # downgrade-1.0 force-response-1.0 # </IfDefine> #</IfModule> # If Search Engine Friendly URLs do not work, try enabling the # following Apache configuration parameter # AcceptPathInfo On # Fix certain PHP values # (commented out by default to prevent errors occuring on certain # servers) # php_value session.use_trans_sid 0 # php_value register_globals 1 # Ultimate SEO URLs BEGIN Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} ^options\=(.*)$ RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2%1 RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING} # BOF: "Extra pages-info box w/ admin" support added by faaliyet RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING} # EOF: "Extra pages-info box w/ admin" support added by faaliyet RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING} # Added polls and newsdesk #RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING} RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING} # BOF: Faqdesk support added by faaliyet RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING} # EOF: Faqdesk support added by faaliyet # Ultimate SEO URLs END # Block Bad Bots RewriteCond %{HTTP_USER_AGENT} ^BlackWidow [OR] RewriteCond %{HTTP_USER_AGENT} ^Bot\ mailto:craftbot@yahoo.com [OR] RewriteCond %{HTTP_USER_AGENT} ^ChinaClaw [OR] RewriteCond %{HTTP_USER_AGENT} ^Custo [OR] RewriteCond %{HTTP_USER_AGENT} ^DISCo [OR] RewriteCond %{HTTP_USER_AGENT} ^Download\ Demon [OR] RewriteCond %{HTTP_USER_AGENT} ^eCatch [OR] RewriteCond %{HTTP_USER_AGENT} ^EirGrabber [OR] RewriteCond %{HTTP_USER_AGENT} ^EmailSiphon [OR] RewriteCond %{HTTP_USER_AGENT} ^EmailWolf [OR] RewriteCond %{HTTP_USER_AGENT} ^Express\ WebPictures [OR] RewriteCond %{HTTP_USER_AGENT} ^ExtractorPro [OR] RewriteCond %{HTTP_USER_AGENT} ^EyeNetIE [OR] RewriteCond %{HTTP_USER_AGENT} ^FlashGet [OR] RewriteCond %{HTTP_USER_AGENT} ^GetRight [OR] RewriteCond %{HTTP_USER_AGENT} ^GetWeb! [OR] RewriteCond %{HTTP_USER_AGENT} ^Go!Zilla [OR] RewriteCond %{HTTP_USER_AGENT} ^Go-Ahead-Got-It [OR] RewriteCond %{HTTP_USER_AGENT} ^GrabNet [OR] RewriteCond %{HTTP_USER_AGENT} ^Grafula [OR] RewriteCond %{HTTP_USER_AGENT} ^HMView [OR] RewriteCond %{HTTP_USER_AGENT} HTTrack [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^Image\ Stripper [OR] RewriteCond %{HTTP_USER_AGENT} ^Image\ Sucker [OR] RewriteCond %{HTTP_USER_AGENT} Indy\ Library [NC,OR] RewriteCond %{HTTP_USER_AGENT} ^InterGET [OR] RewriteCond %{HTTP_USER_AGENT} ^Internet\ Ninja [OR] RewriteCond %{HTTP_USER_AGENT} ^JetCar [OR] RewriteCond %{HTTP_USER_AGENT} ^JOC\ Web\ Spider [OR] RewriteCond %{HTTP_USER_AGENT} ^larbin [OR] RewriteCond %{HTTP_USER_AGENT} ^LeechFTP [OR] RewriteCond %{HTTP_USER_AGENT} ^Mass\ Downloader [OR] RewriteCond %{HTTP_USER_AGENT} ^MIDown\ tool [OR] RewriteCond %{HTTP_USER_AGENT} ^Mister\ PiX [OR] RewriteCond %{HTTP_USER_AGENT} ^Navroad [OR] RewriteCond %{HTTP_USER_AGENT} ^NearSite [OR] RewriteCond %{HTTP_USER_AGENT} ^NetAnts [OR] RewriteCond %{HTTP_USER_AGENT} ^NetSpider [OR] RewriteCond %{HTTP_USER_AGENT} ^Net\ Vampire [OR] RewriteCond %{HTTP_USER_AGENT} ^NetZIP [OR] RewriteCond %{HTTP_USER_AGENT} ^Octopus [OR] RewriteCond %{HTTP_USER_AGENT} ^Offline\ Explorer [OR] RewriteCond %{HTTP_USER_AGENT} ^Offline\ Navigator [OR] RewriteCond %{HTTP_USER_AGENT} ^PageGrabber [OR] RewriteCond %{HTTP_USER_AGENT} ^Papa\ Foto [OR] RewriteCond %{HTTP_USER_AGENT} ^pavuk [OR] RewriteCond %{HTTP_USER_AGENT} ^pcBrowser [OR] RewriteCond %{HTTP_USER_AGENT} ^RealDownload [OR] RewriteCond %{HTTP_USER_AGENT} ^ReGet [OR] RewriteCond %{HTTP_USER_AGENT} ^SiteSnagger [OR] RewriteCond %{HTTP_USER_AGENT} ^SmartDownload [OR] RewriteCond %{HTTP_USER_AGENT} ^SuperBot [OR] RewriteCond %{HTTP_USER_AGENT} ^SuperHTTP [OR] RewriteCond %{HTTP_USER_AGENT} ^Surfbot [OR] RewriteCond %{HTTP_USER_AGENT} ^tAkeOut [OR] RewriteCond %{HTTP_USER_AGENT} ^Teleport\ Pro [OR] RewriteCond %{HTTP_USER_AGENT} ^VoidEYE [OR] RewriteCond %{HTTP_USER_AGENT} ^Web\ Image\ Collector [OR] RewriteCond %{HTTP_USER_AGENT} ^Web\ Sucker [OR] RewriteCond %{HTTP_USER_AGENT} ^WebAuto [OR] RewriteCond %{HTTP_USER_AGENT} ^WebCopier [OR] RewriteCond %{HTTP_USER_AGENT} ^WebFetch [OR] RewriteCond %{HTTP_USER_AGENT} ^WebGo\ IS [OR] RewriteCond %{HTTP_USER_AGENT} ^WebLeacher [OR] RewriteCond %{HTTP_USER_AGENT} ^WebReaper [OR] RewriteCond %{HTTP_USER_AGENT} ^WebSauger [OR] RewriteCond %{HTTP_USER_AGENT} ^Website\ eXtractor [OR] RewriteCond %{HTTP_USER_AGENT} ^Website\ Quester [OR] RewriteCond %{HTTP_USER_AGENT} ^WebStripper [OR] RewriteCond %{HTTP_USER_AGENT} ^WebWhacker [OR] RewriteCond %{HTTP_USER_AGENT} ^WebZIP [OR] RewriteCond %{HTTP_USER_AGENT} ^Wget [OR] RewriteCond %{HTTP_USER_AGENT} ^Widow [OR] RewriteCond %{HTTP_USER_AGENT} ^WWWOFFLE [OR] RewriteCond %{HTTP_USER_AGENT} ^Xaldon\ WebSpider [OR] RewriteCond %{HTTP_USER_AGENT} ^Zeus RewriteRule .* - [F] Quote Link to comment Share on other sites More sharing options...
♥geoffreywalton Posted January 5, 2012 Share Posted January 5, 2012 Should it not be RewriteBase /web/ Cheers G Quote Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile Virus Threat Scanner My Contributions Basic install answers. Click here for Contributions / Add Ons. UK your site. Site Move. Basic design info. For links mentioned in old answers that are no longer here follow this link Useful Threads. If this post was useful, click the Like This button over there ======>>>>>. Link to comment Share on other sites More sharing options...
concorde44 Posted January 5, 2012 Share Posted January 5, 2012 Move them into a category. Hi, yes I did it. Thanks. Quote Osc 2.2 MS2 Link to comment Share on other sites More sharing options...
jjj0923 Posted January 5, 2012 Share Posted January 5, 2012 Should it not be RewriteBase /web/ Cheers G thanks for the idea but that did not work and yielded: The requested URL /web/index.php was not found on this server. Apache/2.2.3 (CentOS) Server at www.mysite.com Port 80 Quote Link to comment Share on other sites More sharing options...
DCore Posted January 5, 2012 Share Posted January 5, 2012 (edited) Now suddenly I get an error after trying to switch to english language: Catchable fatal error: Argument 1 passed to aPage_Modules::linkText() must be an array, null given, called in /includes/modules/ultimate_seo_urls5/page_modules/product_info.php on line 170 and defined in /deployment/includes/modules/ultimate_seo_urls5/abstracts/page_modules.php on line 338 mmm #3560, #3561,#3562, #3563, SOLVED: So in my second language there just were no entries (or NULL) in the database table in some fields of: product_description. The reason is, I just didn´t translate all titles from one language into the other etc. . So the php-part didn´t get something to build the URL´s from and immediately stopped to work... A hint to the solution or an explanation can be found here: http://forums.oscomm...ost__p__1553919 Many Thanks. Edited January 5, 2012 by DCore Quote Link to comment Share on other sites More sharing options...
DCore Posted January 5, 2012 Share Posted January 5, 2012 - installed it / upgraded from Chemos variant in Oscommerce 2.2 ms2 on a Linux Server - thought everything was fine - until I clicked on the flag to change to other language ( english ) > then only header parts of the index template get loaded ( the rest is broken = not loaded ) > when I switch back to german works fine again > when I installed dutch as 3rd language I could switch to it without problem ( I did everything as advised in the manuals. Even installed the delivered index.php and language box to see if my files are the problem. ) ( I tested all kinds of parameters and settings. ) Could it be that the problem has something to to with any language_id or charsets mismatch ? (why did it work with chemos version than?) I need help or advise cause I don´t know what the problem is... I don´t get any php error messages. Anybody? http://www.oscommerce.com/forums/topic/336702-ultimate-seo-urls-5-by-fwr-media/page__view__findpost__p__1553919 Quote Link to comment Share on other sites More sharing options...
MrE03 Posted January 9, 2012 Share Posted January 9, 2012 I've installed this and works great, however my store has 50k+ items and I've finally narrowed down to something with the seo urls being enabled causing the site to time out and overload the server. The cache is on filesystem, tried database....still same result. Anyone have same issues or have ANY idea on how I can solve this? Quote Link to comment Share on other sites More sharing options...
edmottap Posted January 17, 2012 Share Posted January 17, 2012 Hi... i have a problem. When I create a page or category with spanish special characters the Ultimate SEO doesn't work. Ex. I created a product named "María la del Barrio" (with 'í') and when I saw the product listing the link was correct: https://dev.fph20.com/maria-barrio-p-29.html but if I click in the link I have a Apache error 403 and the address bar show me: "https://dev.fph20.com/mar%EDa-barrio-p-29.html". When "Output W3C valid URLs?" is true. I have 404 and 403 Errors Like this: Not Found The requested URL /marÃa-barrio-p-29.html was not found on this server. Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. and the address bar display: https://dev.fph20.com/mar%C3%ADa-barrio-p-29.html (https://dev.fph20.com/maría-barrio-p-29.html) What's happening? Do u need more information? Please help me! Additional information - I created the character conversion file and its name is espanol.php - I'm using UTF-8 in Oscommerce and database. (the character conversion file is in UTF-8 too) - I deactivated the cache and the problem still continue. - I'm working with SSL. Quote Link to comment Share on other sites More sharing options...
Guest Posted January 18, 2012 Share Posted January 18, 2012 After updating Jack MC's database optimizer I'm now getting this cronjob error, Fatal error: Class 'aUri_Modules' not found in /home/wihirt/public_html/catalog/includes/modules/ultimate_seo_urls5/uri_modules/path_standard.php on line 25 Don't they play well together? Cheers Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.