vlskrbek Posted September 28, 2018 Share Posted September 28, 2018 Hello, does anybody can test if this work for you? I am trying to put false value to the configuration but it does not work: When I do this: Configuration::updateValue('MYNAME', True); then it is work fine. When I do Configuration::updateValue('HOMESET_SWITCH', False); then it is does not work. Actually it does not do anything. It does not add new configuration item. I am using prestashop 1.7.4.2 Thanks for help. Best Regards Link to comment Share on other sites More sharing options...
Nishith Nesdiya Posted September 29, 2018 Share Posted September 29, 2018 Hi... Use Configuration::updateValue('MY_VALUE', 0); Configuration::updateValue('MY_VALUE', 1); OR Configuration::updateValue('MY_VALUE', false); Configuration::updateValue('MY_VALUE', true); Thanks Link to comment Share on other sites More sharing options...
vlskrbek Posted October 6, 2018 Author Share Posted October 6, 2018 Hi, Configuration::updateValue('MY_VALUE', 0); // works fine Configuration::updateValue('MY_VALUE', 1); // works fine OR Configuration::updateValue('MY_VALUE', false); // does not work Configuration::updateValue('MY_VALUE', true); // works fine so it works for you? Best Regards Link to comment Share on other sites More sharing options...
Nishith Nesdiya Posted October 8, 2018 Share Posted October 8, 2018 On 10/7/2018 at 3:59 AM, vlskrbek said: Hi, Configuration::updateValue('MY_VALUE', 0); // works fine Configuration::updateValue('MY_VALUE', 1); // works fine OR Configuration::updateValue('MY_VALUE', false); // does not work Configuration::updateValue('MY_VALUE', true); // works fine so it works for you? Best Regards Yes Thanks Link to comment Share on other sites More sharing options...
vlskrbek Posted October 11, 2018 Author Share Posted October 11, 2018 (edited) Ok I will try another installation if it is only problem of my environments. Best Regards Edited October 11, 2018 by vlskrbek (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now