Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Simpel

Members
  • Posts

    116
  • Joined

  • Last visited

Profile Information

  • Real Name
    de wit

Recent Profile Visitors

11,915 profile views

Simpel's Achievements

  1. I got the same problem. Is there a solution?
  2. Hi, i got some problems with old code //DANS AUCTION SCRIPT -REFRESH $cquery="select products_id from ".TABLE_AUCTIONS_PRODUCTS." where products_id =".(int)$_GET['products_id']; $cresult=mysqli_query($cquery, $q); $cnum=mysqli_num_rows($cresult); $z=0; while ($z < $cnum) { $casprodid=mysqli_result($cresult,$z,"products_id"); //echo $casprodid; $z++; } if ($casprodid==(int)$_GET['products_id']) { header('Refresh: 90');} else { echo '';} //end DANS AUCTION SCRIPT this gives the error after update the database.php file tot oscommerce 2.3.4: Warning: mysqli_query() expects parameter 1 to be mysqli, string given in /com_oscommerce/product_info.php on line 112 Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, null given in /product_info.php on line 114
  3. Is it possible to pick items from a list (Category of items) and this picked list becomes the order? In stead of doing item by item from the front end? Is there a add-on which doing this?
  4. "There is an email sent to the store admin with the number of emails sent that day." ------ The ... review reminder script finished execution on 28 Nov 2015 16:15:44 3 email messages were sent. ------ Every customer gets this email also and see each other. it seems the script search the database for the right time range and then send all the customers in that range the same email. instead of separated, the script send to all of them., so they automatic see each other.
  5. But not separated. The first who make an order that day get the email. But the rest of the people who make an order get the first mail as a CC. So when 10 people make an order the same day. The see the email addresses of each other.
  6. Is it save? I get Regular expression match = [symlink\\s*\\(]: in /download.php’ // BOF Super Download Store v2.3.x mod symlink(DIR_FS_DOWNLOAD . $downloads['orders_products_filename'], DIR_FS_DOWNLOAD_PUBLIC . $tempdir . '/' . $file_name); tep_redirect(DIR_WS_DOWNLOAD_PUBLIC . $tempdir . '/' . $file_name); } else { // This will work on all systems, but will need considerable resources // We could also loop with fread($fp, 4096) to save memory set_time_limit(0); // Prevent the script from timing out for large files tep_download_buffered(DIR_FS_DOWNLOAD . $downloads['orders_products_filename']); // EOF Super Download Store v2.3.x mod
  7. You could try MarvikShop. That's a Oscommerce component for Joomla. That's not a bridge, but a real component for Joomla. You can reuse all your old Oscommerce database tables.
  8. For me the add-on gives a problem that everybody who buy that the same day in my shop, get an email after a week. like cc, so they see each other how come?
  9. Just wondering. Will it be possible when a customer order only above the 25 dollar. To give him automatic an discount over the email after a few days?
  10. I use this super-download-store for my shop and discover something weird. When a customer got 3 order in account_history _info. The file download of the latest order can be downloaded. So the last order shows everything fine. But the 2 order before gives the same download file as the latest order. It seems somehting to do with if (DOWNLOAD_ENABLED == 'true') include(DIR_WS_MODULES . 'downloads.php'); In the file I see $last_order. And not a download connection to the right order. Has anyone else got this problem? Example The downloadlink of order 157 gives the lastest downloadlink domain.com.....order=158&id=179 instead of order=157&id=179
  11. get this error at the search code in order_handler.php : 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT o.orders_id, o.customers_id, o.customers_name, o.payment_method, o.date_p' at line 1 select count(*) as total SELECT o.orders_id, o.customers_id, o.customers_name, o.payment_method, o.date_purchased, o.last_modified, o.currency, o.currency_value, s.orders_status_name, ot.text AS order_total, osh.comments FROM mcyuk_orders o JOIN mcyuk_orders_status_history osh LEFT JOIN mcyuk_orders_total ot ON (o.orders_id = ot.orders_id), orders_status s WHERE o.orders_status = s.orders_status_id AND s.language_id = ? AND o.orders_id = osh.orders_id AND osh.orders_status_id = '1' AND ot.class = 'ot_total' GROUP BY o.orders_id ORDER BY orders_id DESC
  12. just put in the checkout_payment after $payment_modules = new payment; if ( $order->info['subtotal']+$order->info['shipping_cost']==0 ) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_CONFIRMATION, 'payment=freeofcharge', 'SSL')); you can change freeofcharge in anything
  13. wrong call to database edit_orders_ajax =? change this if (EMAIL_USE_HTML == 'true'){ $text_query = tep_db_query("SELECT * FROM " . TABLE_EORDER_TEXT. " where eorder_text_id = '2' and language_id = '" . $languages_id . "'"); } else{ $text_query = tep_db_query("SELECT * FROM ". TABLE_EORDER_TEXT." where eorder_text_id = '1' and language_id = '" . $languages_id . "'"); }
×
×
  • Create New...