I cannot get FCk to work, I have looked in _Test, but I am still confused.. What shall I do with my HTML files to get it work..
<Body>
Some Text
</body>
And when it works, how do I limt users to edit files, password or what ??
It is NOT to upload and then it works.. Can someone, please, come with an useful answer and the usual "look in _Test" stuff !!!
<Body>
Some Text
</body>
And when it works, how do I limt users to edit files, password or what ??
It is NOT to upload and then it works.. Can someone, please, come with an useful answer and the usual "look in _Test" stuff !!!
RE: How to use/install/give access to edit ??????
this.BasePath = '/admin/FCKeditor/' ;
then in your html page insert
<script src="FCKeditor/fckeditor.js" type="text/javascript"></script>
in the head tag
to insert the fckeditor instead of a normal
<textarea name="mytext"></textarea>
at your edit fomular
<script language="javascript">
<!--
oFCKeditor = new FCKeditor('mytext') ;
oFCKeditor.Create() ;
//-->
</script>
and of course do a password protection f.e. .htaccess for the admin area
for the image upload etc you have to modify also some path varibales
RE: How to use/install/give access to edit ??????
And where do I find admin area ??
RE: How to use/install/give access to edit ??
its just a suppose of mine to make a admin directory, where I put the files to edit the site.
then you can easily make a .htaccess to protect the directory.
RE: How to use/install/give access to edit ??????