Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

lazylex

Archived
  • Posts

    23
  • Joined

  • Last visited

Everything posted by lazylex

  1. Does anyone has this problem: Prices are visable include TAX. Customer logs in: Prices are still visable include TAX Customer changes address in address book: prices are visable EX TAX. Even when original address is not changed and only saved: prices are visable without tax. Curious if anyone has this problem and off course if anyone has the solution... Regards, Alex
  2. Change in product_info.php This: to this Regards, Alex
  3. Latest extra function in general.php does not work for me. I changed to: Now it works for me... Regards, Alex
  4. Thanks Greg, I know a little SQL scripting but this is to difficult for me. Does anyone allready made a script for this and is willing to share it? Regards, Alex
  5. Hello, Is there a way to enable all products for a store when adding a new store? Now when adding a new store all products are disabled. I have 2000 products and many categories. Is it possible to enable all products to a store at once? Regards, Alex
  6. Same question here... Did someone solve this problem?
  7. Thanks It works fine now.... Alex
  8. Both queries give the same error. I did some testing and when i use the first query I can see that the value of sizeof($colFits) = 1 and $this->numFields = 1 1 - 1 = 0 so we get the Devision by zero error.
  9. I still get the same error I see now that for some queries it works This one works select * from products p left join products_description pd on p.products_id=pd.products_id where pd.language_id = 5 This one not select p.products_image, pd.products_name from products p left join products_description pd on p.products_id=pd.products_id where pd.language_id = 5 Regards, Alex
  10. It happens with every query also the ones from the readme file. When I create a PDF from the tables .... it works fine. Tried it... same error... I can give you access to the admin section if necessary... Alex
  11. Hi, Great contribution. Only one thing is not working for me: When i select a query and the option SQL it works fine When i select PDF i get this error: Warning: Division by zero in /var/www/vhosts/emerchandise.nl/httpdocs/demo/shopadmin/includes/classes/pdf_mysql_report.php on line 418 Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/emerchandise.nl/httpdocs/demo/shopadmin/includes/classes/pdf_mysql_report.php:418) in /var/www/vhosts/emerchandise.nl/httpdocs/demo/shopadmin/pdf/fpdf/fpdf.php on line 1071 FPDF error: Some data has already been output to browser, can't send PDF file Regards, Alex
  12. Any one? P.S. what happend to: http://www.caneblu.com I can't open the site for months...
  13. Same problem in B2BSuite 0.97.. any suggestions?
  14. I have the same problem as johnadurcan Posted on: Jul 21 2004, 11:43 PM in this thread. I can't find an answer to this problem. Checked and double checked the query in index.htm... But no result... Can anyone give me some help? Regards, Alex
  15. This nice contribution seems not to work if you have 2 different kinds of VAT (tax) in your order. Has anyone solved this problem yet? Regards, Alex
  16. I really need the stock level for more than one attribute per product. Is anyone still working on this contribution? I am not a PHP programmer but if I can I help anyone let me know. Regards, Alex
  17. Straider, This helped a lot. I made a change in "htmlarea.js" and now....it works. Find in "htmlarea/htmlarea.js" if (textarea.form) { // we have a form, on submit get the HTMLArea content and // update original textarea. textarea.form.onsubmit = function() { editor._textArea.value = editor.getHTML(); }; } Replace with if (textarea.form) { // we have a form, on submit get the HTMLArea content and // update original textarea. var fn=textarea.form.onsubmit; textarea.form.onsubmit = function() { editor._textArea.value = editor.getHTML(); if(fn) { fn(); } }; } This did it for me.... Also don't forget to change in htmlarea.js on line 49 to point at the right dir. But that was dicussed before... Thanks again Straider. Alex
  18. Thanks for your post Straider. But I' am not sure what to use for the ID in HTMLArea.replace("id"). Could you give me any suggestions? Thanks, Alex
  19. I finally got it working. Thanks for the part about "htmlarea.js"!!!. But...(yes there is always a but) it only works for my default language in categories.php. I work with 3 languages. I can see and use the editor in all languages. But when I save the product... only my default language is updated... Does anyone have a clue? Am I missing something? Does it only work for the default language? Thanks, Alex
×
×
  • Create New...