Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Debs

Pioneers
  • Posts

    133
  • Joined

  • Last visited

About Debs

  • Birthday 08/08/1967

Profile Information

  • Real Name
    Debs
  • Gender
    Female
  • Location
    Fargo, ND UNITED STATES
  • Website

Recent Profile Visitors

13,453 profile views

Debs's Achievements

  1. I had the same issue with manufacturers_id appended to the rewritten URL... not often, but some were showing up. Perhaps my way is not the most elegant way either, but it will quickly remove them from being indexed and send the proper header to avoid duplicate content issues. This was my fix to catch them; you can tweak my rewrite to fix your categories issue too. RewriteCond %{THE_REQUEST} ^GET\ /.*\.html\?manufacturers_id=.*\ HTTP/ RewriteCond %{QUERY_STRING} !^$ RewriteRule .* http://yoursite.com%{REQUEST_URI}? [R=301,L] Notice how it only addresses the rewritten (html) pages. ...index.php?manufacturers_id= is required when viewing page 2, 3, 4 etc. Perhaps this has already been addressed, but why doesn't this (Seo Urls 5) rewrite manufacturers pages on split page results? Debs
  2. Hey Steve, Did you get this fixed? I came across a solution that worked for me and it had nothing to do with updating the jquery core file or jQuery.ui.js... For me The issue was in /includes/checkout/checkout.js View this site: http://www.oscommercesupport.net/labs/ezosc_stores/v3.4/ezosc-professional/ecommerce-solutions-c-26.html add item to your cart and go to the checkout page. Save this file: http://www.oscommercesupport.net/labs/ezosc_stores/v3.4/ezosc-professional/includes/checkout/checkout.js Try replacing your /includes/checkout/checkout.js with this modified one. I'm not certain why it corrected the error but it appears the updated /includes/checkout/checkout.js fixes some issues. Well it fixed the issue for me. Let me know if it worked for you too. Should I have posted this "file/ fix"? Well they are using the core open source checkout here that included hundreds of hours of open source coding... plus the source code was not scrambled/ obfuscated. Anyways, see if it works for you too. checkout.zip
  3. Hi Steve, I took a quick look into it and wonder if it could be this issue: jQuery UI does not work on IE9... This page URL covers it a bit, and a possible solution: http://forum.jquery.com/topic/jquery-ui-does-not-work-on-ie9 I do not have IE9 to test... perhaps you could try and post your results. Our jQuery UI is combined with a few things... and they all may need to be updated. Debs
  4. The issue is with IE9, when someone enters an e-mail address IE9 freezes and will not proceed. It comes up, after a while, with "(website) is not responding due to a long-running script". I have placed <meta http-equiv="X-UA-Compatible" content="IE=8"/> into my checkout.php to force it to run as IE8, but still same problem. I just saw this issue and was hoping you guys got it figured out. <meta http-equiv="X-UA-Compatible" content="IE=7"/> Have you tried forcing Compatible mode IE=7 rather then 8..? Probably a long shot, but worth a try. I have had a few complaints on this too. I do not have ie9 to test against.
  5. It works well on every page on my sites. I use it extensively to check and clean out any errors on every page (including sub categories). I am also using Roberts earlier seo/url contribution. I do not have his latest pro url installed, so I can not answer as to how well they play together. Although I would guess that works together too. I would check your install instructions again.
  6. Thank you for the reply Jack. I was hoping someone had already figured it out ;) I took a look at the googlefeeder.php code and was at first unable to accomplish it directly through the array. Here is what I did just in case there are others in need of the change. Look for this partial block of code: if(SEO_ENABLED=='true'){ $output .= tep_href_link($productURL,$productParam . $row['id'], 'NONSSL', false) . "\t" . preg_replace($_strip_search, $_strip_replace, strip_tags( strtr($row['name'], $_cleaner_array) ) ) . "\t" . Just above that add this: $row[description] = substr($row[description], 0, 2000); it will then look like this: $row[description] = substr($row[description], 0, 2000); if(SEO_ENABLED=='true'){ $output .= tep_href_link($productURL,$productParam . $row['id'], 'NONSSL', false) . "\t" . preg_replace($_strip_search, $_strip_replace, strip_tags( strtr($row['name'], $_cleaner_array) ) ) . "\t" . You would of course change the 2000 to whatever you want as your new product description limit. Anything under 10,000 should be safe. Kind regards, Debs
  7. I looked through the forum here and was hoping someone would help me limit maximum description (per product) feed length. It seems Google now has a 10,000 character limit for the size (length) of a per product description. I have a warning that 9 items will be removed if I do not truncate the long file (product/s) description. Any ideas? Thanks!
  8. I don't mean to hijack your support forum... I just wanted to take a moment and say; Thank you Robert for all the diligent work you have done on this (and your other) great contribution/s. I really like your newer release of Security Pro (2.0 ( r7 ) I was unable to use your older release of security pro... as it conflicted with some of my custom code I use. It is nice to see the simplicity of your updated contribution. This new one works fine and the extra "peace of mind" added security provides is priceless. Thank you! Kind regards, Debs
  9. Why cry and whine and piss and moan about everything... ask more from yourself. What type of person can receive free goods and then complain? geeeeez
  10. Would it work to change this around in application_top? //add category name to page title if (strlen($categories['categories_name'])>1) $header_tags[title_tag] = $categories['categories_name'] . $header_tags[title_tag]; to this //add category name to page title if (strlen($categories['categories_name'])>1) $header_tags[title_tag] = $header_tags[title_tag] . $categories['categories_name']; This changes product first and then category I am not certain if this would be the only change necessary, or if other things also needs changing... it appears to work in that it puts product first and category second. SEO experts say to place the most relevant keywords at the front. My most relevant keywords are the product and then the category.
  11. With that many articles, you need to optimize your database or it will take forever to load. Run this in your sql. ALTER TABLE `articles_to_topics` DROP PRIMARY KEY; ALTER TABLE `articles_to_topics` ADD INDEX `idx_a2t_topics_id` ( `topics_id` ); ALTER TABLE `articles_to_topics` ADD INDEX `idx_a2t_articles_id` ( `articles_id` );
  12. I just wanted to say thank you Robert for taking the time to redo the google feed module. It works great with USU5 now. Regards, Rick
  13. I may have found a solution to this. My intent is not to add clutter to Roberts support form, but rather I thought this may prove useful, as we are all updating to this improved Ultimate Seo-5 solution. I placed this at the end of my the htaccess... after the other rewrites: RewriteCond %{THE_REQUEST} ^GET\ /.*\?products_id=.*\ HTTP/ RewriteCond %{QUERY_STRING} !^$ RewriteRule .* http://mywebsite.com%{REQUEST_URI}? [R=301,L] This seems to remove the appended ?products_id= etc etc... on the old url redirects. I ran a few tests... new accounts, orders etc. All seemed to work and it of course removed the query from the redirect. Perhaps someone with more insight into htaccess rules can look it over to be certain it will not cause any other issues.
  14. I should add that I had Chemos' version for the old urls. I am now using this version and need to forward the old urls
  15. After updating to this, is it possible to redirect permanent the old url's? (same domain) My old site was in catalog folder and the new site is in the root. All products were removed and then reinstalled as a fresh store. When I try a redirect via the htaccess as shown below: Redirect permanent /catalog/old-item-p-46.html http://website.com/new-item-p-217.html It brings me to the correct item so I lose no incoming links... but below is the output url http://website.com/new-item-p-217.html?products_id=46 Any thoughts on how to correct this? The new url is appended as shown above. It works, but appended. Thank you for your help. Regards, Rick
×
×
  • Create New...