• 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.

Accès impossible / Problème avec config.php

Je dois éditer ceci peut être ?

Code:
ServerSignature Off
Options -Indexes -MultiViews
 
Options +FollowSymLinks
RewriteEngine On
 
# If you have problems with the rewrite rules remove the "#" from the following RewriteBase line
# You will also have to change the path to reflect the path to your Chevereto installation
#RewriteBase /admin
 
RewriteRule ^api$ api.php [L]
RewriteRule ^admin/(.*) admin/index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
 
ErrorDocument 400 default
ErrorDocument 401 default
ErrorDocument 403 default
ErrorDocument 404 default
ErrorDocument 500 default
 
You have to set "error_reporting" to false.
http://pastebin.com/ZCJBdB2S -> line 188.

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://ero1kk.eu/image/h (to dismiss this debug msg set error_reporting false on config.php)
 
Back
Top