JFolder::create: Could not create directory - Warning! Failed to move file. Unable to find install package - Joomla Issue

While installing Extension in Joomla I was getting below error message -

JFolder::create: Could not create directory
Warning! Failed to move file.
Unable to find install package
 
Solution :-

1. Permission of Files and Directories -

Check the permission for all files and directories. Directory permission should be 755 and file permission should be 644. Below are the command for your reference -

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

( Note - Please make sure to fire the above commands under 'public_html' directory under cPanel. Don't fire it under cPanel >> File Manager. )

2. configuration.php file -
Open 'configuration.php' file of your Joomla Installation and update below path -

public $log_path = './logs';
public $tmp_path = './tmp';

It fixed my issue!
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to reset SSH port back to default port 22?

In some situations most of us may come across a problem that we are able to log into the WHM but...

How to setup the root login alert notification email?

Its very important to keep a check on your servers and who logs into the server, From security...

How to enable Open SSL on WHM?

Before enabling open SSL, you can check whether it is already enabled on your server. Please fire...

How to install mod_pagespeed on WHM?

'mod_pagespeed' is module of Apache which is nothing but plugin which is used for compressing the...

How to enable Hot Link Protection in cPanel?

To avoid other sites to use your website's bandwidth, you can enable the hot link protection....

Powered by WHMCompleteSolution