Re: Team members invitation

2011-11-18 Thread Nitin Hittalamani
Hi,

I am a PHP Developer and interested in cake php

On Sat, Nov 19, 2011 at 12:37 AM, Abdulhakim Haliru wrote:

> Hi Guys,
>
> I am looking for two cakePHP pros and   a Designer to join a web
> project (startup) . finished product is targetted at African Market.
>
> if interested, kindly send me an email (hakim...@gmail.com).
>
> just for details you might wanna check out : http://www.leproghrammeen.com
> .
>
> many thanks guys.
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>



-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: spit out the sql code just for one line?

2011-10-31 Thread Nitin Hittalamani
Use Debug Kit..It will help to see all the executed SQL and u will come to
know ...!!!

On Tue, Nov 1, 2011 at 8:49 AM, Ryan Schmidt wrote:

>
> On Oct 31, 2011, at 03:16, AD7six wrote:
>
> > On Oct 31, 6:04 am, iphone5  wrote:
> >> $this -> Question-> deleteAll( array( 'survey_question_id' =>
> >> $question[ 'SurveyQuestion'][ 'id' ] ) );
> >> Is there any way to show the sql code for this line?
> >> I know if I turn on the debug = 2 it will show all the sql code for
> >> the whole page but I just want to do it for a single line of code.
> >
> > You put half the answer in the question.
>
> Since you seem to know it, what is the entire answer? Are you suggesting
> he should set debug=2 and just ignore all the other lines in the output
> that he's not interested in, or is there a more direct answer to his
> question hidden in your reply?
>
>
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>



-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: Layouts

2011-10-16 Thread Nitin Hittalamani
Yup...You need to mention if you are using other lay out instead of default.
This is what i used to do.

On Mon, Oct 17, 2011 at 3:37 AM, Meroe Kush  wrote:

> Hello all!
>
> ** **
>
> I am looking for advice on a way to pass the currently used layout into the
> next accessed controller.  Should I just use a session and set it and
> reference it in each of the methods or is there a way to look at the layout
> from the previous controller and pass to the requested controller?
>
> ** **
>
> For example:
>
> ** **
>
> /users -> var $layout = ‘admin’
>
> /contacts -> should use the admin layout since it was called from the users
> controller which uses the admin layout
>
> ** **
>
> /events -> var $layout = ‘default’
>
> /contacts -> should use the default layout since it was called from the
> events controller which uses the default layout
>
> ** **
>
> ** **
>
> Make sense?  Advice?
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>



-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: Undefined property Component::$Session

2011-09-19 Thread Nitin Hittalamani
Hi,

I think your Session handler is not loading properly.

On Mon, Sep 19, 2011 at 5:44 PM, heohni <
heidi.anselstet...@consultingteam.de> wrote:

