Following php coding errors to be fixed.
1. Two files and associated code is causing the cache errors as well as the image size errors:
On line 362 I commented out the following line:
$datos_imagen=getimagesize($ruta_imagen);
On the file xxxxxx, there appears to be a session being called in this file after a session has already been made, which under newer versions of PHP cannot be done. On line 18, I commented out the following code:
session_register(“rootfilepath”);
These tw…