Parse error: syntax error, unexpected T_STRING
Sometimes your website is loading with the following error: ~~~~~ Parse error: syntax error, unexpected T_STRING ~~~~~ If you are getting the above error on your website, you need to turn off the PHP module 'short_open_tag' in your 'php.ini' file. short_open_tag = Off Note: 'short_open_tag' tells PHP whether the short form ( <? ?> ) of PHP's open tag should be allowed. If you want to use PHP in combination with XML, you can disable this option in order to use <?xml ?> inline. Otherwise, you can print it with PHP, for example: <?php echo '<?xml version="1.0"?>'; ?> . Also, if disabled, you must use the long form of the PHP open tag ( <?php ?> ). You can do it either in your custom 'php.ini' file present under "public_html" directory or in global 'php.ini' file. You can get the global 'php.ini' file location u...