Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

OSC_FREAK

Pioneers
  • Posts

    30
  • Joined

  • Last visited

Profile Information

  • Real Name
    osc_freak
  • Gender
    Male
  • Location
    Netherlands

OSC_FREAK's Achievements

  1. Is it possible to exclude products_id's in products url's? If yes, what do I have to change in the .htaccess file?
  2. what a simple dot(see red dot after 'get') can do, index.php file: echo ' <td align="center" class="main">' . tep_draw_form('filter', tep_href_link( FILENAME_DEFAULT ), 'get') . TEXT_SHOW . ' '; FIXED! :D
  3. My .htaccess file looks like this: # If you are getting errors you may need to comment this out like .. # Options +FollowSymLinks Options +SymLinksIfOwnerMatch <IfModule mod_rewrite.c> RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ # Change RewriteBase using the instructions above RewriteBase / 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] # Articles contribution 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] # Information pages RewriteRule ^([a-z0-9/-]+)-i-([0-9]+).html$ information.php [NC,L,QSA] # Links contribution RewriteRule ^([a-z0-9/-]+)-links-([0-9_]+).html$ links.php [NC,L,QSA] # Newsdesk contribution 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] </IfModule> My configure.php file looks like this: <?php define('HTTP_SERVER', 'http://www.mysite.com'); define('HTTPS_SERVER', 'https://www.mysite.com'); define('ENABLE_SSL', true); define('HTTP_COOKIE_DOMAIN', '.mysite.com'); define('HTTPS_COOKIE_DOMAIN', '.mysite.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/var/www/vhosts/mysite.com/httpdocs/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'MyUserName'); define('DB_SERVER_PASSWORD', 'MyPassWord'); define('DB_DATABASE', 'MyDataBase'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); ?> Any suggestion?
  4. I've upgraded ULTIMATE_Seo_Urls_5_r141_stable to Ultimate Seo Urls 5 PRO r205 now my website/front page went blank: http-error 500 Internal server error. Admin works fine now what to do?
  5. I've upgraded ULTIMATE Seo Urls 5 to Ultimate Seo Urls 5 PRO r205 now my website went blank. I've changed all coding back to ULTIMATE Seo Urls 5 and reuploaded the ultimate_seo_urls5 file: still blank: now what to do?
  6. I use ULTIMATE Seo Urls 5 several years now and i want to know if it's somehow possible to exclude/hide the products_id number in the URL? I've noticed that alot of urls found on google are linked to other product pages after updating/uploading products.
  7. does this addon also adds more fields to the field products_name?
  8. single page checkout works great, but does anyone have a solution for the margintop problem in checkout.php?
  9. Ah! I must have overlooked the canonical part in both contributions. Both work differently! I'm using Google XML Sitemap version 1.3 by chemo in combination with USU 5 including overwriting the two files you have modified: index.php and sitemap.class.php. I'm getting a gss.xsl error, any idea why?
  10. I forgot to mention that I'm also combining USU 5 wit Sitemap SEO version 1.4 or should i use another one?
  11. I've installed Ultimate Seo Urls 5 and KissMT. I assume I have to remove all KissMT entries now, right?
  12. First of all: great contribution, works great for me! Q: Is it also necessary to upload a xml file according to google guidelines for making a google sitemap? I mean, doesn't this contribution do it all in order to let google index your URL's from the sitemap? Another Q: is it necesarry to display products in categories in your sitemap in order to find product URL's in your sitemap?
  13. Everything works great except that the store name isn't showing before product titles in search results; Is it because of this?: 2. In index.php, product_info.php and product_reviews_info.php replace this code: <title><?php echo TITLE; ?></title> with <?php include(DIR_WS_INCLUDES . 'easy_meta_tags.php'); ?> source: readme_install-1-5.txt
  14. Everything works great except that the store name isn't showing before product titles in search results; Is it because of this?: 2. In index.php, product_info.php and product_reviews_info.php replace this code: <title><?php echo TITLE; ?></title> with <?php include(DIR_WS_INCLUDES . 'easy_meta_tags.php'); ?> source: readme_install-1-5.txt
  15. Your suggestion is to get rid of the Ultimate Seo Urls v2.5 FullPackage and install 2.1d updated, correct?
×
×
  • Create New...