nettuts might be searching for an author for a cakephp from scratch series

2011-05-18 Thread skimmas
Hi. I was just going around net.tutsplus.com and saw this comment from Jeffrey Way: Me, personally? I’m running out of room to remember how to use all these frameworks. :) But I wouldn’t be against a from-scratch series on Cake or Kohana. Just haven’t found the right author yet to create the

Re: Media Plugin — Trouble with filtered files

2011-04-25 Thread skimmas
ups... Ups, my bad. Should have been Configure::write('Media.filter.image.s', array( On Apr 25, 1:47 am, skimmas skim...@gmail.com wrote: in my config/core.php I added /* CAKE MEDIA PLUGIN */ require APP . 'plugins/media/config/core.php'; Configure::write('Media.filter.document.s', array

Re: Help! CakePHP runs great in localhost but doesn't even shows up in remote Server ...

2011-04-24 Thread skimmas
I would try things like: does uploading a single index.html file with some contents to the remote server work? does uploading a single index.php (with something like ?php echo hello ?) work? does creating an .htacces with some simple rules work? And if by any chance you do have access to the

Media Plugin — Trouble with filtered files

2011-04-24 Thread skimmas
in my config/core.php I added /* CAKE MEDIA PLUGIN */ require APP . 'plugins/media/config/core.php'; Configure::write('Media.filter.document.s', array( 'convert' = 'image/jpeg', 'compress' = 1.5, 'fit' = array(100, 100) )); Yet the media plugin is still generating a png image. Do you

Re: Great Job on The Cookbook

2011-02-03 Thread skimmas
I think that there are a few problems in terms of design. The «Welcome to the Cookbook» bar seems to short for that text size and the search bar seems like it belongs from somewhere else. But I think the improvements in terms of usability are great. The menu is a lot more responsive. Thank you

css on top javascript on bottom $scripts_for_layout

2011-01-27 Thread skimmas
Hi. Not that I'll die if I don't get a solution for this but it got me curious. I'm experimenting with creating plugins and $this-requestAction(); The thing is how can I make the css from that plugin being output on the main layout $scripts_for_layout and not inside the plugin code? -- Our

Re: ModelBaker

2010-12-12 Thread skimmas
I've been looking around their forums think the project is dead. :/ On Dec 11, 6:21 pm, dtemes dte...@gmail.com wrote: It looks great, but isn't cakephp version 1.2.1 a bit outdated? I would love to see a Windows and Linux version On 10 dic, 18:36, cake-learner sh.koiz...@gmail.com wrote:

Re: ModelBaker

2010-12-10 Thread skimmas
I'm hopping to hear some feedback from this app. It seems to speed up the development quite a while, and to be a quite well polished app. Is anyone using it? Is it as good as it looks? Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related

Re: Learn CakePHP

2010-10-30 Thread skimmas
I think Adam's approach is actually a very wise one if you're not familiar with MVC. I only seldom work on web development projects and had tried for a couple of times to learn cakephp without success. Then tried CodeIgniter and it's so much easier to learn. Eventually I tried cake again and

Re: Help with foreach

2010-10-01 Thread skimmas
I'm not sure I completely understand your problem but why not use for instead. that way you can increment for how much you want. On Oct 1, 7:23 am, Dave Maharaj m...@davemaharaj.com wrote: I have my find('list') which gives me my standard array (ordered alphabetically) (                

Re: Execute Linux commands from controller

2010-09-20 Thread skimmas
I think that what you are looking for is the php command exec() http://php.net/manual/en/function.exec.php On Sep 20, 11:10 am, Urs ajnur...@gmail.com wrote: Hi.. How can we execute linux commands from the controller? like: Example1: cat file1.txt Example2: ifconfig | grep eth | awk