Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

domaky

Archived
  • Posts

    35
  • Joined

  • Last visited

Everything posted by domaky

  1. Thank you dreamscape :-) I was blind with open eyes. I started suspecting though that IE would go in exploder mode since the page work just fine in Opera and Netscape. Thanks a bunch for pointing me into the right direction :-) :: doris
  2. Hello, I'm sorry, I've posted my message in the wrong place, and when I realized my mistake I could not delete it. Moectoe is a really great contribution that allows to edit orders (add discount, change item quantity, whatever). Here is the correct contribution support thread: http://www.oscommerce.com/forums/index.php?showtopic=81271&st=0 Best, :: doris
  3. Hello dreamscape and all, moectoe works on my mac like a charm (or better). I've made several tests before going to my client up in Mendocino to show them how to use the interface. Well, it did not work on their pc (windoz 2000) and IE - editing numbers was not possible. It was really odd. Back home we tried on my buddy's pc. Same result: the order could not be updated with additional numbers like discount, handling etc. Has anybody had similar problems? Thanks a bunch :-) :: doris ps. I've posted this message first in the wrong forum... maybe I need some rest.... :o
  4. Hello dreamscape and all, moectoe works on my mac like a charm (or better). I've made several tests before going to my client up in Mendocino to show them how to use the interface. Well, it did not work on their pc (windoz 2000) and IE - editing numbers was not possible. It was really odd. Back home we tried on my buddy's pc. Same result: the order could not be updated with additional numbers like discount, handling etc. Has anybody had similar problems? Thanks a bunch :-) :: doris
  5. Hello dreamscape, I've sent you a pm with the full file. Have a good start into a fine week :-) :: doris
  6. I found the problem with the sql error message: There was a space missing between from and products_description in This is set in admin/includes/funtions/general.php around line 516. Greetings, :: doris
  7. Glad I'm not the only one ;) Started doubting my copy-and-paste abilities :P Looking forward to fix this soon... Aaahhh, all those problems.... Greetings, :: doris B)
  8. One more problem... When I try to edit the products the upper part of the page shows ok down to "Products Price (Gross):", but where the description used to be I get an error message What did I do wrong and how can I fix this? Thanks a huge bunch for all help :-) ::Dd
  9. Hello :-) First of all: Thank you Emilio for the tremendous work on this contribution, thank you who have posted before, it was a great help in fixing things. There are still a few things remaining to be fixed, and I cannot find the places where I got stuck. The first page shows totally empty where the items should be displayed. http://www.topelwines.com/order/ When I look at the source code I see <tr> <td></td> </tr> where in fact the featured items should be called by <tr> <td><?php include(DIR_WS_MODULES . FILENAME_FEATURED); ?></td> </tr> in the index.php file I tried to find out what should be happening with FILENAME_FEATURED, but must admit defeat :-( I would greatly appreciate any help with this. Greetings, :: doris
  10. Hi dreamscape, Here we go: Please let me know if there is anything else I can do to help find the "dead dog" :) Greetings, :: doris
  11. Hello dreamscape, Thank you so much for posting the fix in this thread too. It must be difficult to keep up with all the postings. I'm running into really odd parse error message, this time line 18 (which in this case is: ??if (tep_not_null($action)) {) Without the changes for moectoe the configuration.php works just like a charm. When I insert the changes I'm with the parse error again. I've posted the code on experts-exchange (to give you a little break :) ), but nobody could see anything wrong with the code. So I'm posting the top part with the changes in configuration.php in the hope that you or somebody else who has the eye for dots and quotation marks can see anything that might cause the error. Here it is: <?php /* $Id: configuration.php,v 1.43 2003/06/29 22:50:51 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); require(DIR_WS_FUNCTIONS . 'moectoe.php'); $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); ??if (tep_not_null($action)) { ????switch ($action) { ??????case 'save': ? ? ? ?$configuration_value = tep_db_prepare_input($HTTP_POST_VARS['configuration_value']); ? ? ? ?$cID = tep_db_prepare_input($HTTP_GET_VARS['cID']); ? ? ? ?if ((isset($_POST['configuration'])) && ($_POST['configuration'] != '')) { ? ? ? ? ?while (list($key, $value) = each($_POST['configuration'])) { ? ? ? ? ? ?if (is_array($_POST['configuration'][$key])) $configuration_value = implode(", ", $_POST['configuration'][$key]); ? ? ? ? ?} ? ? ? ?} Many and more thanks for all and any help with this :-) :: doris B)
  12. Hello dreamscape, I need your input. I get this error message Parse error: parse error in /home/topvin/public_html/order/admin/configuration.php on line 24 when trying to get into the configuration section of the admin area. The code I have there is require('includes/application_top.php'); require(DIR_WS_FUNCTIONS . 'moectoe.php'); $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); if (tep_not_null($action)) { switch ($action) { case 'save': $configuration_value = tep_db_prepare_input($HTTP_POST_VARS['configuration_value']); $cID = tep_db_prepare_input($HTTP_GET_VARS['cID']); while (list($key, $value) = each($_POST['configuration'])) { ??????????if (is_array($_POST['configuration'][$key])) $configuration_value = implode(', ', $_POST['configuration'][$key]); ????????} tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . tep_db_input($configuration_value) . "', last_modified = now() where configuration_id = '" . (int)$cID . "'"); tep_redirect(tep_href_link(FILENAME_CONFIGURATION, 'gID=' . $HTTP_GET_VARS['gID'] . '&cID=' . $cID)); break; } } Line 24 is ?if (is_array($_POST['configuration'][$key])) $configuration_value = implode(', ', $_POST['configuration'][$key]); Any ideas on how to fix this? I just copied and pasted form your instructions. I'm really not a coder, just a good copy-and-paster. ;) Thanks a bunch, :: doris B)
  13. ps. By reading my own message I realize I forgot this one: What would be really of tremendous value is the ability to edit an order. Specifically: In the case of my client it works so that different % of discounts (kind of elaborate...) and fees (different handling fees for different shipments) are calculated after the order is submitted by the customer. After the calculation is done, the final Grand Total will be withdrawn from the submitted CC and a notification sent to the customer. Any ideas on how this could be set up? :: doris B)
  14. Hello! I just wanted to thank you for your contribution. I found it this morning after a long search and it works, so far, like a charm. I will keep an open eye and report any improvements that could make the experience even better. Have a fun weekend, :: doris B)
  15. Hello Pam, I'm not sure anymore. I'm doing so many changes right now... I think I did upload a file into the wrong directory. I did an extensive reading in the results I got for a search on: Fatal error: main(): Failed opening required 'includes/classes/navigation_history.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/topvin/public_html/order/admin/includes/application_top.php on line 126 What were you doing before you got the fatal error? Greetings, :: doris B)
  16. Hello all, I am working on a web site for a winery. They would like to give a 5% discount for any 6-pack order (of the same wine) and 10% off for any 12 pack (of the same wine). I went through the archives, found this thread http://www.oscommerce.com/forums/index.php?showtopic=65619&st=0& which discusses a similar problem and installed the price-break contribution. That went all very smoothly. Now, I got stuck with how to turn the discount from a fixed amount into a discount that gets calculated by percentage. And also the discount is only for those 6 (or 12) bottles. Any bottles outside of the discount range are not discounted. The winery would like to encourage people to get 6-packs and 12-packs because the shipping is much easier that way. So if, for example, somebody orders 20 bottles they get 10% discount for 12 bottles 5 % discount for 6 bottles and 2 bottles do not get a discount at all. Any and all input is, as always, very much appreciated :-) Greetings, :: domaky
  17. I could fix it. Hurray :D Is there any way for a poster to remove a post? Greetings to all, I'm having such a good time with this, headaches too, but that's ok B) :: domaky
  18. Hi all! I am almost done with installing the Quantity Price Break contribution. The catalog opens fine, however when I want to open the admin I get: Warning: main(includes/classes/navigation_history.php): failed to open stream: No such file or directory in /home/topvin/public_html/order/admin/includes/application_top.php on line 126 Fatal error: main(): Failed opening required 'includes/classes/navigation_history.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/topvin/public_html/order/admin/includes/application_top.php on line 126 I've checked, the navigation_history.php file is present and the mentioned line looks like this: require(DIR_WS_CLASSES . 'navigation_history.php'); My question is: Where could I have made a mistake? Thanks a big bunch for all and any hints, :: domaky :(
  19. I found some help with this posting: http://www.oscommerce.com/forums/index.php?showtopic=76198&st=0& Went through all the files I have changed and sure enough found the dead dog. Everything is fine and up and running now :-) Good luck with your "dead dog" :rolleyes: :: domaky
  20. Hi there, Same problem here :o after installing (or attempting to install...) "Featured" contribution: Fatal error: Cannot redeclare tep_db_connect() (previously declared in /order/includes/functions/database.php:13) in /order/includes/functions/database.php on line 13 Seems I got stuck in the same spot, wotzhotnow... :( Hope we can solve this soo... Greetings, :: domaky
×
×
  • Create New...