pbj Posted October 25, 2016 Share Posted October 25, 2016 Hi I tried to uninstalled "send to a friend" module that i heard it could corse virus. Then run pscleaner and now i can't see the module page?? [PrestaShop] Fatal error in module file :/home/u11p7yb/www/modules/pscleaner/pscleaner.php:syntax error, unexpected '[' Thank you for your time Peter Link to comment Share on other sites More sharing options...
jetway Posted October 25, 2016 Share Posted October 25, 2016 An attacker was able to misuse the "Send to a Friend" Module to send spam mail. I believe this issue has been resolved in one of the last updates to the module. Link to comment Share on other sites More sharing options...
rocky Posted October 26, 2016 Share Posted October 26, 2016 What version of PHP are you using? If it's an old version, it's possible the following line may be causing the error: $append = []; You may need to change it to: $append = array(); Link to comment Share on other sites More sharing options...
NMCoatings Posted November 4, 2016 Share Posted November 4, 2016 any updates on this topic? i have a similar case: [PrestaShop] Fatal error in module file :/home/nmcoating/public_html/modules/statsdata/statsdata.php:syntax error, unexpected '[' Link to comment Share on other sites More sharing options...
rocky Posted November 4, 2016 Share Posted November 4, 2016 This error usually occurs when a module is using the [] notation to create an array and you're using an old version of PHP that doesn't support that notation. To fix it, search for code like the following: $array = []; And change it to: $array = array(); Link to comment Share on other sites More sharing options...
NMCoatings Posted November 4, 2016 Share Posted November 4, 2016 thannk you for replying! i fixed it by replacing the file with the backup one, but ill keep an eye on the php versions next time 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