ClicShopping 169 Posted November 2 Just a little note. PHP 7.4 is out soon (end of this month) and bring lot of new features or deprecated features. I will start to stest ClicShopping under php 7.4 soon If you see something report on Github (ClicShopping, Official and community) the error or the bug. If you have time. 3 1 Quote Share this post Link to post Share on other sites
Drack 47 Posted November 2 Hello @ClicShopping, Nice. My hoster do not propose this at this time but, when this option will be available, I will make some test and report if I see something. Quote Share this post Link to post Share on other sites
Monkey 1 Posted November 2 Thank you for this report : Some information there : https://kinsta.com/blog/php-7-4/ Official page : https://wiki.php.net/rfc#php_74 1 Quote Share this post Link to post Share on other sites
Patrick 34 Posted November 2 (edited) A nice function apear inside php 7.4 : Preload : https://wiki.php.net/rfc/preload It can increased the speed of the website, not a little . But the problem, every time you change something inside a file, you must restart the server because everything is push in memory. https://andrewdavis.me/post/introduction-to-php-7-4-preload/ Note : when I wil install php 7.4, I will make some test also ! Edited November 2 by Patrick 2 Quote Share this post Link to post Share on other sites
Manupichu 6 Posted November 2 About the preload, I take time to read, and I more moderate on that. Depends of the site, it can increase or not the website. I do not know if it will be implemented inside ClicShopping, we will see. Quote Share this post Link to post Share on other sites
Drack 47 Posted December 1 Hello, I saw a problem about implode and language class, it creates deprecated error. I let the solution found. implode($get_params, '&'); by implode('&', $get_params); 2 3 Quote Share this post Link to post Share on other sites
ClicShopping 169 Posted December 1 Hello, @Drack, thank you for this report, updated. The ClicShopping Core seems to work fine with php 7.4, just the external libraries must be updated eventually, for that we must wait the developer to make the work. If I see something, I will update the core. There, the elements can put eventually a problem after a quick search (I do not say, you will have an error, more test must be again done) : base on this information : https://www.php.net/manual/fr/migration74.deprecated.php Using array_key_exists() on objects (some external libraries) ¶ Magic quotes functions (ckeditor) ==> no impact 1 4 Quote Share this post Link to post Share on other sites
Drack 47 Posted December 1 Ok, I will continue my test, seems the external libraries works fine in the core version. I have no error at this moment. Quote Share this post Link to post Share on other sites
Victorious 0 Posted December 2 @ClicShopping, @Drack, Thank you for your works and informations. Nice to know there is not specific problem with 7.4. Quote Share this post Link to post Share on other sites
Carole 6 Posted December 3 Is it interesting to migrate on php 7.4 ? Quote Share this post Link to post Share on other sites
Drack 47 Posted December 3 (edited) The performance is better that 7.3x but you must have all your applications must work with php 7.4. You must be care full, after ClicShopping seems works fine with 7.4. Of course, you must download and update your application with the latest commit. Edited December 3 by Drack Quote Share this post Link to post Share on other sites
Patrick 34 Posted Friday at 09:15 PM @Carole, Install on your local server php 7.4 and test you application. If everything works fine, you can go in production. Quote Share this post Link to post Share on other sites