21 Things You Must Know About CakePHP - Newbie tips

2007-05-12 Thread stacey
I found this article rather useful...just thought I'd pass it along. http://cake-php.blogspot.com/2006/09/21-things-you-must-know-about-cakephp.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group.

Re: Need help for pushing CakePHP for a high traffic project

2007-05-12 Thread Dr. Tarique Sani
On 5/13/07, nate <[EMAIL PROTECTED]> wrote: > Also 50,000 hits are a time? Well he did clarify it as 50,000 concurrent users which will translate to much much lower hits at a time. Tarique -- My motto for everyone else - "Just shut up, damnit!!" ==

Re: Need help for pushing CakePHP for a high traffic project

2007-05-12 Thread Dr. Tarique Sani
On 5/13/07, Chris Hartjes <[EMAIL PROTECTED]> wrote: > love for someone to show me how one PHP web framework is better suited > for building high traffic web sites over another. +1 for that and since I too having built and maintaining exactly 3 sites which get more than 10 million hits a day and

Re: Need help for pushing CakePHP for a high traffic project

2007-05-12 Thread nate
Wow, I'm flattered that people still think I follow the mailing list on anything resembling a frequent basis. If you look at the main page of the Google Group site here, you'll notice that there's a page entitled "Cake Apps/Sites in the Wild", the link to which is: http://groups.google.com/group

Re: Ever heard of tags.ini.php ?

2007-05-12 Thread jonathan.snook
the tags.ini.php file was a 1.1 thing that you had to copy over from the /cake/ folder. For 1.2, check out: http://www.thinkingphp.org/2007/02/21/use-html-401-in-cakephp-12/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

svn updates

2007-05-12 Thread Greg
After searching the groups to find a way of syncing my app with cakes nightly builds, I found a very informative approach by Felix Geisendörfer at http://www.thinkingphp.org/2006/09/15/dessert-4-keep-your-cake-fresh-use-svn-head/ I would like to try to use a vendor branch update, but I am having

Re: Customizing routes

2007-05-12 Thread Aaron Shafovaloff
Yes, I have read the manual, but it doesn't address the aforementioned. I'm trying to accomplish this with: Router::connect('/:group/:curriculum/:controller/:action/*'); But even when I send additional parameters to Router::url it doesn't work: Router::url(array('controller'=>'facilitators','a

Re: Disapearing text in IE

2007-05-12 Thread Vladimir
that's the common IE problem make not Title but Title --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group,

Re: Use php in js files?

2007-05-12 Thread Vladimir
assigning js var is better because .js file can be cached --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this gro

Very strange unbindModel issue...

2007-05-12 Thread stacey
Hi all, I am having a problem unbinding my model. Really, it makes no sense to me at all. I assumed this would be a no brainer, but it just won't work correctly. First off, I have tables 'conditions' and 'remedies', then i have an association table 'conditions_remedies'. Here are the association

Re: Need help for pushing CakePHP for a high traffic project

2007-05-12 Thread Chris Hartjes
On 5/10/07, PD <[EMAIL PROTECTED]> wrote: > > I am pushing for cake to be used in one very large project which is > going to be extremely high traffic. Probably around 50,000 hits at a > time. I need some more information regarding the scaling and > performance to present my case to the board. Cou

Re: Load Javascript on the fly

2007-05-12 Thread dom
Thanks a lot. I'll give that a go. Dom On May 12, 8:08 pm, stacey <[EMAIL PROTECTED]> wrote: > You can call like this from the view: > > js('customborders/cb'); ?> > > and you need to include the 'head' helper in your controller: > > var $helpers = array('Html', 'Head'); // html is always needed

Re: leading slash problem

2007-05-12 Thread bingo
nevermind, i was able to solve the problem...the problem was with my .htaccess on my localserver, the files had a different structure and because of that I add another line in .htaccess and that was giving the problem Regards, On May 12, 9:56 am, bingo <[EMAIL PROTECTED]> wrote: > hi, > > Today

Re: Need help for pushing CakePHP for a high traffic project

2007-05-12 Thread CraZyLeGs
https://addons.mozilla.org/ is a high traffic website I'd guess. On May 11, 8:27 am, majna <[EMAIL PROTECTED]> wrote: > Are you using full view cache? > U have 12 js, > usehttp://rakaz.nl/item/make_your_pages_load_faster_by_combining_and_com... > > On May 11, 12:07 am, PD <[EMAIL PROTECTED]> wro

Re: Load Javascript on the fly

2007-05-12 Thread stacey
You can call like this from the view: js('customborders/cb'); ?> and you need to include the 'head' helper in your controller: var $helpers = array('Html', 'Head'); // html is always needed On May 12, 12:53 pm, dom <[EMAIL PROTECTED]> wrote: > Hi everybody. > I wonder if it is possible to loa

Re: selectTag

2007-05-12 Thread stacey
It's the 3rd param... selectTag ($fieldName, $optionElements, $selected=null, $selectAttr=array(), $optionAttr=null, $showEmpty=true, $return=false) description of params here: http://api.cakephp.org/class_html_helper.html#dc661e84e1710023d94691fad33f40ec On May 10, 8:08 pm, peterhf <[EMAIL P

Load Javascript on the fly

2007-05-12 Thread dom
Hi everybody. I wonder if it is possible to load a javascript file outside the section of the layout. I have only one layout, default.thtml, as all the calls are Ajax calls. So I have only one section... But I don't want to load the whole of my javascript file at once. It would be more sensible

leading slash problem

2007-05-12 Thread bingo
hi, Today I moved my development from local windows machine to a remote linux server and seems to getting some installation issues. On my remove server, the setup is as follows /home/ cake/ app cake vendor public_html/ <-- webroot

Re: You are not authorized to view this page - on localhost using uniserver

2007-05-12 Thread rnady
put: Options +FollowSymLinks at the top of your .htaccess file. That should do it. -Rnady On May 12, 4:36 am, rtanz <[EMAIL PROTECTED]> wrote: > any help pls? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake

Re: is there any chance that using cakephp in apache not support mod_write

2007-05-12 Thread stacey
There is a section covering this in the Blog tutorial: http://manual.cakephp.org/appendix/blog_tutorial Scroll down to Section 5 On May 12, 5:58 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > is there any chance that using cakephp in apache not support > mod_write ? > > thx a lot --~--

is there any chance that using cakephp in apache not support mod_write

2007-05-12 Thread [EMAIL PROTECTED]
is there any chance that using cakephp in apache not support mod_write ? thx a lot --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To

Re: You are not authorized to view this page - on localhost using uniserver

2007-05-12 Thread rtanz
any help pls? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more