Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

2 estilos

Pioneers
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Real Name
    manuel

2 estilos's Achievements

  1. it's ok, in any case thank you very much for your help and effort Jack_mcs
  2. I tried this. I made a file called movetest.php and I put it in the folder /admin/ and ran it from the browser... it has deleted the file and has gotten into the folder /quarantine/ OK... the host does not know say to me, all they say is that there is an error. The error is this: [Tue May 24 17:24:02 2011] [warn] mod_fcgid: stderr: PHP Fatal error: Call to undefined function tep_not_null() in /usr/home/mi_dominio/www/admin/includes/functions/sitemonitor_functions.php on line 264 I do not know what else to do Jack_mcs ... I'm desperate :'(
  3. Hello Jack_mcs, thank you very much for your help. I keep having the same problem. When I run it from the browser, detects a new file, but although I have checked the box to send to the quarantine folder, the new file remains in the same folder and not moved to the quarantine folder. The host asked me if possible that we need to enter the name and password for the admin somewhere. Or perhaps change the paths in the files themselves. I attached a picture with my settings to see if it is correct. I beg you to help me again, I would really like SiteMonitor work properly.
  4. I checked with my host that I've mentioned, but unfortunately still not working properly. We tried different commands: I changed this,(h77p = http) so that not a link. :-" /usr/bin/wget -q -O /dev/null h77p://www.mi_dominio.com/admin/sitemonitor.php?instance=0 /usr/bin/wget -q -O /dev/null h77p://www.mi_dominio.com/admin/sitemonitor.php /usr/bin/wget -q -O /dev/null h77p://www.mi_dominio.com/admin/sitemonitor.php?instance=0 /usr/bin/wget -q -O /dev/null h77p://www.mi_dominio.com/admin/sitemonitor.php&instance=0 /usr/local/php5/bin/php-cgi /usr/home/mi_dominio/www/admin/sitemonitor.php&instance=0 /usr/local/php5/bin/php-cgi /usr/home/mi_dominio/www/admin/sitemonitor.php?instance=0 /usr/local/php5/bin/php-cgi /usr/home/mi_dominio/www/admin/sitemonitor.php But it still produces the same error [warn] mod_fcgid: stderr: PHP Fatal error: Call to undefined function tep_not_null() in /usr/home/mi_dominio/www/admin/includes/functions/sitemonitor_functions.php on line 233 The host asked me if you can run directly in the browser like this: http://www.mi_dominio.com/admin/sitemonitor.php thanks Jack_mcs
  5. The hosting said me the following: Task of cron is working perfectly, but, when a new file is found, it is not found a necessary function so that the execution finalizes: [sat May 14 17:41:02 2011] [warn] mod_fcgid: stderr: PHP Fatal error: Call to undefined function tep_not_null() in /usr/home/my_dominio/www/admin/includes/functions/sitemonitor_functions.php on line 233 [sat May 14 17:45:02 2011] [warn] mod_fcgid: stderr: PHP Fatal error: Call to undefined function tep_not_null() in /usr/home/my_dominio/www/admin/includes/functions/sitemonitor_functions.php on line 233 [sat May 14 17:46:01 2011] [warn] mod_fcgid: stderr: PHP Fatal error: Call to undefined function tep_not_null() in /usr/home/my_dominio/www/admin/includes/functions/sitemonitor_functions.php on line 233
  6. hello Jack, thank you very much by your help and for this contribution, it is fantastic! :thumbsup: I hope that you excuse my English, I speak english very bad. I'm using the last contribution for v2.2, SiteMonitor V 2.9. I have a problem. The contribution is installed correctly and it is working well of way manual. But, when I activate the function "quarantine", and a cron is executed, it does not eliminate the new files found, and it stops sending e-mails to me. But, when I execute it manually, the new files are eliminated and begin it send e-mails. I have tried wiht different commandos for the execution from cron. I have spoken with the support of my hosting, but I can not get that a new file goes to the folder automatically quarantine when the cron command is executed. The command of cron that works in my hosting is this: /usr/local/php5/bin/php-cgi /usr/home/mi_dominio/www/admin/sitemonitor.php Please, help me!!! it is very important for me. A lot of thanks :)
  7. Hello everyone, first I apologize for my English is very bad, I hope you understand. Second, acknowledge the work and effort for all their contributions FWR. Me being helpful. In this particular case, with the contribution KISS would do a series of questions. I had to modify the cron and I've left it this way ... /usr/local/php5/bin/php-cgi /usr/home/tes2tiendasvirtualesylogotipo/www/filesafe.php >/dev/null 2>&1 I also canceled a line in kiss_filesafe.ini run_frequency = that went some way in conflict with the patterns that I make time to chron ... I wonder what you think this ... Again, thank you very much for the work. _____________________________________________________________________________________________________________ Hola a todos, para aquellos que entiendan mejor el castellano, por que mi inglés, es muy malo. En segundo lugar, agradecer el trabajo y esfuerzo de FWR por todas sus contribuciones. Me están siendo de gran ayuda. En este caso particular, con la contribución KISS quisiera hacer una serie de preguntas. He tenido que modificar el comando cron y lo he dejado de esta manera... /usr/local/php5/bin/php-cgi /usr/home/dominio/www/filesafe.php >/dev/null 2>&1 y también he anulado una linea del archivo kiss_filesafe.ini run_frequency= por que entraba, de alguna manera, en conflicto con las pautas de tiempo que establezco con el cron... Quisiera saber que os parece esto... De nuevo muchas gracias por el trabajo y esfuerzo.
  8. I found a solution that can apply to stores that display their products including tax. Or at least it works for me. I leave you here to see what you think this little tweak. open the file catalog/includes/classes/order.php Find: //kgt - discount coupon if( is_object( $this->coupon ) ) { $this->info['total'] = $this->coupon->finalize_discount( $this->info ); } //end kgt - discount coupon Replace: //kgt - discount coupon MODIFICADO PARA MOSTRAR PRECIOS CON IMPUESTOS if( is_object( $this->coupon ) ) { $this->info['subtotal'] = $this->coupon->finalize_discount( $this->info ) - $this->info['tax'] - $this->info['shipping_cost']; } //end kgt - discount coupon MODIFICADO PARA MOSTRAR PRECIOS CON IMPUESTOS. The module configuration: Enable discount coupon? true Sort Order 0 Display discount with minus (-) sign? true Display subtotal with applied discount? true Display tax in discount line? Display discounted tax in separate line Exclude product specials? true Random Code Length 6 Display discount total lines for each tax group? false Allow negative order total? false Use the language file to format display string? false Display Format for Order Total Line Discount Coupon applied Debug Mode false If I put a fixed amount of discount given me problems with other sources of gift (get_1_free), (Dangling Carrot) if they work at the same time ... but if I put a discount rate works correctly.
  9. Hello everyone. First of all, excuse my English. It's too bad: (sorry. I have installed the contribution and work properly, while not display prices with taxes. Because if I show prices including taxes and makes me the wrong tax calculations. This is an example of what happens to me. You can tell me something?? Please is very important! I've been watching this post, but I have not found the solution. :'( Product: 40.00€ Discount Coupon AVBU7K applied: -12.00€ Subtotal: 28.00€ 18% I.V.A.: 4.27€ shipping: 0.00€ _________________________ Total: 32.27€
  10. Hello everyone. :) I hope you apologize my English, I do not speak well. I need your help, if possible, please. I have installed this module, but I need to make me discount points on the sub-total and not the final total. As I have it now: ____________________________ Product: 20 € ____________________________ sub-total: 16, 95 € Other discounts: 0 € 18% VAT: € 3.051 Shipping costs: 5 € ---------------------------- discount coupons: - 10 € ____________________________ ____________________________ TOTAL: 15 € ____________________________ ____________________________ But it would have to be this way: ____________________________ Product: 20 € ____________________________ sub-total: 16, 95 € discount coupons: - 10 € Other discounts: 0 € 18% VAT: € 1.251 Shipping costs: 5 € ____________________________ ____________________________ TOTAL: 13.20 € ____________________________ ____________________________ I tried to change the disposition of all modules in OrderTotal and not get the expected results. I appreciate any help. please.
  11. Hello everyone ... my English is very bad, I apologize. This is translated by google ... Sorry. I have problems with the upgrade of the shopping cart with gifts. I have installed the contribution so that the products are added automatically to the shopping cart to exceed the amount necessary (as indicated in the installation instructions). But I have problems ... Give a gift when you make a purchase of 20 €, for example. If you purchase an item of € 20, the gift item directly appears in the cart, as it should be ... If I buy an article of 10 €, the gifts, as missing below € 10 in order to select the gift, Logic ... BUT ... If from the shopping cart quantity purchased is increased to 2 units for the 20 € of purchase, the product is automatically added as I wanted. Not even I get the button to automatically add to the cart that gift (and still reported as missing € 10 to select the gift) TO GIVE YOU A SCREEN UPDATE. I understand that this is the normal process of this contribution ... BUT ... IF SOMEONE KNOWS HOW CAN I DO FOR THIS IS REALLY ALL AUTOMATIC, I will be very grateful ... In advance ... THANK YOU FOR YOUR HELP __________________ Hola a todos... Doy un regalo cuando se realize una compra de 20€, por ejemplo. Si se compra un articulo de 20€, el articulo de regalo aparece directamente en el carrito, como tiene que ser... Si compro un articulo de 10€, el articulo de regalo, aparece abajo indicando que faltan 10€ para poder seleccionar el regalo, LOGICO... PERO... Si desde el carro de la compra se aumenta la cantidad comprada a 2 unidades, para obtener los 20€ de compra, el producto no se añade automáticamente como yo quisiera. Ni tan siquiera me aparece de manera automática el botón de añadir a la cesta ese regalo (y sigue indicando que faltan 10€ para poder seleccionar el regalo) HASTA QUE LE DOY A ACTUALIZAR PANTALLA. Entiendo que este es el proceso normal de esta contribución... PERO... SI ALGUIEN SABE COMO PUEDO HACER PARA QUE TODO ESTO SEA REALMENTE AUTOMÁTICO, le estaré muy agradecido... De antemano... MUCHAS GRACIAS POR VUESTRA AYUDA
  12. Hello misantropo. Yes you can. It's just like it for any other module. includes/modules/also_purchased_products.php Just before "products_status = '1'" add "p.products_carrot = '0'". In my case I had: $orders_query = tep_db_query("select p.products_id, p.products_image from " . TABLE_ORDERS_PRODUCTS . " opa, " . TABLE_ORDERS_PRODUCTS . " opb, " . TABLE_ORDERS . " o, " . TABLE_PRODUCTS . " p where opa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and opa.orders_id = opb.orders_id and opb.products_id != '" . (int)$HTTP_GET_VARS['products_id'] . "' and opb.products_id = p.products_id and opb.orders_id = o.orders_id and p.products_status = '1' group by p.products_id order by o.date_purchased desc limit " . MAX_DISPLAY_ALSO_PURCHASED); and now I have this: $orders_query = tep_db_query("select p.products_id, p.products_image from " . TABLE_ORDERS_PRODUCTS . " opa, " . TABLE_ORDERS_PRODUCTS . " opb, " . TABLE_ORDERS . " o, " . TABLE_PRODUCTS . " p where opa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and opa.orders_id = opb.orders_id and opb.products_id != '" . (int)$HTTP_GET_VARS['products_id'] . "' and opb.products_id = p.products_id and opb.orders_id = o.orders_id and p.products_carrot = '0' and p.products_status = '1' group by p.products_id order by o.date_purchased desc limit " . MAX_DISPLAY_ALSO_PURCHASED); ______ Hola Misantropo... si que puedes yo lo acabo de hacer. Supongo que a estas alturas ya lo tendrás resuelto pero si no arriba indico como tienes que hacerlo... espero que te sirva de ayuda. Un saludo...
×
×
  • Create New...