Question
Prosper 202 Install not working and getting a parse error
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( inarray( 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.
×