Complete cheatsheet January 29, 2006
Posted by chmod775 in HTML/XHTML/XML, MySQL, PHP Programming, javascript.1 comment so far
Every developer needs a reference and/or a cheatsheet.
This one came up in del.icio.us search and is very complete.
http://www.petefreitag.com/item/455.cfm
Do you have a cheatsheet you still reference by?
Secure or Not Secure; That’s the question (IN IE!) November 2, 2005
Posted by chmod775 in javascript.add a comment
In one of my web applications I build is, after logon, a secure connection with a SSL certificate. After a while of developing I released a new version. From that point on Internet Explorer on the PC gives us much trouble by putting up a box which was the annoying “This page contains both secure and non secure items” message.
After checking all the links, images, stylesheet links, jsavascript links and favicons whcih they are ok, I was puzzled! What the F*CK ‘not secure’! Give me more info! (Duh, you are screaming at your screen with IE in front!…)
After a while of searching I ran into a site of ‘Experts exchanges‘ which is a very, full of adverts, annoying site. But it helped me a lot.
The conclusion was that in a datePicker javascript I use a iframe was dynamicly build to fix a bug in IE. But when a frame has no src attached to it it will assume that it is ‘about:blank’. which is not secure. After adding the source pointing to a blank EXISTING file everything was ok.
Firefox on PC and Mac give me no notice of this security issue.