converting array to string

2013-09-25 Thread anya chd
i am displaying modules and their parts according to modules on the same pahe. $module=$this-Module-find('all', array('conditions'= array('isactive'='0'))); $this-set('module',$module); i need another find condition so i can compare that part is related to module and display accordingly

Ajax request

2013-09-25 Thread webgaertner
Hello, I have a problem with a search field on my site and I hope you can help me. I got a table called Clients with some information like firstname, lastname, adress etc. and all MVC files. For testing I use the Client index function. In my view file I have a input field where I want to search

DebugKit function/array problem (Function name must be a string ; ToolbarComponent.php)

2013-09-25 Thread Connar Pierce
Hey all, I got a weird issue. I've got two identical (Same config, etc etc. Copied webroot to another site/domain) installation of cakePHP 2.4.1, with DebugKit 2.2.1. Only thing different is the domain they load from. Site one works great. Site two does not. I get - *Fatal error*: Function

Ajax Request

2013-09-25 Thread webgaertner
Hello, I have a problem with a search field on my site and I hope you can help me. I got a table called Clients with some information like firstname, lastname, adress etc. and all MVC files. For testing I use the Client index function. In my index view file I have a input field where I want to

Re: converting array to string

2013-09-25 Thread Mike Karthauser
hi On 25 Sep 2013, at 06:30, anya chd anyam...@gmail.com wrote: change: $modulepart=$this-Modulepart-find('all',array('order',$order,'conditions'=array($conditions))); to

Cascading (Dependent) Drop Down list.

2013-09-25 Thread Raks
Hi, I have a sql table having columns id, parent_id and title. All items with with parent_id =0 are parents and should appear in a dropdown list. That I have done. Now I want another dropdown that on selection of parent, shows all the children of that parent. I am working on cakephp MVC

Re: DebugKit function/array problem (Function name must be a string ; ToolbarComponent.php)

2013-09-25 Thread Simon Males
Same machine? Make sure you $prefix in core.php is unique. On Wed, Sep 25, 2013 at 5:06 AM, Connar Pierce connarpie...@gmail.comwrote: Hey all, I got a weird issue. I've got two identical (Same config, etc etc. Copied webroot to another site/domain) installation of cakePHP 2.4.1, with

Re: Cascading (Dependent) Drop Down list.

2013-09-25 Thread Gaurav Matta
You will need.to.use js helper here I suppose you are using cake 2.0 see this link http://itfeast.blogspot.in/2013/06/cakephp-20-create-0bserve-field.html?m=1 On 26-Sep-2013 5:33 AM, Raks kaur@gmail.com wrote: Hi, I have a sql table having columns id, parent_id and title. All items with

Re: Ajax request

2013-09-25 Thread Gaurav Matta
You will need to rewrite the autocomplete code on page you are requesting on the fly for search. If I am correct your search is also Ajax based... On 25-Sep-2013 6:47 PM, webgaert...@gmail.com wrote: Hello, I have a problem with a search field on my site and I hope you can help me. I got a

Re: Ajax request

2013-09-25 Thread Gaurav Matta
For better solution do not refresh the button but only the search result. On 25-Sep-2013 6:47 PM, webgaert...@gmail.com wrote: Hello, I have a problem with a search field on my site and I hope you can help me. I got a table called Clients with some information like firstname, lastname, adress

Re: Sending videos via CakeResponse::file()

2013-09-25 Thread Gaurav Matta
It's better to convert video to flv format before buffering which is universally acceptable.you can use php ffmpeg module to perform the same to convert.check here http://itfeast.blogspot.in/2013/08/best-flv-conversion-parameters-from.html?m=1 On 24-Sep-2013 10:49 PM, Tobias Welz