I have Wordpress installed. Host Provider 1 & 1. Now, if I tried to download a media file, it will show me an error without a temporary folder . I also define the fpr temp path directory. I link to this link link . And created the php.ini file in the home directory. The contents of my php.ini file
upload_max_filesize = 16M
upload_tmp_dir = on
upload_tmp_dir = /epigram.co.uk/tmp
I also tried changing the wp-config file and added this
define('WP_TEMP_DIR','/epigram.co.uk/tmp');
Also tried with the full path. as
define('WP_TEMP_DIR',$_SERVER['DOCUMENT_ROOT'].'/tmp');
Nothing helped me. Any help would be appreciated. thank
source
share