Page 380 of 211,270, showing 20 records out of 4,225,391 total, starting on record 7,581, ending on 7,600
# | Username | Text | |
---|---|---|---|
# | Aug 9th 2008, 16:54 | cpierce | how does one tell a page not to load the <!-- 0.66 seconds--> |
# | Aug 9th 2008, 16:55 | Matt1 | cpierce: set debug to 0 |
# | Aug 9th 2008, 16:55 | cpierce | any other way matt? |
# | Aug 9th 2008, 16:55 | markstory | cpierce: no. |
# | Aug 9th 2008, 16:55 | cpierce | i have an ajax page i'm trying to get a value off of |
# | Aug 9th 2008, 16:56 | cpierce | and it puts that in there and its messing it up |
# | Aug 9th 2008, 16:56 | Matt1 | cpierce: you doing something like an ajax request ? |
# | Aug 9th 2008, 16:56 | cpierce | matt: yeap |
# | Aug 9th 2008, 16:56 | markstory | use RequestHandler and RequestHanlder->isAjax() |
# | Aug 9th 2008, 16:56 | Matt1 | cpierce: you can set the debug to 0 for just that one action |
# | Aug 9th 2008, 16:56 | markstory | to turn down debug. |
# | Aug 9th 2008, 16:58 | cpierce | Matt1: how do i do that |
# | Aug 9th 2008, 16:58 | cpierce | $this->debug = 0; |
# | Aug 9th 2008, 16:59 | Matt1 | Configure::write('debug', 0); |
# | Aug 9th 2008, 16:59 | markstory | Configure::write('debug', 0); |
# | Aug 9th 2008, 16:59 | cpierce | markstory: may i pm you? |
# | Aug 9th 2008, 16:59 | markstory | sure. |
# | Aug 9th 2008, 17:05 | pyite[A] | Hello. I have a situation where I am using CakePHP and want to have a model that has no tables, but Cake is aware of a potential table structure. For example, I want Cake to act as if I was using a database, but when read/write operations come around, I would actually substitute routines to read/write from flat XML files. Is that possible? |
# | Aug 9th 2008, 17:07 | markstory | pyite: yes. but not easily. |
# | Aug 9th 2008, 17:07 | Matt1 | pyite[A]: yes. though could be that there is a better solution for your need |