We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The parameter accesslog works fine for absolute paths and for filenames only, but does not work for relative paths in the form: mydir/myfile.log.
It makes the io_savefile call dependant on the current working directory, and cwd is different for media and for pages.
The text was updated successfully, but these errors were encountered:
relative paths should be resolved relative to the data/meta/ directory
data/meta/
Sorry, something went wrong.
If the directory exists relative to the cwd (is_dir($dir)), then it does not get written to meta.
175 $dir = dirname($this->getConf('accesslog')); 176 $log = basename($this->getConf('accesslog')); 177 if($dir == '.' || $dir == '' || !is_dir($dir)){ 178 $dir = fullpath($conf['metadir'].'/'.$dir); 179 }
No branches or pull requests
The parameter accesslog works fine for absolute paths and for filenames only, but does not work for relative paths in the form: mydir/myfile.log.
It makes the io_savefile call dependant on the current working directory, and cwd is different for media and for pages.
The text was updated successfully, but these errors were encountered: