Yea... It helped I think..... I also put all the files into the public_html folder & that worked. Now on step 4 - it tells me - The config file could not be written.
I've found the file.... There is an odd part to it.. here is the file.. the odd bit is the -
$Config['DeniedExtensions']['File'] = array('php','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','dll','reg')
Here is the whole file:
<?php
/*
* FCKeditor - The text editor for internet
* Copyright © 2003-2004 Frederico Caldeira Knabben
*
* Licensed under the terms of the GNU Lesser General Public License:
*
http://www.opensource.org/licenses/lgpl-license.php *
* For further information visit:
*
http://www.fckeditor.net/ *
* File Name: config.php
* Configuration file for the File Manager Connector for PHP.
*
* Version: 2.0 FC (Preview)
* Modified: 2005-02-08 12:01:53
*
* File Authors:
* Frederico Caldeira Knabben (fredck@fckeditor.net)
*/
global $Config ;
// Path to user files relative to the document root.
// SECURITY TIP: Uncomment the following line to set a fixed path.
// include main config
include("../../../../../../../../../includes/global.inc.php");
$Config['UserFilesPath'] = '/images/' ;
$Config['AllowedExtensions']['File'] = array() ;
$Config['DeniedExtensions']['File'] = array('php','asp','aspx','ascx','jsp','cfm','cfc','pl','bat','exe','dll','reg') ;
$Config['AllowedExtensions']['Image'] = array('jpg','gif','jpeg','png') ;
$Config['DeniedExtensions']['Image'] = array() ;
$Config['AllowedExtensions']['uploads'] = array('jpg','gif','jpeg','png') ;
$Config['DeniedExtensions']['uploads'] = array() ;
$Config['AllowedExtensions']['Flash'] = array('swf','fla') ;
$Config['DeniedExtensions']['Flash'] = array() ;
$Config['AllowedExtensions']['Media'] = array('swf','fla','jpg','gif','jpeg','png','avi','mpg','mpeg') ;
$Config['DeniedExtensions']['Media'] = array() ;
?>
Any idea's.
I've tried all the permission option's, I understand those. But there seems to be a problem with the config.php....