> No, it wasn't.
> I added this line
>
> class TranslatorComponent extends Object{
>var $components = array('Session');
>
> But still the same error message ...
>
> it drives me mad :-(
>
>
>
> On 19 Sep., 14:10, Thomas Ploch  wrote:
> > Is the SessionComponent loaded in the TranslatorComponent?
> >
> > http://book.cakephp.org/view/996/Creating-Components#Including-Compon...
> >
> > Kind regards
> > Thomas
> >
> > Am 19.09.2011 14:07, schrieb heohni:
> >
> >
> >
> > > Hi,
> >
> > > even with this in app_controller:
> > > var $components = array('Session', 'P28n', 'Translator',
> > > 'RequestHandler', 'Email', 'MathCaptcha');
> > > it's not changing the error message.
> >
> > > On 19 Sep., 14:00, Thomas Ploch  wrote:
> > >> Load the SessionComponent as the first component in the
> > >> AppController::$components array, since the other components
> (obviously)
> > >> depend on the SessionComponent.
> >
> > >> Kind regards
> > >> Thomas
> >
> > >> Am 19.09.2011 13:58, schrieb heohni:
> >
> > >>> Hi,
> >
> > >>> I struggle now for 2 days on this problem:
> >
> > >>> app_controller:
> > >>> var $components = array('P28n', 'Translator', 'RequestHandler',
> > >>> 'Session', 'Email', 'MathCaptcha');
> >
> > >>> my controller:
> > >>> class SprachenController extends AppController{
> > >>> var $components = array('Session', 'Translator');
> >
> > >>> my component:
> > >>> class TranslatorComponent extends Object{
> > >>> where I get at this point an error message:
> > >>> debug($this->Session->read());
> >
> > >>> The error sounds like
> > >>> Undefined property: TranslatorComponent::$Session [APP\controllers
> > >>> \components\translator.php, line 8]
> > >>> Fatal error: Call to a member function read() on a non-object
> >
> > >>> I have really no idea how to solve this, I goggled so many hours to
> > >>> find an example where the same problem happend, but never found
> > >>> something helpful...
> >
> > >>> Is there anybody out there who can see what I am doing wrong?
> >
> > >>> Thanks
> > >>> heohni
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>



-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: image insertion

2011-09-13 Thread Nitin Hittalamani
Hi,

Mention relative image path in src field.

On Tue, Sep 13, 2011 at 3:55 PM, Sivaramakrishnan S
wrote:

>
>
> hi,
>
> my code n template:
>  foreach($bookid as $id){
>   //   echo 'book image path:'.$id['Book']['front_page'];
>  $imgpath = $id['Book']['front_page'];
>   //   echo $imgpath;
>   echo '';
>   echo ' href="ViewBook.php?view=H&bid='.$id['Book']['book_id'].'">';
>   echo ' height="84">';
>   echo '';
>   echo ' href="ViewBook.php?view=H&bid='.$id['Book']['book_id'].'">';
>   echo $id['Book']['book_name'].'';
>   echo '';
>
>
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: Which is the better IDE for cakePHP?

2011-09-13 Thread Nitin Hittalamani
Hi,


I prefer PHP Eclipse


On Tue, Sep 13, 2011 at 3:20 PM, Tran Cao Thai
wrote:

> You should open the source page and see whether the path is correct or not
>
>
> On Tue, Sep 13, 2011 at 3:50 PM, AD7six  wrote:
>
>>
>>
>> On Sep 13, 8:38 am, clod  wrote:
>> > I use free PHP IDE  http://www.codelobster.comCodelobster PHP Edition
>>  with
>> > special CakePHP plug-in for Autocompelte for Helpers, Components and
>> > Behaviors .
>>
>> I use a crayon and a recently painted wall
>>
>> --
>> Our newest site for the community: CakePHP Video Tutorials
>> http://tv.cakephp.org
>> Check out the new CakePHP Questions site http://ask.cakephp.org and help
>> others with their CakePHP related questions.
>>
>>
>> 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
>>
>
>  --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>



-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: image insertion

2011-09-13 Thread Nitin Hittalamani
HI,

mention the code...!!! So i can see and let you know ...!!!

On Tue, Sep 13, 2011 at 3:21 PM, Tran Cao Thai
wrote:

> You should open the source page and see whether the path is correct or not
>
>
> On Tue, Sep 13, 2011 at 4:38 PM, Sivaramakrishnan S  > wrote:
>
>>
>> hi,
>>
>>  Thanks for the reply, I tried the both, but no use.
>>
>>  --
>> Our newest site for the community: CakePHP Video Tutorials
>> http://tv.cakephp.org
>> Check out the new CakePHP Questions site http://ask.cakephp.org and help
>> others with their CakePHP related questions.
>>
>>
>> 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
>>
>
>  --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>



-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: See the design

2011-08-14 Thread Nitin Hittalamani
Yup..If u r using Dream viewer then its possible...

On 8/15/11, nOLL  wrote:
> Hi,
>
> is there any way to view the design of the webpage using cakephp in
> dreamweaver? or is there any software to view it.Since, i use phpStorm
> for the programmming part.
>
> Thanks.
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>


-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: Auto submit the form using java script in cakephp

2011-08-04 Thread Nitin Hittalamani
Hi,Thanks for reply

I am looking for the code where with out submit button i need to
submit the page by using java script.

On 8/4/11, theclansman  wrote:
> Hi Nitin,
>
> I'm not sure, but maybe you are after something like that:
>
> echo $form->input('fieldname', array('options'=>$optionsarray,
> 'onChange'=>'javascript:this.form.submit()'));
>
> Regards
> theclansman
>
> On Aug 4, 4:47 pm, Nitin  wrote:
>> Hi,
>>
>> Please any one guide me how to submit the form automatically using
>> java script in cakephp.
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>


-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Auto submit the form using java script in cakephp

2011-08-04 Thread Nitin
Hi,

Please any one guide me how to submit the form automatically using
java script in cakephp.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Re: Regarding First Data Global Gateway

2011-07-25 Thread Nitin Hittalamani
Hi,

Initially i want to use the connect 2.0.please give me instruction
that how i should get connect to FDGG. ?

On 7/26/11, Jens Dittrich  wrote:
> They provide a webservice api, is it that you want to use? To me it looks
> like you want to read and write data to the webservice so you should connect
> to it in a model. Wrap your calls to the API there, this is how I would do
> it.
> If you want to reuse it then write a plugin...
>
> --
> Our newest site for the community: CakePHP Video Tutorials
> http://tv.cakephp.org
> Check out the new CakePHP Questions site http://ask.cakephp.org and help
> others with their CakePHP related questions.
>
>
> 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
>


-- 
Thanks and Regards,

Nitin Hittalamani.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Regarding First Data Global Gateway

2011-07-25 Thread Nitin Hittalamani
Hi every one.

This is nitin.I want to use the First Data Global Gateway in cake php
but i am unable to find out how to configure the payment gateway.Like
which file to put where ?

Please reply soon.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Can I use a helper in bootstrap.php

2011-03-27 Thread Nitin Khanna
Hi!

I need to use the geoip helper in bootstrap.php. Is is possible.

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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


Authentication problem with ProxyPass

2009-08-03 Thread Nitin

Hi,

I am facing peculiar problem, we run a demo server for cleints, which
is accessible from outside on port 0. Now the setup is such that
there is a gateway server abc.xyz.com, here we have a routing setup
from 0 port to port 80. So abc.xyz.com:0 -> 192.168.0.xxx:80

For this we have also configured the apache in abc.xyz.com to use
proxy pass.

ProxyPass/demo http://192.168.0.xxx/demo
ProxyPassReverse/demo http://192.168.0.xxx/demo


Now the problem is that while everything works fine when we access the
site using http://192.168.0.xxx/demo, but the login fails when we
access it using http://abc.xyz.com:0/demo.

Tried all the three available session management options (php, cake,
database) but nothing seems to work.

Does, anyone has a solution ?

Thanks for your help.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---