3.60 open_basedir error

3 posts by 2 authors in: Forums > CMS Builder
Last Post: July 25, 2023   (RSS)

By Dave - July 24, 2023

Hi Kenny, 

Yea, that's a bug we'll have fixed in the next release.  The Admin > General screen checks for common server configurations so it can display helpful information.

You can disable that as follows:

  • Open cmsb/lib/serverInfo_functions.php
  • Search for is_dir
  • Add @ in front of is_dir like this: 
  • if (!@is_dir($dir)) { continue; } // suppress errors when directory is blocked by open_basedir restrictions

And/or feel free to ignore those errors.

Thanks for reporting this and sorry for any hassle! 

Dave Edis - Senior Developer
interactivetools.com

By KennyH - July 25, 2023

Hi Dave - 

No problems with disabling those errors from making into the Developer Log using your fix.

Thanks!

Kenny