PRO-Webs, Inc. since 2003 :: Zen Cart Hosting :: Zen Cart SEO – 12 Steps to Success
**I answer questions in the forum, private messages are not conducive to a helpful community.
> Is there a piece of code where I can change a 1 to a 3 somewhere?
It's not done in code; it's done by the database. I have read you can modify the auto_increment value but I have never done this myself. Be sure to make a backup first and verify that everything works as expected. *It would be a good idea to verify this on a test site before changing your live database. Be sure to test all relevant payment methods.*
The syntax would be something like this:
ALTER TABLE orders MODIFY COLUMN orders_id int(11) NOT NULL auto_increment=3;
OR perhaps just
ALTER TABLE orders auto_increment=3;
I would not recommend doing this but it's your store.
That Software Guy. My Store: Zen Cart Support
Available for hire - See my ad in Services
Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
Do you benefit from Zen Cart? Then please support the project.
Hmm, I was hoping it was an integer value somewhere in a php file. Maybe I'll wait, but thank you for the response. I'll use the time I would have spent attempting it to manually update the counter to keep my paranoia at bay. Thanks