• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.

onQueue Complete window.location

soulman

Chevereto Member
Ребят, у меня в новой версии скрипта, после загрузки картинок, появляется окно с надписью "onQueue Complete window.location"
5b1ac095846a476c0ecf2b07d5a60aba.jpg

вместо того, чтобы автоматически перейти на страницу загруженного изображения.
Как исправить?
Guys, I have a new version of the script after loading the image, a window appears that says "onQueue Complete window.location".
Instead of automatically go to the loaded image.
How do I fix it?
 
is not a problem or a tech support issue. You have turned on the error reporting. On production this always have to be in false.
 
I think error reporting is turned on by default on 2.1 and maybe 2.1.1 - maybe turn it off for the next release Rodolofo?
 
Code:
ServerSignature Off
Options -Indexes

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^api$ api.php [L]
RewriteRule ^admin/(.*) admin/index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>

ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
I have the .htaccess file
 
Back
Top