Hi All,
I am trying to alter the default Image URL that is brought back once you have uploaded an image. At the moment /image/'imagename'.jpg is returned in the Image URL, but I want to change it to http://www.sitename.co.uk/... etc. Any ideas how you do this?
Thanks for your help.
Thu, 06/26/2008 - 15:12
#1
Re: Default Image URL
Re: Default Image URL
Re: Default Image URL
This one for instance: http://dev.fckeditor.net/browser/FCKedi ... config.php
Re: Default Image URL
a little more hand holding required...
so I change these?
Config.FileTypesPath["Image"] = Config.UserFilesPath & 'image/' ;
Config.FileTypesAbsolutePath["Image"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPath & 'image/') ) ;
to
Config.FileTypesPath["Image"] = Config.UserFilesPath & 'http://www.sitename.co.uk/media/images/image/' ;
Config.FileTypesAbsolutePath["Image"] = iif( Config.ServerPath eq "", de(""), de(Config.ServerPath & 'http://www.sitename.co.uk/media/images/image/') ) ;
yes?
Re: Default Image URL
Re: Default Image URL
Re: Default Image URL
Re: Default Image URL
Re: Default Image URL