tengo un sistema de noticias y para evitarme un campo con la alineación de la imagen pues he trasteado con esta función getimagesize, pero me da el siguiente error:
Warning: getimagesize(): open_basedir restriction in effect. File(../imagenes/Noticias/golf01.jpg) is not within the allowed path(s): (/home/webcindario/nippon-tour) in /home/webcindario/nippon-tour/principal/noticias.php on line 44
Warning: getimagesize(../imagenes/Noticias/golf01.jpg): failed to open stream: Operation not permitted in /home/webcindario/nippon-tour/principal/noticias.php on line 44
el código es el siguiente:
Código PHP:
if ($datos[7]){ // $datos[7] nombre de la foto recogido de la BD
$max = 350;
$size = GetImageSize("../imagenes/Noticias/$datos[7]");
if ($size[0] < $max) {
$align = "left";
}else{
$align = "center";
}
....
![Afirmando](http://static.forosdelweb.com/fdwtheme/images/smilies/afirmar.gif)