Hi. I have a site where FCKeditor is working properly on the server. I downloaded a copy of the site to my local machine (XPsp2, IIS 5) in order to do reformatting experiments. Php and mySql are working properly: everything about the site works except for the FCKeditor textbox. The textbox displays a "page not found" error inside the small box where the output should appear.
When I run the 'fckeditor.php' test program, it returns a blank page. Yes, I am invoking the PHP and not the .NET version. Thanks for any help!
- J
When I run the 'fckeditor.php' test program, it returns a blank page. Yes, I am invoking the PHP and not the .NET version. Thanks for any help!
- J
Re: "page not found" error in editbox (IIS, PHP)
Check if sBaseDir is set properly. Most likely you use a diffrent path on your local machine than on the server (e.g. relative instead of absolute)
Re: "page not found" error in editbox (IIS, PHP)
Thanks bruderjakob, that was the problem. There is something odd about how Dreamweaver/localhost IIS/PHP interact -- on the remote server '/' gives the site base, but on IIS-localhost '/' gives the top of the drive! So I hard-coded the path, for now, and will fix it on the upload. Thanks for pointing the way