
|
Hi, I am getting the “getimagesize” error. I noticed several post regarding this error but no answers. It appears that my error is a premission denied and I see that a FrontPage folder is included as a parameter. Don’t have a clue why the FP folder would be there. I know we all hate FP but can anyone help?
Warning: getimagesize(images/_vti_cnf) [function.getimagesize]: failed to open stream: Permission denied in F:hshomeshammocklamarsegofamily.come2getfolders.php on line 105
|
 E2
|
To fix this issues open up getfolder.php and find:
list($width, $height, $type, $attr) = getimagesize("$path/$file[name]", &$info);
and change it to:
list($width, $height, $type, $attr) = getimagesize("$path/$file[name]", $info);
|