I’m a newbie and I keep getting this error when I am trying to install the program.
", “?”, “@”, “[”, “\”, “]”, “^”, “_”, “`”, “{”, “|”, “}”, “~”, “Д, “Ñ”, “Á”, “¢”, “£”, “?”, “´”, “?”, “¤”, “¬”, “©”, “»”, “Ç”, “”, “?”, “¨”, “ø”, “¡”, “±”, “?”, “?”, “«”, “µ”, “¦”, “á”, “ü”, “?”, “¼”, “È”, “?”, “?”, “?”, “À”, “Ë”, “ç”, “å”, “Ì”, “€”, “”, “®”, “‚”, “é”, “ƒ”, “æ”, “è”, “í”, “ê”, “ë”, “ì”, “?”, “„”, “ñ”, “î”, “ï”, “Í”, “…”, “?”, “¯”, “ô”, “ò”, “ó”, “†”, “?”, “?”, “§”, “ˆ”, “‡”, “‰”, “‹”, “Š”, “Œ”, “¾”, “”, “”, “Ž”, “”, “‘”, ““”, “’”, “””, “•”, “?”, “–”, “˜”, “—”, “™”, “›”, “š”, “Ö”, “¿”, “”, “œ”, “ž”, “Ÿ”, “?”, “?”, “Ø” ); $newString .= “”; for( $incString = 0; $incString < strlen( $string ); $incString++ ) { if( in_array( strtolower( $string[$incString] ), $allowedCharacters ) ) { $newString .= $string[$incString]; } } return $newString; } //this is like SUBSTR, but will cacluate for WHOLE CHARACTERS only, IE: it won’t cut a word in half function cutText($string, $length) { while ($string{$length} != " ") { $length–; } return substr($string, 0, $length); } Parse error: syntax error, unexpected end of file in /var/www/html/202-config/functions-tracking202.php on line 4299
I have no idea what this is…but line 4299 is:
?>
Any help would be appreciated…
Matt
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Edit
php.ini
and setshort_open_tag
toOn
.If you’re using Apache,
php.ini
can be found in/etc/php5/apache2/
. Make sure you restart Apache after editing the file:If you’re using Nginx,
php.ini
can be found in/etc/php5/fpm/
. You will need to restart php5-fpm after editing it:Let me know if that works.