• 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

Problemas con la version 1.7

LessOne

Chevereto Noob
Bro, primero que nada gracias por el trabajo que has hecho. Te comento mi problema en un host gratis tengo instalada una version mas antigua del chevereto y funciona a la perfeccion. Intente instalar la version mas nueva en el mismo host (byethost.com) y resulta qu eme daba error, aun cuando configure de toda manera humanamente posible el config.php. Instale la version 1.5 y funciono bien. Espero que este error sea corregido, o por lo menos que me saques de mi ignorancia y me digas que pasa...

Los errores que me daban tenian que ver con DOM_SCRIPT y me decia que lo configurara manualmente...

Mmmm otro pequeño problema es que no entiendo bien como bloquear las imagenes para que no se logren ver en otros sites y que se muestre la imagen de error... modifique el archivo .htaccess de la carpeta upload y le agregue esto

Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?dev.chevereto.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?godlike.cl [NC]
RewriteCond %{HTTP_REFERER} !^http://www.windowswolf.com
RewriteCond %{HTTP_REFERER} !^http://winwolfimg.byethost12.com
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.png [NC,R,L]

quedando asi:

Code:
<Files ~ "^\.ht">
order allow,deny
deny from all
</files>

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

RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?dev.chevereto.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?godlike.cl [NC]
RewriteCond %{HTTP_REFERER} !^http://www.windowswolf.com
RewriteCond %{HTTP_REFERER} !^http://winwolfimg.byethost12.com
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://dev.chevereto.com/site-img/error.png [NC,R,L]

No se que hice mal...
 
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?windowswolf.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?winwolfimg.byethost12.com [NC]
RewriteRule images/.*\.(jpg|png|bmp|gif)$ http://windowswolf.com/site-img/error.png [NC,R,L]
 
Back
Top