Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

How can I off default image page and show errors

I spent 6 months customizing a vanilla forum. But when I upload the application to remote machine it displays the "Bonk" error page instead of the error. The error log on the server is also empty. I don't know whats going wrong?
Spent ten days to solve this issue but did not get any clue.

Kindly help me. Thankful to you if email me mr.shahidkarimi@gmail.com

Tagged:

Answers

  • Options

    To display errors edit your /conf/config.php file and add the following:
    $Configuration['Garden']['Errors']['MasterView'] = 'deverror.master.php';

    I have also sent this to your e-mail address.

  • Options

    Also look here:
    http://vanillaforums.org/discussion/comment/154567#Comment_154567

    You need to access the Vanilla/conf folder on your webserver, and

    if you are using vanilla >= 2.0.18 Put

    $Configuration['Garden']['Debug'] = TRUE; `
    

    and if its < 2.0.18 put

    `$Configuration['Garden']['Errors']['MasterView'] = 'deverror.master.php';`
    

    in your config.php file.

    This will give you a detailed error message, rather than the 'Bonk' one. Once you have that, either it will help you see what to do, or else you can post another question, asking specifically about the error.

    There was an error rendering this rich post.

Sign In or Register to comment.