Hello Friends After a long time i put any changes on my blog. This time i have some some
tricks for fckeditors.
That is change in
FCKeditors/editors/filemanager/connectors/config.php
Step 1 -
$Config['Enabled'] = false ;
Change This line to
$Config['Enabled'] = true ;
Step 2 -
$Config['UserFilesPath'] = '/images/' ;
In my case my image folder is in my root. If you dont have this folder then it is created.
Step 3 -
$Config['UserFilesAbsolutePath'] = $_SERVER['DOCUMENT_ROOT'] . $Config['UserFilesPath'] ;
put this line for absolutepath.
Step 4 -
$Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . 'news/' ;
// Changes to desired folder name in my case news is
$Config['FileTypesAbsolutePath']['Image']= ($Config['UserFilesAbsolutePath'] == '') ? '' : $Config['UserFilesAbsolutePath'].'news/' ;
Change news to as subfolder name.
Thats It.......
Use FCK editor.And upload your images as your desired place.
When you want your uploaded images along with you text it have no problem. Use and Enjoy.
No comments:
Post a Comment