• 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.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

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