PDA

View Full Version : php_psio unexpected charactor in input error


mickon
01-07-2006, 11:27 PM
so i need some help with php_psio

i dont know what, but i have done something wrong, while configuring my AnnounceMessages..

when i try uploading an mp3 file, i get this error:

[R] 226-Warning: Unexpected character in input: '\' (ASCII=92) state=1 in F:\FTP\ioFTPD\system\php_psio\config.php on line 220
[R] 226-
[R] 226-Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in F:\FTP\ioFTPD\system\php_psio\config.php on line 220

so i look in my config php on line 220:

$audio_race = "RACE: \"%v\/race" \"%B%U%B is racing [ %R ] on %r @ %B%S%BkB/s.\"";
$audio_sfv = "SFV: \"%v\/sfv" \"%B%r%B. Expecting %B%f%BF.\"";

i cant see anything.. anybody happen to have had the same problem, and found the fix, or just know whats wrong? please help me, thanks :)

SnypeTEST
01-08-2006, 01:14 AM
$audio_race = "RACE: \"%v\/race\" \"%B%U%B is racing [ %R ] on %r @ %B%S%BkB/s.\"";

Dont need to escape the /

so...

$audio_race = "RACE: \"%v/race\" \"%B%U%B is racing [ %R ] on %r @ %B%S%BkB/s.\"";

$audio_sfv = "SFV: \"%v/sfv\" \"%B%r%B. Expecting %B%f%BF.\"";

mickon
01-20-2006, 11:42 AM
thank you very much, everything is working properly now, and im sorry for the late reply ;)