Great work!
When i tried to install nukeWYSIWYG in 7.6pl3.1, in encountered the following problems
in mainfile.php :
Code:@include_once(INCLUDE_PATH."includes/kses/kses.php");
@include_once(INCLUDE_PATH."includes/FCKeditor/fckeditor.php");
|
gives include errors, file not found
When I remove INCLUDE_PATH. , Then this problem is solved
(above is working in RavenNuke, but not in 7.6pl3.1)
Next problem :
Displaying page not found in textarea's
Found cause in fckeditor.php :
Code:$strBP = dirname($_SERVER['PHP_SELF']);
if ($strBP{strlen($strBP)-1} != "/") $strBP .= "/";
$strBP .= 'includes/FCKeditor/';
|
this is giving :
http://includes/........, can't find file
and not :
http://www.mysite.com/includes/......
which gives the page not found error
when i comment out :
Code://$strBP = dirname($_SERVER['PHP_SELF']);
//if ($strBP{strlen($strBP)-1} != "/") $strBP .= "/";
$strBP = 'includes/FCKeditor/';
|
Everything is working perfectly
Above is also a problem in RavneNuke(latest version)
Is this a common error, or just my mistake.
Or because i'm testing on a local server
I followed the instructions provided in the readme.txt
Will there be any (security) problems with the editor when i leave the changes i made, or do you have a better solution
I am testing on a local server with apache 1.3 and php 4.4.2(?)
(easyphp1.8, upgraded php version)
grtz zero