• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Cuadro amarillo... sip.. yo tambien.. (yellow box error) :-(

fernandix

Chevereto Noob
Hola, los felicito por ceder cualquier "obra" de su ingenio a la comunidad en forma gratuita y altruista como este script.
Instalé el script y luego de poder hacerlo correr, cuando subo una imagen obtengo un cuadrado amarillo


Aclaro antes que nada que ya intente tooodas las soluciones que dan en los threads.

He aqui mis errores:
Code:
Warning: copy(up/working/6fc56b672eb6d84d5a2d5f2241358618.jpg) [function.copy]: failed to open stream: Permission denied in /home/a9471861/public_html/engine.php on line 273

Warning: getimagesize(up/working/6fc56b672eb6d84d5a2d5f2241358618.jpg) [function.getimagesize]: failed to open stream: No such file or directory in /home/a9471861/public_html/engine.php on line 317

Warning: unlink(up/working/6fc56b672eb6d84d5a2d5f2241358618.jpg) [function.unlink]: No such file or directory in /home/a9471861/public_html/engine.php on line 364

ESTE ES MI .htaccsess

Code:
<files file-name>
order allow,deny
deny from all
</files>

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} ^([^.]+)$
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://www.midominio.com/$1/ [L,R=301]

# HAGAMOS CACHE (1 SEMANA = 604800) Actual 3 Meses
<FilesMatch "\.(jpg|gif|png|bmp)$">
Header set Cache-Control "max-age=7257600, public"
</FilesMatch>

RewriteEngine On
# index PAGE slash final
RewriteRule ^(.*)/$ index.php?p=$1 [L]
# index PAGE dot exten
RewriteRule ^(.*).html$ index.php?p=$1 [L]
RewriteRule ^(.*).htm$ index.php?p=$1 [L]

ErrorDocument 400 /index.php?p=400
ErrorDocument 401 /index.php?p=401
ErrorDocument 403 /index.php?p=403
ErrorDocument 404 /index.php?p=404
ErrorDocument 500 /index.php?p=500
ErrorDocument 503 /index.php?p=503


Tambien, cambie los CHMOD de las carpetas temp, up, images: pero nada
Tambien probé habilitando el ftp: pero NADA


He aqui las configuración del servidor:

Code:
PHP and MySQL (PHP Version 5.2.8)
Cron Jobs     
Curl     
GD     
PHP Pear Modules
Zend Optimizer      
IonCube Loader     
Curl Support     
File Uploads     
PHP mail() and Sendmail     
fopen() and PHP sockets     
safe_mode OFF     
register_globals ON     
allow_url_fopen ON

ALGUIEN PUEDE AYUDARME??
GRACIAS
 
Back
Top