I'm very new to Zen Cart. I am testing it out to see if it will work for me, so have it installed at localhost.
I unzipped the file and pasted the folders from the FullVersion/catalog folder into the root of my ZenCart folder. I then opened the sqlfile folder. I did not see a file that was named LocalSalesTaxv2.5.sql. The best i could guess was Zencart_v1.5.0_admin_localSalesTaxes.sql. Should I have used tax_rates_local.sql instead?
Anyway, I was not able to install the sql at TOOLS -> Install SQL Patches, but was able to run the sql at phpMyAdmin. This is what I pasted into the SQL area:
Code:
SET @localSalesTaxesSort = (SELECT sort_order FROM zen_admin_pages WHERE menu_key = 'taxes' ORDER BY sort_order DESC LIMIT 1);
SET @localSalesTaxesSort = @localSalesTaxesSort+1;
INSERT INTO zen_admin_pages(`page_key`, `language_key`, `main_page`, `menu_key`, `display_on_menu`, `sort_order`)
VALUES ('localSalesTaxes', 'BOX_TAXES_LOCAL_SALES_TAXES', 'FILENAME_LOCAL_SALES_TAXES', 'taxes', 'Y', @localSalesTaxesSort);
For the next step, I'm supposed to go to MODULES -> ORDER TOTAL and find "Local Sales Taxes", but it isn't there.
Also, if I try to go to
What have I done wrong?
Thanks,
Alisa
Bookmarks