Ok, when you log into your FTP, you are at /home/.papina/mastera2004/ right?
I might be a little confused on your setup here... If you can access the root, there should be a folder that holds the main public part of the site... ex. www.example.com really is /home/user/example/public_html
So that would mean /home/user/example/ is the root for the user... Usually when you ftp, you are first sent here... Now /home/user/example/public_html is where all the files for www.example.com are stores to show.
Now what is the path to geeklog.dragonarmyguild.com when navigating your web directory from FTP?
When i log into my ftp, my root directory is home/.papina/mastera2004 . My config.php and all the other files are in the root directory. all the files that are suppose to be in public_html are in the folder geeklog.dragonarmyguild.com. So i do not have a public_html folder. That is what i thought i could change the public_html folder in the config.php file to see it as geeklog.dragonarmyguild.com instead. When i run the install it runs through it all except when it is suppose to go to the success.php file. In the address bar is shows the correct path name to where the success.php file is but it doens't want to show and it gives me that error.
The reason for it showing the correct path is because $_CONF['site_url'] = 'www.geeklog.dragonarmyguild.com'; is pointing to it...
Since that is the URL, Geeklog also needs to know the absolute PATH within the web server... So what you need to do is to go into your FTP program, from the root look for the path to the folder which you put all of your public_html files, I assume it is "/home/.papina/mastera2004/geeklog/" I'm assuming "/Mastera2004/" is the public_html folder...
So...
Text Formatted Code
$_CONF['path'] = '/home/.papina/mastera2004/';
$_CONF['path_html'] = '/home/.papina/mastera2004/geeklog/';
Let me know if that works...