Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Error message:

Parse error: syntax error, unexpected '{' in C:\xampp\htdocs\index.php on line 135

Code:

if(isset($_REQUEST['d'])
{ // LINE 135 IS THIS ONE
    $d = $_REQUEST['d'];

    if ($d) {
        while (preg_match('/\\\/',$d)) $d = preg_replace('/\\\/','/',$d);
        while (preg_match('/\/\//',$d)) $d = preg_replace('/\/\//','/',$d);
        while (preg_match('/\.\.\//',$d)) $d = preg_replace('/\.\.\//','/',$d);
        if ($d[strlen($d)-1] != '/') $d = $d.'/';
        if ($d == '/') $d = '';
    }
}
share|improve this question
...on line 135 is usually the most helpful part of any error message. – Matt Aug 10 '12 at 20:27
Yea I know but I did add the line number in the code. – Cocoa Dev Aug 11 '12 at 0:51

2 Answers

up vote 9 down vote accepted

You are missing a closing bracket:

if ( isset($_REQUEST['d'] ) )
share|improve this answer
Thanks. I missed the ). Too much looking at PHP code all day causes this – Cocoa Dev Aug 10 '12 at 20:22
1  
Glad it helped. – Yan Aug 10 '12 at 20:23
So obvious, lol... – Edward Ruchevits Aug 10 '12 at 20:25

Yan's got the main answer, but you're also missing a backslash in the first regex:

    while (preg_match('/\\\/',$d)) $d = preg_replace('/\\\/','/',$d);
                          ^                              ^

The first two insert a literal backslash into the pattern, while the 3rd backslash is actually escaping the pattern delimiter at the end, leading to an unterminated pattern.

share|improve this answer
Thanks for pointing that out! This osFileManager project appears to have so many bugs, issues that need fixing! – Cocoa Dev Aug 11 '12 at 0:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.