Problem in Adding Modules in Joomla
Problem in Adding Modules in Joomla
In this example we will use the following ftp url:
ftp.example.com
and the site url:
http://www.example.com
Steps:
Login to your site ftp account to modify the following file:
configuration.php
Modify the following variable to:
var $ftp_root = 'public_html';
Don’t leave it empty and don’t add “/” at the end of the directory name or the error will continue to appear.
If the program was installed in subdirectory use the following:
var $ftp_root = 'public_html/subDirectory';
Don’t add “/” at the end of the path or the error will continue to appear.
Modify also the following variables:
var $ftp_host = 'ftp.example.com';
var $ftp_port = '21';
var $ftp_user = 'ftpuser';
var $ftp_pass = 'ftppass';
var $ftp_enable = '1';
To prevent PHP files from working or any files that may harm your uploading folders for the...
Problem in Uploading Files to WordpressIn this example the site path will be:/home/userAnd...