Re: Disabling form text editor

2010-04-13 Thread Dewayne Pinion
something to do with it as well) the fields became normal inputs, which work great. Still learning! :) On Tue, Apr 13, 2010 at 10:21 PM, cricket zijn.digi...@gmail.com wrote: On Apr 13, 1:46 pm, Dewayne Pinion dpin...@gmail.com wrote: Not sure what you call those editors, but anyway. I have

Disabling form text editor

2010-04-13 Thread Dewayne Pinion
are standard input boxes? It is baffling me how these 3 can be different. -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message

Editor form Scroll Bar missing

2010-01-19 Thread Dewayne Pinion
like they are going to display, but then disappear. There is sufficient content in the editor forms for the scroll bars to be needed, but I just can't see them Any suggestions? -- Dewayne Pinion Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related

Re: Help with Redirect

2009-12-18 Thread Dewayne Pinion
the info to the edit view: ?php echo $html-link('edit', array('action' = 'edit', 'id' = $compatible['Compatible']['id'], 'product_id' = $product['Product']['id']))? -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com Check out the new CakePHP

Help with Redirect

2009-12-17 Thread Dewayne Pinion
)); However it redirects me to: productsadmin/compatibles Any ideas? If I need to provide additional details please let me know. -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com Check out the new CakePHP Questions site http://cakeqs.org and help others

Re: Help with Redirect

2009-12-17 Thread Dewayne Pinion
and...@kende.com wrote: echo 'product_id is: ' . $product_id; die(); -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
ideas? On Mon, Nov 23, 2009 at 9:47 AM, ddaffy dda...@gmail.com wrote: take a look at: http://book.cakephp.org/view/172/Authentication chnology.com http://www.trentontechnology.com -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com -- You

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
-input('password'); echo $form-end('Login'); ? any ideas? On Mon, Nov 23, 2009 at 9:47 AM, ddaffy dda...@gmail.com wrote: take a look at: http://book.cakephp.org/view/172/Authentication chnology.com http://www.trentontechnology.com -- Dewayne Pinion Web/Software Guy

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
is users_controller.php and it´s in app/controllers directory. I hope this can help you. 2009/11/24 Dave davidcr...@gmail.com Can you be more specific about when you get this error? What is the URL cake is trying to access On Tue, Nov 24, 2009 at 8:58 AM, Dewayne Pinion dpin...@gmail.comwrote: I have been

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
() { $this-redirect($this-Auth- logout()); } } On Tue, Nov 24, 2009 at 11:10 AM, josu jauregui jos...@gmail.com wrote: Hi! Is your mod_rewrite activated?. Can you send me the users_controller file to make some tests?. Bye! 2009/11/24 Dewayne Pinion dpin...@gmail.com Hi Josu, Thank you

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
:34 AM, josu jauregui jos...@gmail.com wrote: Hi! I tests this code and it works!!! Do you have some Router::connect in the config/routes.php related with the users_controller? I have many more ideas. 8-( 2009/11/24 Dewayne Pinion dpin...@gmail.com Hi Josu, It should be enabled. I do

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
wrote: What´s the url do you try to enter? (complete url) Are you using admin routing? 2009/11/24 Dewayne Pinion dpin...@gmail.com Hi Josu, Here is the contents of my routes.php file (below are the only two uncommented lines): Router::connect('/', array('controller' = 'pages', 'action

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
To be honest I am not sure about admin routing. Learning as I go a bit here.. :) On Tue, Nov 24, 2009 at 11:57 AM, josu jauregui jos...@gmail.com wrote: What´s the url do you try to enter? (complete url) Are you using admin routing? 2009/11/24 Dewayne Pinion dpin...@gmail.com Hi Josu

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
::connect('/admin', array('controller' = 'pages', 'action' = 'index', 'admin' = true)); -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
I did not, but I tried uncommenting it and still got the same error. On Tue, Nov 24, 2009 at 12:22 PM, josu jauregui jos...@gmail.com wrote: Do you have uncommented line Configure::write('Routing.admin', 'admin'); in core.php?? -- Dewayne Pinion Web/Software Guy Trenton Technology http

Re: Creating a login screen

2009-11-24 Thread Dewayne Pinion
{ var $name = 'Users'; var $components = array('Auth'); funciton login() { } function logout() { $this-redirect($this-Auth-logout()); } } ? On 24 Nov 2009, at 19:17, Dewayne Pinion wrote: Hi Josu, It should be enabled. I do have other pages/controllers that are working

Creating a login screen

2009-11-23 Thread Dewayne Pinion
Hey All, I am wanting to create a login page for a cake app that allows a user to add products/pictures to their pages. I have the app worked out, but not sure on how to create the login. Any links or advice someone could give me to get me started? Thanks -- You received this message because

Re: Creating a login screen

2009-11-23 Thread Dewayne Pinion
Great! Thank you On Mon, Nov 23, 2009 at 9:47 AM, ddaffy dda...@gmail.com wrote: take a look at: http://book.cakephp.org/view/172/Authentication On Nov 23, 3:18 pm, Dewayne Pinion dpin...@gmail.com wrote: Hey All, I am wanting to create a login page for a cake app that allows a user

Re: CakePHP Questions - Now out of beta!

2009-11-11 Thread Dewayne Pinion
. To post to this group, send email to cake-...@googlegroups.com. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.comcake-php%2bunsubscr...@googlegroups.com . For more options, visit this group at http://groups.google.com/group/cake-php?hl=. -- Dewayne Pinion

Re: Edit form attempting INSERT INTO statement and fails

2009-11-10 Thread Dewayne Pinion
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~--~~~~--~~--~--~--- -- Dewayne Pinion Web/Software Guy Trenton Technology http://www.trentontechnology.com -- You received this message because you are subscribed

Re: Error trying to open my cake pages

2009-10-26 Thread Dewayne Pinion
Should be the cake 404, as I have a custom 404 for the rest of the site. On Fri, Oct 23, 2009 at 11:20 PM, Dr. Loboto drlob...@gmail.com wrote: What 404 page do you see, Apache or Cake one? In first case it is mod_rewrite problem. In second - the problem is in your app. Probably in routes or