Joomla is the most flexible CMS developed so far. You can use the server extensions in the Joomla extension directory to add a completely dynamic website with various functions to the Joomla website. Extensions can be components, modules or plugins that can be installed using the extension manager.
The compressed file in the format of the zip can be uploaded via the extension manager which is very simple to do. But it sometimes results in showing errors if the configuration has not been done properly.
Most of the time the error occurs when the Joomla site is being moved from a host to another host. The reason behind this is, when we move a Joomla site from a server to another server, the log & tmp variables present in the configuration.php file contains the directory path of the previous host. Here is how to fix – JFolder::create: Could not create directory Error in Joomla.
The following steps can help you fix the issue
configuration.php
file for the Joomla through FTP.var $log_path = './logs';
var $tmp_path = './tmp';
This is a simple change that can help you solve the problem. Make sure to use the above code correctly. If you still encounter any problems, please comment below.