BrOllie Posted December 4, 2009 Share Posted December 4, 2009 Hello,Having experienced the deadlock issue during installation where it is impossible to get past "Step 4 - Shop configuration", I did a bit of research and found an issue that I believe needs to be addressed in the source code of PS.I ran the installation and got the following error in the Firefox Error Console when I pressed "Next": Warning: preg_match() [function.preg-match]: Compilation failed: internal error: code overflow at offset 30 in /var/www/mysite.com/mysite.com/wwwroot/webshop/classes/Validate.php on line 138 So I isolated the "preg_match()" into a test.php file and indeed it produced the same error.The problem is the match pattern used in the function: '/^[^0-9!<>,;?=+()@#"°{}_$%:]*$/ui'This contains 2 characters that at least my web-hosting environment doesn't like:  and °If the function is modified to use the match pattern '/^[^0-9!<>,;?=+()@#"{}_$%:]*$/ui' the installation goes through without a hitch.Regards. Link to comment Share on other sites More sharing options...
Patric Posted December 7, 2009 Share Posted December 7, 2009 Hi, Thank you for your feedback, but could you please post it into the Bug Tracker, as this is the only place where bugs will be definitely taken into account.Regards. 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