I am cloning a wordpress blog but when I check on the http://example.com, I am getting this error: Parse error: syntax error, unexpected T_STRING in /home/ceelin/public_html/example.com/wp-config.php on line 37 Line 37 is : define('WP_SITEURL','http://example.com); Could someone tell me how to fix this?
define('WP_SITEURL','http://example.com'); You dropped the single quote after the URL. (Of course you have to change the actual URL.)