Trying to use the V2 RC2 samples, just after download, I get this, on IE6 under XP Home SP2. I can't find anything similar on this BB, so I hope its not already answered.
PHP - sample 1
With the script as supplied, I get:
Notice: Undefined index: PATH_INFO in blah\blah\FCKeditor\_samples\php\sample01.php on line 41
I'm obviously not doing this right ... what setting is missing, does anyone think?
TIA
PHP - sample 1
With the script as supplied, I get:
Notice: Undefined index: PATH_INFO in blah\blah\FCKeditor\_samples\php\sample01.php on line 41
I worked out that if I change the $_SERVER vairable to "PATH_TRANSLATED", that eliminates the error, but then on the page, the input area is not visible or usable, and all I get is just the Submit button below a blank space. The HTML for the Iframe, where the text area would be, is just this: "<HTML></HTML>".
I'm obviously not doing this right ... what setting is missing, does anyone think?
TIA
RE: Various V2 RC2 errors
Looks like I've found what the problem is.
If the iframe references a URL via the file structure (e.g. C:/folder/FCKEditor ....), then nothing works properly. The base path has to be relative to my web server, without the "C:/" at the start of the URL.
So my attempt to use PATH_TRANSLATED was in fact causing the problem, because that variable is the full file structure name for the path.
Ho hum.