Hi,
So let me explain quickly my implementation:
I am in an Intranet and have got my webserver
On the root of this web server I have copied the fckeditor directory
As I have to manage portals for different companies I have different aliasses : Company1 , Company2 ...
for each company I wish to have a usefile so that uploads are not shared between the companies
I use php language
I tryed to do this:
in the config.php file :
// Path to user files relative to the document root.0 $Config['UserFilesPath'] = $_SESSION['FCKUserFilesPathREL'] ; // 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'] = '';
Re: fckeditor on root for multiple aliasses
I really dont get the difference between
baseHref
$Config['UserFilesPath']
and
$Config['UserFilesAbsolutePath']
Is there any clear explanation anywhere on this ?
Whatever value I put in these I point to the same user file in the connector directory ????
except for baseHref tah must point top the fckeditor directory on the root ...
Re: fckeditor on root for multiple aliasses
I am obviously completely wrong about a small detail . Whatever paths I put in those varaibles I invariably fall back in the same directory in the connector directory ...

I would appreciate just a bit more guidance regarding the paths ti userfiles ...
I nevertheless think that my method for attributing the $Config values is OK ???
I retreive the paths before the config php file is launched so the settings should be applyed correctly ...
Where am I wrong ????
Re: fckeditor on root for multiple aliasses
Solved !!!

Just forgott to add a session_start in config.php
Thanks for reading anyway