[RSS Feed/News] Error when open_basedir is configured and the parent of tempDataPath is not included

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
Code:

Code:
RuntimeException: SplFileInfo::isFile(): open_basedir restriction in effect. File(/<tempdir>/..) is not within the allowed path(s)

#0 src/XF/Util/File.php(146): SplFileInfo->isFile()

Changing
PHP:

if (!$file->isFile() || $file->getFilename() == 'index.html')

to
PHP:

if ($file->isDot() || !$file->isFile() || $file->getFilename() === 'index.html')

seems to fix this.
Read more about this Feed . . .
 
Status
Not open for further replies.
Back
Top Bottom