disable php error messages

Discussion in 'Tips/Tricks/Mods' started by aclhkaclhk, Dec 10, 2010.

  1. aclhkaclhk

    aclhkaclhk New Member

    a bad php script will produce the following error. pls advise how to disable the display for detail error.


    Warning: include() [function.include]: open_basedir restriction in effect. File(/home/www/123.com/db.php) is not within the allowed path(s): (/var/www/clients/client3/web13/web:/var/www/clients/client3/web13/tmp:/var/www/123.com/web:/srv/www/123.com/web:/usr/share/php5:/tmp:/usr/share/phpmyadmin:/etc/phpmyadmin:/var/lib/phpmyadmin) in /var/www/clients/client3/web13/web/joomla/selection/read.php on line 4
     
  2. edge

    edge Active Member Moderator

    It's not an error that you are seeing, but a warning.
    You can dissable the warnings and erroros in your php.ini file (have a look at the error_reporting = option)

    To turn error reporting off for a single document, include this line: error_reporting(0); at the top of the php page that is giving you the warning.
     

Share This Page