Does anyone know where the edit button has gone? When i click on the info button the box appears but whe i click on 'edit' nothing happens. Attachment 17715Attachment 17714
Thanks.
Printable View
Does anyone know where the edit button has gone? When i click on the info button the box appears but whe i click on 'edit' nothing happens. Attachment 17715Attachment 17714
Thanks.
You have partial white page, as you are also missing the footer. Check your log files for an debug file.
[27-Feb-2018 11:33:13 Europe/London] PHP Fatal error: Call to undefined function cfg_select_option() in /***/***/***/configuration.php(195) : eval()'d code on line 1
Would suggest also addressing the items in the posting tips to help identify how this issue arose.
Posting tips appear above the message box when replying to or initiating a post.
What version of Zen Cart are you using? 1.5.5
Has your site been upgraded? When? From what version(s)? Yes, a month a go from version 1.3 i think
If you've upgraded, HOW did you upgrade? (official upgrade procedure or an automated script from your hosting company?) Hosting company upgraded for us
What plugins/addons have you installed? When? If your problems are payment-related, what payment module(s) are you using? If it's shipping-related, which shipping module(s) are you using? Yes just the cateogrie restriction add on to hide prices.
If your problems are language-pack related (non-English), have you checked that all the language files are loaded and correct? Yes
HOW did you install Zen Cart? (upload via FTP and run zc_install, or a one-click install from your hosting company? (one-click installs might mean you don't have enough information about your site/server to make customizations easily)) N/A
What version of PHP and MySQL is your server using? (See Admin->Tools->Server Info) PHP Version 5.4.17 & MySQL 5.5.32
WHEN did the problem "start"? How does that compare with other events of your hosting company, changes you've made to your site files/addons, or your admin settings, etc? Since template was installed last Friday
Please post the contents of related "debug logs" generated by Zen Cart (wrap the content intags please!). [27-Feb-2018 11:32:54 Europe/London] PHP Fatal error: Call to undefined function cfg_select_option() in /web/sites/mas-uk.com/wwwroot/www/control/configuration.php(195) : eval()'d code on line 1Code:and
If this is your first store, have you tested all aspects of transactions before going live? No and Yes
In what ways is your site customized or different from a brand new uncustomized install?
Please post your site URL* so we can take a look at it. This is especially important if you're encountering display/layout problems, so the problem can be seen directly. - www.mas-uk.com
If you're encountering problems that could be related to your server or hosting company, include the name of your hosting company (not their URL).
HAVE YOU LOOKED IN THE FAQ AREA for answers to your question? (ie: a search for your error message or what you want to edit/change, etc)
Have you searched the FORUM for your error message or for answers to the question you're asking?
phpMyAdmin, run the following sql query and post the results:
SELECT * FROM `configuration` WHERE `set_function` LIKE 'cfg_select_option%';
it seems something is probably wrong in the database as the function that it calls should be zen_cfg_select_option not cfg_select_option.
best.
jake,
not sure how your database got screwed up. assuming you ran the query correctly.
i ran the following sql commands:
my counts are:Code:SELECT count(*)
FROM `configuration`;
SELECT count(*) FROM `configuration` WHERE `set_function` LIKE 'cfg_select_option%';
SELECT count(*) FROM `configuration` WHERE `set_function` LIKE 'zen_cfg_select_option%';
919
0
425
now your numbers can be different; but your problem is that the 2nd query should be 0. unless you have defined a function call cfg_select_option which does NOT look to be part of the ZC base package.
best.