Usually I can fix issues like this but for some reason this is just not working.
I downloaded the newest release uploaded it to
/includes/
for my website.
on the root i have a page (say index.php) that attempts to create an FCKeditor:
I want to use the jsp version since it has that nice replaceTextarea function.
OK page is done but when I go to view it on the web I get the following where the textarea was before putting in fck:
Not Found
The requested URL /includes/fckeditor/editor/fckeditor.php was not found on this server.
Apache/2.2.3 (Red Hat) Server at ....
What I am doing wrong?
I downloaded the newest release uploaded it to
/includes/
for my website.
on the root i have a page (say index.php) that attempts to create an FCKeditor:
<script type="text/javascript" src="/admin/includes/fckeditor/fckeditor.js"></script> ... ... ... <textarea name="sSubCatDesc" cols="30" rows="10"></textarea> ... ... ... <script type="text/javascript"> window.onload = function() { var oFCKeditorDec = new FCKeditor( 'sSubCatDesc' ) ; oFCKeditorDec.BasePath = "/includes/fckeditor/" ; oFCKeditorDec.ReplaceTextarea() ; } </script>
I want to use the jsp version since it has that nice replaceTextarea function.
OK page is done but when I go to view it on the web I get the following where the textarea was before putting in fck:
Not Found
The requested URL /includes/fckeditor/editor/fckeditor.php was not found on this server.
Apache/2.2.3 (Red Hat) Server at ....
What I am doing wrong?
Re: fckeditor/editor/fckeditor.php was not found on this server.
The server was set up to change all *.html to .php
I guess it needs this because there has been some crazy custom programming on it to facilitate the shopping cart that is on the site.
modrewrite in the virtual host of the website in IIS
Since my shopping cart needed this special programming I changed all the .html in the FCK download to .php and everything seems to be working well.