Re: Admin interface templates / themes for CakePHP

2010-09-23 Thread Thrilller
yea i did used

some free templates from
http://www.mostinspired.com/blog/2008/10/11/admin-templates/

with cakephp forms on these looks great





On Sep 23, 4:31 pm, Alex Bovey a...@bovey.co.uk wrote:
 Hi all,

 Has anyone used any nice admin interface templates with CakePHP?

 I'm trying to choose one from this list, but wondering whether anyone
 has done anything similar and done the necessary work to get the
 templates working nicely with Cake?

 http://www.ourtuts.com/34-outstanding-admin-panels-for-your-web-appli...

 Thanks all,

 Alex

 --
 Alex Bovey
 Web Developer | Alex Bovey Consultancy Ltd
 Registered in England  Wales no. 6471391 | VAT no. 934 8959 65

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
CakePHP group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en


Re: How to do just a view ?

2008-02-04 Thread Thrilller

Dear.
answers of all you question are there in cakephp manual.
you need to study it properly
http://manual.cakephp.org/
practics a bit by making sample applications Blog,Auth etc
there in manual and then try to switch you exiting code to cakephp.


On Feb 4, 3:21 pm, zeugme [EMAIL PROTECTED] wrote:
 Hi,

 I'm new in CakePHP, amazingly, I choose CakePHP for the power of MVC,
 SQL mapping ...
 but I need to deal with my home page witch have no model.
 This page however is not purely static, it contains PHP, SQL ...

 Where do I put such files ?
 /app/webroot ?
 or
 /app/view.pages ?

 What are the differences between those 2 folders ?

 This page also rely on some javascript framework (JQuery).
 Where do I put my jquery.js file ?
 If I put it inside app/webroot/js it doesn't appears to be taken into
 account ...
 It's like if I had to put that general js files at the physical root,
 the folder that contains /app.

 Maybe there is some doc I should read ? I read the manual, tuto,
 browse the bakery and did not found, but that do not mean it doesn't
 exists :-)

 Thanks for your help !
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Discussion on cake-apps-sites-in-the-wild

2008-01-25 Thread Thrilller

Hi to all bakers
please add

http://upfitness.co.uk/

a CMS , BLOG , Articles management website developed in cake 1.1.X
happy baking

--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Cake 1.1.X Model table name problem

2008-01-01 Thread Thrilller

hi
i too was getting this error

did what AD7six mentioned

but then i got table dont exits Error in model

even table was in DB

with lots tries

i solved it by deleting/clearing cache of Models in tmp  folder

i hope this will work

but y CAKE wasnt detecting a DB change like new table??
something to search for



On Dec 31 2007, 5:52 pm, Maken [EMAIL PROTECTED] wrote:
 i m a novice in cakephp
 i make a model with the name of lead

 class Lead extends AppModel
 {
 var $name = 'Lead';
 var $useTable = 'leads';/// changing to abc table works fine

 }

 and maken the controller like thaht

 class LeadsController extends AppController
 {
 var $name = 'Leads';

 var $uses = array(Lead);
 var $helpers = array('html','javascript');

 function index() {

 }

 }

 add made a view file index.thtml to output some dummy info

 when i run the file the flowing erreor accor

 Notice: Undefined variable: javascript in pathtoinstalliaction  \app
 \views\layouts\default.thtml on line 9

 Fatal error: Call to a member function link() on a non-object in
 pathtoinstalliaction \app\views\layouts\default.thtml on line 9

 i put the some other table name in $useTable var  and it works fine

 but when i put leads in table name is gives me about error

 is this error is due to TABLE structure (which i think so)
 or something else

 what should i do ??/

 thanks in Advance
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: including javascript file in default layout

2007-11-29 Thread Thrilller

use
   echo $javascript-link('functions');

not
 echo $javascript-link('functions.js');

i hope this will solve ure problem




On Nov 29, 6:51 pm, sMAshdot [EMAIL PROTECTED] wrote:
 Hello!

 I have added the Javascript Helper to the $helpers array in my
 controller,
 and have a file called functions.js in the app/webroot/js/ directory.
 The server (apache2) has it's document root pointing at app/webroot/
 (production mode).

 now

 ?php echo $javascript-link('functions.js') ? in the default.thtml
 layout renders
 script type=text/javascript src=/js/functions.js

 but firefox's error console talks about a syntax error in the file and
 shows me what it thinks to be my functions.js ... an html document :-(

 I wonder if it is a problem with cakephp routes, or the webserver
 which goofs up the request for the file. Maybe, am I simply doing
 so  mething wrong?
--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Multiple validation on a single field - CakePHP 1.1.17

2007-11-07 Thread Thrilller

i am sure  VALID EMAIL

will handle empty field also.

i tried here and its working fine
on empty field and on non valid email data.

just go on with VALID EMAIL



--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: CRM o CMS in CakePHP

2007-11-06 Thread Thrilller

pagebakery the CMS i think

but i m also looking for a CRM app in CAKEPHP

let me know if you got any
thanks

On Nov 5, 3:21 pm, Pisinho [EMAIL PROTECTED] wrote:
 Hi,

 recently i find a CRM o CMS make with cakephp, is not 'new Drupal' , but i
 don't save a link.

 Can I help me ? Do you have a link ?

 Thanks in advance.


--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Where i can find rossoft blog tutorial

2007-09-19 Thread Thrilller

Hi to all bakers

Where i can find rossoft blog tutorial.
i visited the rossoft site but the download link not working anymore

can any post the tutorial files Gz file with code and tutorial

thanks in advance


--~--~-~--~~~---~--~~
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 options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---