Wordpress FTP update trouble
Sometimes when you update wordpress or plugins, especially if you use safe mode, you can get errors like this:
1 | Enabling Maintenance mode. |
That’s because wordpress uses strange things for temporary directory. To cure it with non intrusive methods, just add
1 | define('WP_TEMP_DIR',ABSPATH.'wp-content/uploads/'); |
to the bottom of your wp-config-file. That’s it. Took me about two hours to figure out -_-
UPD. If you have an error “Division by Zero” - then try using the following modification:
1 | $path = $ABSPATH .’wp-content/uploads/’; |
Thank for this goes to Rookian (Rookian.com).