Some help please, I just did a new install on my test site running zc v1.5.5f, I am trying to go to the Installation Check page per the instructions and I get a blank page. The 1st debug log error was:
Code:
 PHP Parse error:  syntax error, unexpected '?' in /home/sammirah/public_html/webstore2/zcadmin/includes/classes/class.CeonURIMappingInstallationCheck.php on line 2173
I removed one of 2 ?? from the middle now it says,
Code:
PHP Parse error:  syntax error, unexpected ';' in /home/sammirah/public_html/webstore2/zcadmin/includes/classes/class.CeonURIMappingInstallationCheck.php on line 2173
so I removed the 1 ; at the end and it still isn't loading that page. The site is still working fine but I can't move forward in the instructions. Now it says
Code:
PHP Parse error:  syntax error, unexpected 'if' (T_IF) in /home/sammirah/public_html/webstore2/zcadmin/includes/classes/class.CeonURIMappingInstallationCheck.php on line 2175
I am not going to remove anything until someone can tell me what I am missing. Below are lines 2173-2180:
PHP Code:
            $path $old_file_or_dir['file'] ? $old_file_or_dir['dir']
            
            if (
file_exists($path)) {
                if (!
is_dir($path)) {
                    @
unlink($path);
                } else {
                    
$this->_deleteDir($path);
                }