Hello, I am trying to install the FCKeditor on a php page... I am not getting anything when I load the page, it is just blank and it is saying that the page is not found for the editor... All that it is giving me is a frame which says page not found, and I checked and the files are where they should be.. any ideas????
http://halescomputerservice.com/pya/test.php
--I did the installation steps on this page
http://docs.fckeditor.net/FCKeditor_2.x ... ration/PHP
and the code I have in the page is:
<?php include_once("fckeditor/fckeditor.php") ; ?> <html> <head> <title>FCKeditor - Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <form action="sampleposteddata.php" method="post" target="_blank"> <?php $oFCKeditor = new FCKeditor('FCKeditor1') ; $oFCKeditor->BasePath = '/fckeditor/' ; $oFCKeditor->Value = '<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>' ; $oFCKeditor->Create() ; ?> <br> <input type="submit" value="Submit"> </form> </body> </html>
Re: PHP Installation Issue
Re: PHP Installation Issue
-Dillon