I’m having and issue with one of my sites
This is being displayed before body content. I’ve disabled wp-security, and deleted wp-super-cache and related files. Still exists. I’m not able to log into my WP install. I’ve installed the latest version of Enfold.
Warning: session_start() [function.session-start]: open(/tmp/sess_609bac42dcfe804005c13abd339e2cd0, O_RDWR) failed: Permission denied (13) in /home/ttpwine/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/ttpwine/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/ttpwine/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
I’m out of ides. Please help!
Hi blacktagdesign!
The warning session_start(): session_start() [function.session-start]: open(/tmp/sess_609bac42dcfe804005c13abd339e2cd0, O_RDWR) failed: Permission denied (13) tells you that the server can’t write or create a session file because the permission of the tmp folder doesn’t allow it. You must contact the server administrator and ask him to fix the folder permissions. Alternatively you can deactivate all theme sessions with this code (add it to the theme functions.php):
add_theme_support('avia_no_session_support');
but this may break the portfolio breadcrumbs which sometimes rely on sessions. In addition it doesn’t solve the issue that your server can’t write/use php sessions at the moment.
Cheers!
Peter
Thanks! Resolved