Hi,
while testing the shop I stumbled upon the preferences page, which is not taken into account - I cannot change anything there. Is this an issue related to db update? Please shed some light somebody
Where to look into which db part....
Thank you
claus
Last edited by update on Thu 1. Nov 2007, 10:21, edited 1 time in total.
I'm trying to install the shop with the Shop Module & Tutorial from web casa-loca and have done everything exactly as described - without success.
No, I've installed v1.3.5 now and tried to alter the settings of the shop (e.g. shop Artikel-ID and Warenkorb Artikel-ID) and Ta-Dah after pressing SAVE the settings are reseted.
If I had any left I would tear my hair.
I solved this: the system is not saving the table names correctly.
view your tables and then modify your code to create the table with a matching db_prepend from your configuration.
nebenaube wrote:I solved this: the system is not saving the table names correctly.
view your tables and then modify your code to create the table with a matching db_prepend from your configuration.
No, this wasn't it either. I don't use any db_prepends!
Havn't found a solution yet, still searching - by the way, where should the preferences be saved?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Wer ein Problem mit mir hat, kann es gerne behalten - es ist schließlich seins!
Let me try to clarify what I said in the other post. BTW, The table used for the shop preferences is phpwcms_sysvalue.
I finally got my installation working when the code I used to create the tables for the shop produced table names that matched the format the rest of the installation was using. In my case I use db_prepend and either in code I changed or elsewhere in the system the other tables in the database ended up being created thusly sbateman__phpwcms_xxxxxx. (note the double underscore at the first break in the name) Anyway when I added the $phpwcms['db_prepend'] variable to the line that creates the respective shop table and executing the query, I was getting a table named sbateman_phpwcms_sysvalue (note single underscore at the first break in the name).