Order IP Recorder v1.0
#61
Posted 03 October 2006 - 12:03 AM
Yes, I'm willing to help, but please ask in the right place. Think twice before trying to PM me, it might be ignored.
#62
Posted 03 October 2006 - 12:47 AM
#63
Posted 03 October 2006 - 12:57 AM
In the second error message you posted:
Quote
the SQL query should end with:
Quote
Yes, I'm willing to help, but please ask in the right place. Think twice before trying to PM me, it might be ignored.
#64
Posted 03 October 2006 - 02:03 AM
#65
Posted 03 October 2006 - 02:20 AM
Yes, I'm willing to help, but please ask in the right place. Think twice before trying to PM me, it might be ignored.
#66
Posted 03 October 2006 - 02:48 AM
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 ' ipaddy, ipisp from orders where orders_id = '15'' at line 1
select customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, currency, currency_value, date_purchased, orders_status, last_modified from, ipaddy, ipisp from orders where orders_id = '15'
#67
Posted 03 October 2006 - 02:49 AM
#68
Posted 03 October 2006 - 03:19 PM
#69
Posted 03 October 2006 - 03:57 PM
This section should be:
function query($order_id) {
$order_query = tep_db_query("select customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, currency, currency_value, date_purchased, orders_status, ipaddy, ipisp last_modified from " . TABLE_ORDERS . " where orders_id = '" . (int)$order_id . "'");
$order = tep_db_fetch_array($order_query);
A few lines below that it should be:
$this->customer = array('name' => $order['customers_name'],
'company' => $order['customers_company'],
'street_address' => $order['customers_street_address'],
'suburb' => $order['customers_suburb'],
'city' => $order['customers_city'],
'postcode' => $order['customers_postcode'],
'state' => $order['customers_state'],
'country' => $order['customers_country'],
'format_id' => $order['customers_address_format_id'],
'telephone' => $order['customers_telephone'],
'email_address' => $order['customers_email_address'],
'ipaddy' => $order['ipaddy'],
'ipisp' => $order['ipisp']);
#70
Posted 13 October 2006 - 01:13 AM
Any ideas on how/where to look to correct this problem?
#71
Posted 13 February 2007 - 02:22 PM
I have just installed teh contrib and it seems to be working although it does list my ISP as .co.uk rather than the full ISP but maybe that is just an issue with my ISP.
My problem is within the admin if I now try to edit an order or adda comment I get the following error
Warning: Cannot modify header information - headers already sent by (output started at /home/ollyno1/public_html/jbosolutions/admin/includes/languages/english/orders.php:90) in /home/ollyno1/public_html/jbosolutions/admin/includes/functions/general.php on line 22
Although it does seem to add comments to the order
Has anyone else had this?
Thanks in advance
#72
Posted 28 October 2007 - 11:30 PM
Baby Boy, on Mar 27 2005, 02:59 AM, said:
I have gone over the code several times. Even tried comparing to the older versions that did not work.
I installed V1.5 and I see the Ip in the edit order page, but no ISP. The ISp is recorded in the database, but will not show up next to the ISP heading on the page where you edit an order.
Tim
ps. I guess I should give up like the description says at the end.
Edited by knifeman, 28 October 2007 - 11:31 PM.
#73
Posted 09 February 2008 - 10:31 PM
function query($order_id) {
$order_query = tep_db_query("select customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, currency, currency_value, date_purchased, orders_status, ipaddy, ipisp, last_modified from " . TABLE_ORDERS . " where orders_id = '" . (int)$order_id . "'");
$order = tep_db_fetch_array($order_query); i added the comma after ipisp but no joy
using RC1
Edited by none_uk, 09 February 2008 - 10:31 PM.
#74
Posted 15 April 2008 - 01:35 PM
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/localhost/htdocs/sysconcept_ca/catalog/checkout_confirmation.php:1) in /var/www/localhost/htdocs/sysconcept_ca/catalog/includes/functions/sessions.php on line 102Does anybody know how to fix it or alternative contribution?
#75
Posted 17 April 2008 - 01:35 AM
syscon, on Apr 15 2008, 05:35 AM, said:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/localhost/htdocs/sysconcept_ca/catalog/checkout_confirmation.php:1) in /var/www/localhost/htdocs/sysconcept_ca/catalog/includes/functions/sessions.php on line 102Does anybody know how to fix it or alternative contribution?
problem solved! Error on my part (made a typo).
#76
Posted 09 July 2008 - 09:12 PM
#77
Posted 18 November 2009 - 02:24 PM
My customer side works fine but theirs no Database save for either ip or isp.
#78
Posted 19 January 2012 - 07:59 PM
#79
Posted 28 June 2012 - 02:17 AM
Any thoughts?
Thanks.
#80 ONLINE
Posted 28 June 2012 - 03:54 AM









