Crazy
Questions Asked
1 answer
Framework Optimizations
We’re trying to optimize the memory usage.
Cakephp is running on a small device comparable with a...
Answers
1
Only one sesssion per user
Don't use the IP the address, what about proxy's for example?
Best way is is to use database sessions, a database is made to query on so it's the best candidate. When your user logs on, set the...
0
Query table in views
When developing it might be handy to enable debugging in only one controller.
Then you can always put:
Configure::write('debug', 2) in that controller. That will show the debug info again.
Same goes...
0
Index page is blank after new record entry
If it's blank, then most likely a fatal error happened.
Have you turned on debugging?(Configure::write('debug', 2)) and checked your apache logs?
Probably a mistake in the controller Add method.
Comments
- Member since:
- November 11th, 2009
- Last active:
- 2010-07-08 08:04:31
- Questions asked:
- 1
- Answers:
- 4
- Correct Answers:
- 2
- Comments:
- 1
Index page is blank after new record entry
what did you put in your controller?