Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

after installing All in One Seo plugin - and choosing a theme, the website displays error message above theme content:

the error message says - that there is permission denied in the following code line ( Bold part ) in the file /plugins/all-in-one-seo-pack/aioseop.class.php - ( line 986 ) something to do with logs:

function log($message) {
    if ($this->do_log) {
        error_log(date('Y-m-d H:i:s') . " " . $message . "\n", 3, $this->log_file); // ERROR
    }
}

why could there be access denied

share|improve this question

closed as too localized by toscho Dec 18 '12 at 23:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

it looks like it's trying to write to a log file and it doesn't have the necessary permissions to do so. it also looks like there's an option to disable the log file, have a look in the plugins options section. it may also give you a clue as to where it's trying to write this file.

share|improve this answer
yes, that was the case - plugin logging settings – virb Jul 23 '11 at 18:08

Not the answer you're looking for? Browse other questions tagged or ask your own question.