Log message #114940

# At Username Text
# Aug 10th 2008, 07:50 mrConfused for strings its nice... but what if i want more ?
# Aug 10th 2008, 07:49 kalileo mrConfused: I think flash is supposed to do exactly that, to echo the string
# Aug 10th 2008, 07:49 kalileo ACTION is using $this->Session->setFlash() for strings only an it's working fine
# Aug 10th 2008, 07:48 kalileo what a pity, it's gone
# Aug 10th 2008, 07:47 mrConfused maybe every1 is still sleepin
# Aug 10th 2008, 07:46 mrConfused i'd like to do session->flash but that does an automatic echo and i need to capture the contents and loop through to create my ordered lists...
# Aug 10th 2008, 07:45 mrConfused i could write over it with an empty value.. but thats lame
# Aug 10th 2008, 07:45 mrConfused what i noticed is that setFlash only takes a string as a parameter.... if i want to pass it an array and then read it in my view like : session->read("Message.msite")... it works, but it still remains in the session and theres no remove function. :-(
# Aug 10th 2008, 07:43 mrConfused any1 using $this->Session->setFlash() ?
# Aug 10th 2008, 07:43 mrConfused hello
# Aug 10th 2008, 07:35 kaotisch ah ok thx, now its working :)
# Aug 10th 2008, 07:34 lqdice__ its the PHP_SESSID or w/e
# Aug 10th 2008, 07:34 lqdice__ yeah the session->id() var is changed everytime
# Aug 10th 2008, 07:31 kaotisch ok... setting security lvl to medium and session mgmt to cake seems to solve the problem... anyone knows whats ment by "CakePHP session IDs are also regenerated between requests if 'Security.level is set to 'high'" ?
# Aug 10th 2008, 07:23 kalileo ACTION thinks that Firefox 3 indeed has a caching problem
# Aug 10th 2008, 07:23 kaotisch seems like i have to debug that on my own, thanks for your advise Iqdice!
# Aug 10th 2008, 07:22 kaotisch while in firefox i stay logged in and just get redirected to the login screen randomly on certain actions
# Aug 10th 2008, 07:21 kalileo paramS: that's the magic of cakePHP, you will find a lot more of these powerful ways to get your app developed fast
# Aug 10th 2008, 07:21 kaotisch yeah i should do that... but... now i found out in IE i can log in, get redirected to the action i want, it says im logged in (displaying the username from auth->user()), and if I reload now (just pressing refresh) i get redirected back to login screen
# Aug 10th 2008, 07:19 lqdice__ hm im not sure.. i would try to put some debug messages to see if the session still exists at that page then you can at least narrow down whether its the session or auth
# Aug 10th 2008, 07:18 kaotisch 8640 and sec lvl high so it should be (24*60*60)
# Aug 10th 2008, 07:17 lqdice__ whats your session timeout set to ?
# Aug 10th 2008, 07:17 kaotisch Iqdice, Its really strange... i open an javascript window with an i frame that loads a view to an action (for example /hotels/list). Everything fine. I close the window and open it again, still it loads fine. A third time it sends me to the login page. The fourth time i close and open again, it loads the page as wanted!
# Aug 10th 2008, 07:15 lqdice__ kaotisch: well if the ajax call doesnt pass the auth then its not gonna allow it to go to page
# Aug 10th 2008, 07:15 paramS i am newbie here , i declared associations in my model but didnt knew that i can use it the way you just mentioned ... now i have modified my code to $this->MusicAlbum->MusicSong->findAllbyAlbumId($id) ... and its working :)
# Aug 10th 2008, 07:15 kjell is there any tutorial on how to finalize/prepare CakePHP apps for production/release? Especially with notes about caching practices with 1.2.
# Aug 10th 2008, 07:15 kalileo paramS: if you say var $uses = ('MusicAlbum'); you tell the controller to use that Model _only_. Despite that you can solve that by listing all the models you wanna use there, better do what we all say here and learn to understand and use Associations
# Aug 10th 2008, 07:13 kaotisch Iqdice, the auth comp. should be fine...its a "everything is forbidden" configuration with the Auth comp. in app_controller.
# Aug 10th 2008, 07:12 lqdice__ paramS: you dont have to do uses for everything you want to use if your associations are set up correctly and you are splitting the code up like you are supposed to
# Aug 10th 2008, 07:12 kaotisch paramS: take a look at the chapter about model association in the manual. In many cases its way more elegant to receive your data
# Aug 10th 2008, 07:10 lqdice__ i had a problem when using swfupload where the session was not passed through the ajax call .. but if you are using standard cakephp ajax calls it should pass it.. you can force to pass the session by passing $session->id() w/ your ajax call then doing in your beforefilter: $this->Session->id($passedId); $this->Session->Start() ... but make sure your Auth isnt just set up wrong and not allowing you to get to that action, try to access
# Aug 10th 2008, 07:10 paramS working now , thanks :)
# Aug 10th 2008, 07:10 paramS even though it was under MusicAlbumController, i had to mention that again if i used $uses variable
# Aug 10th 2008, 07:10 kaotisch Iqdice: yes i have it in one controller
# Aug 10th 2008, 07:09 paramS kaotisch << just noticed that when i declare var $uses = ('MusicSong'); ( in the MusicAlbum ) ... the error was coming on $this->MusicAlbum->findAllByAlbumId($id) ...... that error was taken care of when i used ... var $uses = ('MusicAlbum','MusicSong');
# Aug 10th 2008, 07:08 lqdice__ did you include the request handling component?
# Aug 10th 2008, 07:08 lqdice__ hmmm
# Aug 10th 2008, 07:07 kaotisch no I just checked again after you asked, its not used in any controller
# Aug 10th 2008, 07:06 lqdice__ cause security can cause those problems
# Aug 10th 2008, 07:06 lqdice__ you dont have var $components = array('Security') anywhere?
# Aug 10th 2008, 07:06 kaotisch Well I dont call any Security functions by hand then