Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jeffy777

Archived
  • Posts

    120
  • Joined

  • Last visited

Profile Information

jeffy777's Achievements

  1. Is it possible to have it auto-escape apostraphes?
  2. found it thanks! http://www.oscommerce.com/forums/index.php?act...ndpost&p=684128
  3. yes, it is running php5, and I just tried it on a server running php4 and it worked great. Now I'll see if I can find that fix, thanks :) If you happen to know a link to the post with the fix that would be great
  4. Hi, I can only get it to update one product (the first row), it doesn't want to change any of the others. It exports the file fine and everything. I made sure there weren't any wierd characters in the descriptions. Any ideas?
  5. I had this contrib running great on one server, then I moved the store to a different server and I got erros when trying to add an additional image. I fixed the problem by commenting out this line in admin/categories.php $sql_data_array = array_merge($sql_data_array, $add_data_array); Now all seems to be well :) Thought this might be helpful to someone.
  6. Your answer is here: http://www.oscommerce.com/forums/index.php?s=&...ndpost&p=729849
  7. Can anyone help me with this? I basically would like for it to export everything except the attribute stuff. Can it be done?
  8. Is there a way to have it export a complete txt file except without the attribute info?
  9. Well, it wouldn't be hard to make a custom script that just pulls all your products from the database and displays them like that,
  10. Actually, there is a similiar contrib that works for your stor index: http://www.oscommerce.com/community/contributions,2125
  11. Find ($column >= 3) and change it to ($column >= 2)
  12. You just need to click "SQL" after selecting your OScommerce database, then copy and paste the query in and hit GO.
  13. You need to run that query on your database. Hopefully your web host has provided you access to phpmyadmin? PS - I'm not the author btw :)
  14. Ok, I've noticed that if you go to the Text Control page and then to the index.php section, if you specify a default Title and Description for index.php it is overridden if you put a Title and description for the Categories (when you edit the category tags individually). I like this. But I've also noticed that if you put keywords for index.php and for the categories then it will connect all the keywords together. Is there anyway to have it only use the index.php for the main catalog index, then only use the category keywords for the catgories? I hope that isn't too confusing :) Nevermind, I figured it out: I changed this: if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['keywords']= $the_category['categories_htc_keywords_tag'] . ' ' . HEAD_KEY_TAG_ALL . ' ' . HEAD_KEY_TAG_DEFAULT; } else { $tags_array['keywords']= $the_category['categories_htc_keywords_tag'] . ' ' . HEAD_KEY_TAG_DEFAULT; } To this: if (HTTA_CAT_DEFAULT_ON=='1') { $tags_array['keywords']= $the_category['categories_htc_keywords_tag'] . ' ' . HEAD_KEY_TAG_ALL . ' ' . HEAD_KEY_TAG_DEFAULT; } else { $tags_array['keywords']= $the_category['categories_htc_keywords_tag']; }
×
×
  • Create New...