• 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

Error displayed after uploading completes

Status
Not open for further replies.

thezanny

Chevereto Member
fmoOU.jpg


How to fix this?
What's the cause for this? is there a problem?
 
Just read the message....

You have to set "error_reporting" to false.

change this from:
PHP:
/**
* error_reporting
* Switch for enable/disable the PHP error reporting
* -> When this is on TRUE the upload process won't trigger the redirect and the debug will be output
* default: false
*/
$config['error_reporting'] = true; // Values: true | false

to this:

PHP:
/**
* error_reporting
* Switch for enable/disable the PHP error reporting
* -> When this is on TRUE the upload process won't trigger the redirect and the debug will be output
* default: false
*/
$config['error_reporting'] = false; // Values: true | false

That's why you get this message:

Code:
onQueueComplete window.location: http://yoursite.com/image/ID (to dismiss this debug msg set error_reporting false on config.php)
 
Oh, is that so?
I thought that there was some error and because of that, the report was displayed.
Thanks for the help avast
 
Status
Not open for further replies.
Back
Top