Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mujina

Pioneers
  • Posts

    172
  • Joined

  • Last visited

Everything posted by mujina

  1. :( No one who succeeded in installing this contribution without preventing gift vouchers or other virtual products orders? Thanks a lot. mujina
  2. How can we have this contribution work for downlable products. For every downlable products there is no shipping fee and thus the order processing starts with checkout_payment.php page and not with checkout_shipping. As a consequence customers can't achieve the order processing when there are only virtual products in the shopping cart. How can we modify the contributions to use it only if products_weight > 0? Thanks for your help.
  3. What a pity! Thanks a lot for your reply Jan!!
  4. Hi Marvin, Hi Jan! I have been searching for weeks for a contribution that helps put specials by categories and hopefully an update (today) has let me discover it : SaleMaker - All products marked down Would you mind to have a look at it and tell us if it could be compatible with the new version of SPPC??? Thanks in advance. Best regards! :thumbsup:
  5. Thanks to Kai the author of buy_two_module I am now able to use the two contributions together. One have to desactivate the name matching feature from the admin panel.
  6. Thanks for your reply Chemo! I'm gonna work on it and post the fix if I find it!!! Thanks so much for your contribution and you availability. :thumbsup: Best regards.
  7. Hi Chris, Hi Chemo, I found where was laying my problem. When I turn off the "buy two" module, ultimate seo url's works fine for all the products even if the product's title starts like that (l'). I guess Buy_Two_Module has some bugs with Chemo's contribution. Sorry Chemo, your contribution was working :blush: . Actually this is Buy_Two_Module that is not totally compatible. Do you have any idea on how to have them work together? Thanks again and my apologize for having been misleading in my postes.
  8. Would you mind if I send it to you by MP. Thanks Chris!
  9. Thanks for your reply Chris! Unfortunately my site is still offline. How can I give further information?
  10. That is no error - that is all commented - maybe it should read ##################################################################### # DO NOT EDIT ABOVE OR BELOW THIS POINT UNLESS YOU KNOW WHAT YOU'RE DOING # ##################################################################### <{POST_SNAPBACK}> I am just picking.... - it should not matter as it is all commented out. <{POST_SNAPBACK}> Thanks for your reply Chris. Do you have any idea on how to solve my problem with the (') in the title. All the fixes proposed didn't solve it. Thanks again!
  11. Chemo, just a mere explanation : I realized that when the title reads : L'?conomie de march? on the product_info.php page the title is displayed but the description isn't displayed and I receive an error message : 1064 - Erreur de syntaxe pr?s de '1'' ? la ligne 1 select p.products_id from products p left join products_description pd on p.products_id=pd.products_id, products_attributes pa where p.products_id != pa.products_id and p.manufacturers_id='107' and p.products_id!='107' and p.products_tax_class_id='2' and pd.products_name LIKE '%L%'%?%c%' and p.products_status='1' But if the (') is not placed at the beginning of the title, the product_info.php page has no bug. For instance a title like : R?trospective : l'?conomie de march? brings no problem. I've installed the new version of the seo_cache as it seems there was an error. I'm not sure if it caused troubles. I replaced : ##################################################################### # DO NOT EDIT BELOW THIS POINT UNLESS YOU KNOW WHAT YOU'RE DOING # ##################################################################### by ##################################################################### # DO NOT EDIT BELOW THIS POINT UNLESS YOU KNOW WHAT YOU\'RE DOING # #####################################################################
  12. Hello! I would like to know if people who installed the events calendar contribution meet the same problem as me. When I enter a new event with a start date and an end date, the event is only displayed for the start date. As a consequence if the events starts on february, 2nd and ends on march,1st the customer can only view this event for february, 2nd . Do you have the event displayed for the period between the start date & the end date? Thanks in advance!
  13. :( It doesn't work. I've also tried this : function strip($convert_me) { $strip_array = array("'","'",chr(33),chr(34),chr(35),chr(36),chr(37),chr(38),chr(39),chr(40),chr(41),chr(42),chr(43),chr(44),chr(45),chr(46),chr(47),chr(58),chr(59),chr(60),chr(61),chr(62),chr(63),chr(91),chr(92),chr(93),chr(94),chr(95),chr(96),chr(123),chr(124),chr(125),chr(126) ); $convert_me = str_replace($strip_array, '', $convert_me); $convert_me = str_replace(array(' ', ' ', '__', '--'), '-', $convert_me); $convert_me = strtolower($convert_me); return $convert_me; } and this function strip($convert_me) { $strip_array = array("'",chr(33),chr(34),chr(35),chr(36),chr(37),chr(38),chr(39),chr(40),chr(41),chr(42),chr(43),chr(44),chr(45),chr(46),chr(47),chr(58),chr(59),chr(60),chr(61),chr(62),chr(63),chr(91),chr(92),chr(93),chr(94),chr(95),chr(96),chr(123),chr(124),chr(125),chr(126) ); $convert_me = str_replace($strip_array, '', $convert_me); $convert_me = str_replace(array(' ', ' ', '__', '--', '/''), '-', $convert_me); $convert_me = strtolower($convert_me); return $convert_me; } But nothing works...
  14. Sorry Chemo I'm a bit lost... my english is not fluent. Do I have to do this? : -> goto catalog/includes/seo_cache.php -> replace function strip($convert_me) { $strip_array = array("'",chr(33),chr(34),chr(35),chr(36),chr(37),chr(38),chr(39),chr(40),chr(41),chr(42),chr(43),chr(44),chr(45),chr(46),chr(47),chr(58),chr(59),chr(60),chr(61),chr(62),chr(63),chr(91),chr(92),chr(93),chr(94),chr(95),chr(96),chr(123),chr(124),chr(125),chr(126) ); $convert_me = str_replace($strip_array, '', $convert_me); $convert_me = str_replace(array(' ', ' ', '__', '--'), '-', $convert_me); $convert_me = strtolower($convert_me); return $convert_me; } by function strip($convert_me) { $strip_array = array("'",chr(33),chr(34),chr(35),chr(36),chr(37),chr(38),chr(39),chr(40),chr(41),chr(42),chr(43),chr(44),chr(45),chr(46),chr(47),chr(58),chr(59),chr(60),chr(61),chr(62),chr(63),chr(91),chr(92),chr(93),chr(94),chr(95),chr(96),chr(123),chr(124),chr(125),chr(126) ); $convert_me = str_replace($strip_array, '', $convert_me); $convert_me = str_replace(array(' ', ' ', '__', '--'[COLOR=red][B], '[/B][/COLOR]), '-', $convert_me); $convert_me = strtolower($convert_me); return $convert_me; } Thanks for you help!
  15. Sorry Chemo to disturb you another time but I meet a new problem. I have some articles that start like this : L'?conomie And with your contribution installed, I have an error on the product_info page. That's the ' that brings me such error. What can I do ? First I've tried to enter the products like this : L`?conomie But when a customer search for the original title he is unable to find the appropriate product. Could you bring me some help on this? Regards!
  16. I'm french so you meant "vous" thus both :D :D :D sorry for my bad english. :blush:
  17. Hi Chemo!!! I intend to use easypopulate as I have too much products to enter. Do you think it works with the 2.0 version? Thanks in advance!
  18. Hi Maxim! Is it possible to send an email to a DEFINED CONTACT each time a new product is entered ?
  19. Hi Jan, I've wanted to remove the SPPC code and not the entries in the DB. Actually, the prices & specials displayed are false when a customer is logged in. Thus I can't launch the store in these conditions. Moreover when I remove the code I also have bugs... too many contributions installed!! :-" Hum... your SPPC version is damned too perfect , I guess I'd better be wise and wait !!!! Thanks to have posted and alerted me!!!!
  20. HI Marvin!!!! Thanks for your reply. It's a great and amazing job you made!! Thanks so much for people who are using SPPC. I'm gonna follow your advise and remove the old version. Your work seems to be perfect and thus I send you my congratulations as so many people out there have tried to have this contribution work and failed. Don't rush!!!!! Take your time and don't work too much even if we are longing for the new version. :D It's a gift for oscommerce community!!!! All the best for you & Jan. Thanks for your commitment! :thumbsup:
  21. Hello!! Did anyone succeed in having these two contributions work together. I've read so many threads and I've been unable to find any solution. I run my first shop and I've got to enter the whole catalog, products one by one... it drives me nuts :blush: . The main information lead in my PEF fields... :'( Could people who meet the same problem post here the clues. Maybe we'll succeed to have it work by sharing our points of vue. Thanks in advance! :thumbsup:
  22. // Ultimate SEO URLs - by Chemo // If the action will affect the cache entries if ( eregi("(insert|update|setflag)", $action) ) include_once('includes/reset_seo_cache.php'); Allright Bobby!!! It solved my problem! Thanks a lot!!!! :D
  23. HI chemo!! just to let you know that I meet the same problem with "ultimate seo urls" (Vs Cname Pname) when adding new products. I don't use easypopulate, I enter them one by one from the admin panel. Thus, when I add a new product, the address is linked to the products id and not to cname pname. To prevent this, now I use a product in the catalog that I duplicate and it works!! Thanks for this great contribution!!
×
×
  • Create New...