Creating Folder Error и много текста...
Дело в том, что это бесплатный хост. И он не дружит с Инстантом. Он плохо видит абсолютные пути, и $_SERVER['DOCUMENT_ROOT'] для него не означает абсолютный путь. Нужно его заменять на: '/home/**ваш_аккаунт**/public_html/'.
В загрузчике и фскедитора, есть фишка типа нужно указать в какую папку грузить файл, в данном случае '/upload/', а потом абсолютный путь — вот тут проблема.
Проблема в файле: /plugins/p_fckeditor/fckeditor/editor/filemanager/connectors/php/config.php
Строки:
// Path to user files relative to the document root. $Config['UserFilesPath'] = '/upload/' ;
// Fill the following value it you prefer to specify the absolute path for the // user files directory. Useful if you are using a virtual directory, symbolic // link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'. // Attention: The above 'UserFilesPath' must point to the same directory. $Config['UserFilesAbsolutePath'] = '' ;