Parker
Member
Posted 8 months ago #
Hello!
I am making a WordPress Multisite on a test site, and when I add:
define('WP_ALLOW_MULTISITE', true) to the wp-config.php and reload my dashboard, I get the following error:
Parse error: syntax error, unexpected T_IF in /home/readnwri/public_html/wp-config.php on line 87
What am I doing wrong?
Sounds like you've introduced an error in to the wp-config.php file. Try re-creating the file and adding your additional line carefully.
Also make sure that you have a semi-colon at the end and no curly quotes:
define('WP_ALLOW_MULTISITE', true);
Parker
Member
Posted 8 months ago #
Also make sure that you have a semi-colon at the end and no curly quotes:
define('WP_ALLOW_MULTISITE', true);
Thank you! My problem was the stupid semi-colon at the end -.-