Greetings All,
I have built a custom CMS for my site and I wanted to use FCKEDITOR for my interface.
My site structure is as follows:
http://www.mydomain.com/index.php
http://www.mydomain.com/admin/
http://www.mydomain.com/admin/fckeditor/
All my administration scripts to add pages and content are located in the admin folder. The coding is PHP.
What must I type in my scripts to get FCKEDITOR to turn all my textarea fields into rich text?
Tue, 10/16/2007 - 14:56
#1
Re: Problem with Installation
Here is the code I am using as well:
Re: Problem with Installation
I believe this is what you're asking about but I'm not sure: http://www.fckeditor.net/forums/viewtopic.php?f=6&t=7195
Re: Problem with Installation
Re: Problem with Installation
Re: Problem with Installation
Re: Problem with Installation
Hope this helps, good luck
Re: Problem with Installation
Can you plug my information with my directory layout and files into an example? If you don't mind.
My site structure is as follows:
http://www.mydomain.com/index.php
http://www.mydomain.com/admin/
http://www.mydomain.com/admin/test.php
http://www.mydomain.com/admin/fckeditor/
My file, test.php exist inside the /admin/ folder.
What will I need to add to test.php to get it to use FCKEDITOR?
Here is test.php:
<?php
include("./fckeditor/fckeditor.php") ;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Test</title>
</head>
<body>
<form action="sampleposteddata.php" method="post" target="_blank">
<textarea name="test" cols="" rows=""></textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>
Re: Problem with Installation
Re: Problem with Installation