Still getting error:
1366 Incorrect integer value: '' for column 'configuration_group_id' at row 1
On fresh install
Steve
Still getting error:
1366 Incorrect integer value: '' for column 'configuration_group_id' at row 1
On fresh install
Steve
Run the uninstall_mod.sql
Do you get any error from that file?
The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)
The uninstall gives me:
1091 Can't DROP 'track_id1'; check that column/key exists
in:
[ALTER TABLE orders_status_history DROP track_id1, DROP track_id2, DROP track_id3, DROP track_id4, DROP track_id5;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Not surprising because I have never had it installed..
I think I found out what the problem was.
Try this one.
The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)
Good try but still getting:
1366 Incorrect integer value: '' for column 'configuration_group_id' at row 1
in:
[INSERT INTO configuration_group VALUES ('', 'Ty Package Tracker', 'Ty Package Tracker Settings', '1', '1');]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Steve
From what I have read, Disabling the 'strict' mode in mysql5 should solve the problem.
A similar post was posted at:
http://www.zen-cart.com/forum/showthread.php?t=63993
I do not know much about strict mode in mysql5, so I will not comment if you should or should not disable the feature. You will have to research it. I am still using mysql4.
The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)
That fixed it.. Just comment out the strict mode line in my.ini for sql5
Steve
Look for the following code in admin/tracker.php (around line 348)
Replace it withCode:<td class="main"><?php echo $order->info['payment_method']; ?></td>Code:<td class="main"><?php echo $order->info['cc_type']; echo ' ' . $order->info['payment_method'];?></td>
The Lord gave and the Lord has taken away; may the name of the Lord be praised (Job 1:21 NIV)
Bookmarks