Search found 4 matches
- Thu Nov 29, 2007 9:37 am
- Forum: Joombie Coding Q/A
- Topic: Re-starting a joomla session (1.0.x)
- Replies: 4
- Views: 1107
Re: Re-starting a joomla session (1.0.x)
Hm. I solved the problem with a work-around. I simply created a separate, non-Joomla file (receiver.php) to receive the incoming files. This prevents IE users from being logged out when using authentication levels 2 and 3. To make sure that this isn't a spoofed request to receiver.php, I had to crea...
- Mon Nov 26, 2007 1:39 pm
- Forum: Joombie Coding Q/A
- Topic: Re-starting a joomla session (1.0.x)
- Replies: 4
- Views: 1107
Re: Re-starting a joomla session (1.0.x)
True. Setting Session Authentication Method to Level 1 does seem to solve the issue for IE users.
But certainly, there must be some sort of way to restart the session for levels 2 and 3?
Ford
But certainly, there must be some sort of way to restart the session for levels 2 and 3?
Ford
- Wed Oct 24, 2007 8:12 pm
- Forum: Joombie Coding Q/A
- Topic: Re-starting a joomla session (1.0.x)
- Replies: 4
- Views: 1107
Re-starting a joomla session (1.0.x)
I'm developing a component that allows upload of pictures via a flash plugin. I tried to get some of my questions anwered in another a subforum without luck, so I'll try to narrow it down a little bit. When uploading the file, the flash plugin does not transmit session/cookie data so there is no way...
- Wed Oct 17, 2007 7:04 pm
- Forum: Joombie Coding Q/A
- Topic: png transparency in J1.5
- Replies: 5
- Views: 1257
Re: png transparency in J1.5
Add this to your template somewhere inside the section: <!--[if lt IE 7]> <script language="JavaScript"> function correctPNG() // correctly handle PNG transparency in Win IE 5.5 & 6. { var arVersion = navigator.appVersion.split("MSIE") var version = parseFloat(arVersion[1]) if (...