Page 376 of 211,270, showing 20 records out of 4,225,381 total, starting on record 7,501, ending on 7,520
# | Username | Text | |
---|---|---|---|
# | Aug 9th 2008, 15:27 | barduck | AD7six: ok, that does work but only if you remember to put '...AS count' in the 'fields' :) |
# | Aug 9th 2008, 15:29 | ADmad | VolVE: you have the wrong impression... |
# | Aug 9th 2008, 15:29 | VolVE | curious |
# | Aug 9th 2008, 15:30 | VolVE | well, ok then |
# | Aug 9th 2008, 15:30 | VolVE | thanks :D |
# | Aug 9th 2008, 15:36 | mukesh | not able to install on wamp geting errors.. |
# | Aug 9th 2008, 15:37 | mukesh | The FileEngine is being used for caching. To change the config edit APP/config/core.php waht to edit here??? |
# | Aug 9th 2008, 15:47 | TonkaTruck | What might be a good way to detect the current prefix route prefix? I can think of a hackish way but all I see in Router:: is prefixes() which returns an array of existing prefixes regardless of which prefix is currently in use. |
# | Aug 9th 2008, 15:49 | jaredhoyt | VolVE: you may be referring to Controller::flash() ... and i have "heard" people recommend using Session->setFlash() and session->flash() over Controller::flash() but have seen any deprecation plans documented |
# | Aug 9th 2008, 15:49 | jaredhoyt | *haven't |
# | Aug 9th 2008, 15:49 | VolVE | jaredhoyt: hmm, perhaps that was it... curiopus |
# | Aug 9th 2008, 15:49 | VolVE | flash just seems a bit limited, at least in 1.1 |
# | Aug 9th 2008, 15:49 | ADmad | TonkaTruck: pr($this->params) |
# | Aug 9th 2008, 15:50 | TonkaTruck | ADmad: I was just noticing Router::getParams() has a current argument. Let me try that. |
# | Aug 9th 2008, 15:57 | TonkaTruck | ADmad: this is what I did, it seems to work nicely, too: http://bin.cakephp.org/view/946036934 |
# | Aug 9th 2008, 15:58 | ADmad | TonkaTruck: did u check what i suggested ? |
# | Aug 9th 2008, 16:00 | TonkaTruck | ADmad: I do not know how to implement that. Is pr() a function in the controller class? |
# | Aug 9th 2008, 16:01 | ADmad | TonkaTruck: its a general func... short for print_r |
# | Aug 9th 2008, 16:02 | TonkaTruck | Oh I see. I been using var_dump. |
# | Aug 9th 2008, 16:05 | TonkaTruck | ADmad: I see. Probably better to use $this->params like you say. |