I did a complete reinstall of version 2.8 in an effort to resolve this problem. Everything works except file browsing in the default FCK.
This time I set my PHP error reporting level to E_ALL.
I don't know if this has anything to do with the problem, but now when I browse my media folder from the backend I get this error code:
Notice: Undefined index: extension in /home/don/public_html/admin/media/browse.php on line 66
Notice: Undefined index: extension in /home/don/public_html/admin/media/browse.php on line 59
The code around these lines is:
// Get file extension
function get_filetype($fname) {
$pathinfo = pathinfo($fname);
$extension = strtolower($pathinfo['extension']);
return $extension;
}
// Get file extension for icons
function get_filetype_icon($fname) {
$pathinfo = pathinfo($fname);
$extension = strtolower($pathinfo['extension']);
if (file_exists(THEME_PATH.'/images/files/'.$extension.'.png')) {
return $extension;
} else {
return 'unknown';
}
Does this help?
//edit I turned off error log as I found I had many errors on pages, and I kept the install to default settings