Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I had this issue, and long with it, I had the following text appear at the bottom of all my blog pages:

    Warning: Unknown: open(/tmp/sess_dbf497a416add3796ab73cc7663d8b93, O_RDWR) failed: Permission denied (13) in Unknown on line 0

    Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0

    I emailed my hosting provider about it, and they fixed it on their end, but didn’t give me any details about what the problem is.

    So I’d recommend you all contacting your host to see if there’s an issue on their side they can fix.

    Thanks! This page helped me as well.

    IndigoJo — This worked great for me, thanks! The only issue I found was that for completely empty fields, this will insert a ‘\n’ character. In particular, this breaks the auto-generated 55-word excerpts, because the excerpt is now considered non-empty. I fixed this by editing wp-includes/formatting.php, line 1483 (in wp_trim_excerpt). I changed:

    if ( '' == $text) {

    to

    if ( '' == trim($text)) {

    and now the excerpts show up.

    Re-saving an entry also fixes it, but I didn’t want to do that with all 800 imported entries. ??

Viewing 3 replies - 1 through 3 (of 3 total)