Hi, sorry for the necrobumping, but I have not yet been able to locate the cause of this error or warning. The error makes the following allusion:
No such file or directory in /home/forum/domains/forum.es/public_html/vendor/symfony/filesystem/Filesystem.php:293
This has been happening to me since I first installed the forum. The locale folder has 755 permissions, but the "catalogue" files are generated and deleted by the forum itself and I don't really understand what their function is. The error leads me to check this fragment (line 293) but I can't make sense of it either:
// we check that target does not exist
if (!$overwrite && $this->isReadable($target)) {
throw new IOException(sprintf('Cannot rename because the target "%s" already exists.', $target), 0, null, $target);
}
if (!self::box('rename', $origin, $target)) {
if (is_dir($origin)) {
// See https://bugs.php.net/54097 & https://php.net/rename#113943
$this->mirror($origin, $target, null, ['override' => $overwrite, 'delete' => $overwrite]);
$this->remove($origin);
return;
}
throw new IOException(sprintf('Cannot rename "%s" to "%s": ', $origin, $target).self::$lastError, 0, null, $target);
}
}
jslirola Did you manage to fix the error, can someone help me with this or at least give me a hint? A permissions problem as luceos points out is not it, or at least not in that folder.