5.7.0.3 errors on Files and Members page
Permalink 5 users found helpfulHave installed concrete 5.7.0.3 without errors (all checks passed), however when visiting either the Files or Members pages i am presented with an error 'Only variables can be passed by reference', has anyone else experienced these errors?
Don't know if i am missing a step or permission or something when installing.
A have attached a file with my environment info and log files for reference.
Any help would be greatly appreciated wanting to start using concrete 5.7 on a new project!
Javan
Javan
Turning off asp_tags works perfectly!
Just a note for anyone else doing this, there a few ways you can do this however the one i took was to create a php.ini file at the root of the project directory and set asp_tags = 0, for me this caused an error 'Class PDO not found' the solution to this was to add the pdo extension to the php.ini file.
So your final php.ini file should look like:
asp_tags = 0 extension=pdo.so extension=pdo_sqlite.so extension=sqlite.so extension=pdo_mysql.so
Don't know if you need the sqlite stuff in there but it doesn't seem to hurt.
extension=pdo.so extension=pdo_sqlite.so extension=sqlite.so extension=pdo_mysql.so
https://stackoverflow.com/questions/2967597/only-variables-can-be-pa...
The site is running 5.7.3.1
Great find!
It fixed all my problems for both attributes and users. Thank you so much @zest! I was tearing my hair out over here.
I had a "Class 'PDO' not found" error on two Concrete5 websites that just stopped working (no idea why).
I have no idea what the code means but I made a php.ini file with that code and it worked straight away... thank you, thank you, thank you.
Mike