Re: Safari 4 Keeps Logging Me Out....

2009-05-18 Thread ChicagoPlanesTrains

Which platform? I've been using Safari 4 on Mac OS X (10.4.11) for a
month or two now with no issues. I'm using database sessions for both
development and production and have yet to be logged out
unexpectedly.

Which browsers/versions do you have working?

On May 17, 2:05 am, Kyle Decot kdec...@gmail.com wrote:
 I'm not sure if anyone else is experiencing this problem but Safari 4
 keeps logging me out. Sometimes it won't do it for almost 10 minutes
 and then other times it will do it immediately after logging in. Any
 ideas on how to fix this? I'm using DB for sessions by the way but
 have tried PHP and cake and am getting the same results.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Safari 4 Keeps Logging Me Out....

2009-05-18 Thread ChicagoPlanesTrains

What is Session.checkAgent set to in your app/config/core.php? If it's
true, try setting it to false. I believe this has helped with random
log-out. Not sure if these were browser specific, but it might just do
the trick. Good luck!

  Any ideas on what I can do to diagnose the problem?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Lightwindow support with cakephp

2009-02-06 Thread ChicagoPlanesTrains

It's not pretty, but here's how I was able to make lightwindow work
(after the $html-css('lightwindow')) in my view:

a href=?php echo(IMAGE_MED_DISPLAY . $image['Image']['filename']); ?
 class=lightwindow page-options title=?php echo($image['Image']
['filename']);? caption=?php echo($image['Image']['title']); ??
php echo $html-image(IMAGE_SMALL_DISPLAY . $image['Image']
['filename'], array('class'='thumb_view')); ?/a

MAGE_MED_DISPLAY and IMAGE_SMALL_DISPLAY are constants in my
bootstrap.php file. This is for a thumbnail image that links to
lightwindow.

Hope this helps...

On Feb 3, 8:22 am, Abhishek abhishek...@gmail.com wrote:
 Hi,
 Does cakephp support lightwindow... the thing is when i give an
 absolute url like
 a href=http://www.test.com/listings/view/20; class=lightwindowTest/a

 it works fine ..  but when i use the helper

 ?php echo $html-link('View',array
 ('controller'='test','action'='temp1'),array
 ('class'='lightwindow')); ?

 it doesnt work .. basically i think its not working with relative
 url .. or it something that am doing wrong

 Abhishek

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---