Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
388 views
in Q2A Core by

I can not install the copy in my
I get this error


Parse error: syntax error, unexpected T_STRING in /home/donia/public_html/ejabat/qa-config.php on line 36

1 Answer

+2 votes
by
in the file qa-config.php on line 36 you should have something like this:

define('QA_MYSQL_TABLE_PREFIX', 'q2a_');

an unexpected T_STRING is usually a misplaced ' somewhere that isn't closed around a string with a 'second' quote''

check that all the '' around your table prefix 'q2a_' are in place :)

Hope this helps ye
...