Hello!
We don't support short open tags, so i wrote this little script that can help you.
Make a new php-file put this code in it, set the path to you installation and call it in your browser.
<?php
set_time_limit(120);
$folder = '../';
function remove_short_open_tags($folder){
$dir = opendir($folder);
while($file = readdir($dir))
if($file != '.' && $file != '..' && $file != 'scripts'){
if(is_dir($folder.'/'.$file)) remove_short_open_tags($folder.'/'.$file);
elseif(array_pop(explode('.', $file)) == 'php'){
$contents = file_get_contents($folder.'/'.$file);
$contents = preg_replace("/(<\?=)(.*?)(\?>)/s", "<?php echo \\2; \\3", $contents);
$contents = preg_replace("/(<\?)()/", "\\1php \\2", $contents);
$fp = fopen($folder.'/'.$file, 'w');
if(fwrite($fp, $contents))
fclose($fp);
}
}
}
remove_short_open_tags($folder);
echo 'Done!';
?>
I hope i could help you out, and perhaps the developer let run this script before the next release comes out.:)
Greets, PHP!