I end up with below error when I try to install a component,module or plugin.
JFolder::create: Could not create directory
What could be th
Now I found two solutions for resolving this issue,and both of them has been worked very well:
Solution One:
First find the exact absolute path to your tmp folder by using this trick:
Create a PHP file in your website root,for example path.php
Place this snippet of code in the file and hit the save button
Navigate to yourdomain.com/path.php in your browser
From now on:
"Absolute Path(you've just found)"/tmpInsert this line of code in your .htaccess file: php_value open_basedir NULL
This solution has been worked very well for me,and it's doesn't deal with any Joomla's core file hacking.
Solution Two:
/public_html/tmp to just tmp$obd = ini_get('open_basedir'); Comment out that line with // at the beginning so it becomes://$obd = ini_get('open_basedir');