Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

FWR Media

♥Ambassador
  • Posts

    6,718
  • Joined

  • Last visited

  • Days Won

    46

Everything posted by FWR Media

  1. Yes there really should be a way to clear the thumbs via admin.
  2. 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.
  3. 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'
  4. 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()
  5. Looks like the tep_href_link) wrapper is being used in the code to produce an image URL which won't work.
  6. 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.
  7. Yes it is correct behaviour .. product names should not have html elements/tags and if they do they should be protected with htmlspecialchars() which removes the html meaning of the characters.
  8. If your host has disallowed rewrite rules then the rewrite method of USU5 cannot work.
  9. This seems to be a misunderstanding of the way sessions work. You should be forcing cookie usage and not relying on insecure querystring based session ids. Forced cookie usage requires correctly set SSL certificates and config settings.
  10. documentation\install_files\install_complete.htm
  11. There is support for newsdesk but not faqdesk .. it's easy to create though there is a devs template in the download.
  12. You need to create a character conversion set. See the files in extras/character_conversion_pack/
  13. @@ksotiris Thanks for the kind comments but I don't understand the point of what you have done tbh.
  14. The script does not limit the URI text to 64 characters.
  15. Yes it should state that the file is a replacement.
  16. @@steve-doherty LOL no! you are using a PHP version where support for it was discontinued 5 years ago! ( 31-12-2007 )
  17. @@steve-doherty Sounds like your server is running an ancient version of PHP.
  18. @@fiddletime Yes USU5 PRO is compatible with osC 2.3.3 and with PHP to current versions ( 5.4.6 atm ) Some of the install instructions for minor file changes may be hard to find but they are not strictly necessary, all you need to do is: - Upload the new files. Then apply the following stages of the install.. 4) catalog/includes/functions/html_output.php 5) catalog/includes/application_top.php 7) catalog/ADMIN/categories.php 8) catalog/ADMIN/includes/functions/general.php Then read documentation/install_files/install_complete.htm and add the relevant changes to .htaccess if you intend to use the rewrite method.
  19. @@Irin Sounds like you have installed incorrectly .. this is generating errors and gzip compression is set to on in admin therefore you are getting compression errors. Check you have a decent version of PHP too ( 5.2+ )
  20. @@fgwapo USU5 supports the RFC recomendation: - ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-._~:/?#[]@!$&'()*+,;= It does not support % encoded hexadecimals.
  21. The constants are in the USU5 files initially but they are entered into the database configuration table on install.
  22. @@fgwapo The URL standards only allow ASCII characters therefore USU5 only supports ASCII characters in the URI
  23. @@fgwapo The only time this could happen is incorrect installation or manual DB manipulation. When USU5 installs it sets the following constants in the admin configuration: - $constants = array( 'USU5_RESET_CACHE', 'USU5_ENABLED', 'USU5_CACHE_ON', 'USU5_URLS_TYPE', 'USU5_CHAR_CONVERT_SET', 'USU5_FILTER_SHORT_WORDS', 'USU5_REMOVE_ALL_SPEC_CHARS', 'USU5_CACHE_DAYS', 'USU5_USE_W3C_VALID', 'USU5_ADD_CPATH_TO_PRODUCT_URLS', 'USU5_OUPUT_PERFORMANCE', 'USU5_ADD_CAT_PARENT', 'USU5_DEBUG_OUPUT_VARS', 'USU5_CACHE_SYSTEM', 'USU5_PRODUCTS_LINK_TEXT_ORDER', 'USU5_MULTI_LANGUAGE_SEO_SUPPORT' ); If any of those are not defined the script will reinstall. Equally in includes/application_top.php if the standard osCommerce code defining the configuration constants is not before the USU5 code then the required constants would not be present forcing a reinstall.
×
×
  • Create New...