Hi, I'm not sure what exactly is the problem but I have no problems accessing FCKEditor with phpList on my system (xp sp1) but when I use my client's system which has norton firewall on xp sp2, all i get is a small red cross at the corner and when I switch the firewall off, FCKEditor still doesn't load up this time displaying a small icon only. Is there a work around for this?
Tue, 12/21/2004 - 07:42
#1

RE: FCKEditor and Firewall problems
1.) Norton is blocking IFrames
2.) IE is blocking IFrames
3.) Javascript is turned off
All I can suggest at the moment is to try the following:
- Disable the built-in popup blocker in IE (Tools -> Popup blocker)
- Ensure Javascript (Active Scripting) is turned on
- Disable Norton temporarily
- Adding the site you are trying to access to your trusted domains list.
I would recommend writing a quick test page to see if Norton or IE is blocking some elements.
testiframe.htm
test.htm
<html> <head> </head> <body> <div id=myDiv name=myDiv style="display: none;"> If you can see this, Javascript is enabled </div> <script language="javascript"> document.getElementById('myDiv').style.display = "block"; </script> <iframe width=200 height=200 src="testiframe.htm"></iframe> </body> </html>