yogesh kumar wants to chat

2009-03-13 Thread yogesh kumar

---

yogesh kumar wants to stay in better touch using some of Google's coolest new
products.

If you already have Gmail or Google Talk, visit:
http://mail.google.com/mail/b-60d09f8474-0eaaf653b5-adfd8dacdca90889
You'll need to click this link to be able to chat with yogesh kumar.

To get Gmail - a free email account from Google with over 2,800 megabytes of
storage - and chat with yogesh kumar, visit:
http://mail.google.com/mail/a-60d09f8474-0eaaf653b5-28c18ad1ca

Gmail offers:
- Instant messaging right inside Gmail
- Powerful spam protection
- Built-in search for finding your messages and a helpful way of organizing
  emails into "conversations"
- No pop-up ads or untargeted banners - just text ads and related information
  that are relevant to the content of your messages

All this, and its yours for free. But wait, there's more! By opening a Gmail
account, you also get access to Google Talk, Google's instant messaging
service:

http://www.google.com/talk/

Google Talk offers:
- Web-based chat that you can use anywhere, without a download
- A contact list that's synchronized with your Gmail account
- Free, high quality PC-to-PC voice calls when you download the Google Talk
  client

Gmail and Google Talk are still in beta. We're working hard to add new features
and make improvements, so we might also ask for your comments and suggestions
periodically. We appreciate your help in making our products even better!

Thanks,
The Google Team

To learn more about Gmail and Google Talk, visit:
http://mail.google.com/mail/help/about.html
http://www.google.com/talk/about.html

(If clicking the URLs in this message does not work, copy and paste them into
the address bar of your browser).

--~--~-~--~~~---~--~~
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: Best way to organize CSS and JS

2009-03-06 Thread yogesh kumar
use css and javascript in layout  default.php

--~--~-~--~~~---~--~~
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 use contained models in conditions?

2009-03-06 Thread yogesh kumar
class Post extends AppModel {

var $name = 'Post';
var $hasMany=array('Comment');

function beforeSave()
{
if(!isset($this->data['Post']['id']))
{
if($this->data['Post']['url']=="")
{
$title_low=strtolower($this->data['Post']['title']);
$this->data['Post']['url']=Inflector::slug($title_low, '-');
}
}
return true;
}
}

--~--~-~--~~~---~--~~
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 use contained models in conditions?

2009-03-05 Thread yogesh kumar
give me an idea of cake php query i want to  create a link of values get
from table and if values are same then it become one link and click that
link show all values

--~--~-~--~~~---~--~~
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 use contained models in conditions?

2009-03-05 Thread yogesh kumar
how i get same name values id from table
pls tell me

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



Cake bake command on Ubuntu 8.04

2009-03-03 Thread Yogesh

Hi All,

I have created a database, and  I want to run the cake bake command on
Ubuntu 8.04
I don't know anything about cake bake command neither on Windows nor
on any linux platform
Can anyone please help from start to end to run Cake Bake command ?
I don't know any anything about this method.

Thanks in advance !!!

Regards,
Yogesh ( India )

--~--~-~--~~~---~--~~
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 Data Sanitization in CakePHP 1.2.9?

2009-02-10 Thread Yogesh

Hi,
I want to avoid the script tag so that no one do the hack or insert
the records using script tag.
I don't know what it should be called exactly, but in my database some
times records get inserted automatically and continuously about 100 to
150 records, these are seems to be inserted using some script and all
the records are like some javascript code or some links. and if Model
does this automatically how can these records get inserted. or I am
understanding the Data sanitization meaning in wrong way.


On Feb 10, 2:20 pm, Miles J  wrote:
> The model automatically sanitizesdatawhen inserting and selecting
> queries.

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



How to do Data Sanitization in CakePHP 1.2.9?

2009-02-10 Thread Yogesh

Hi  All
Can any one please tell how I can do the data sanitization for the
users submitted data?
and which is better place to write it, is it in Controller or in
Model?

I don't know anything about reagarding data sanitization.
I need it from start to end means which helper or libraries i need  to
include for this
Please help me out !!

Thanks in advance



--~--~-~--~~~---~--~~
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: Destroying cakephp session on closing browser window

2008-11-19 Thread Yogesh

Thnaks for your reply. I have used the javascript method on onunload.
in that i call the cakephp function using new Ajax.Requesthandler
function but it is not working. Session is still not get destroyed


On Nov 18, 9:53 pm, thatsgreat2345 <[EMAIL PROTECTED]> wrote:
> Yeah multiple tabs in firefox and such the session , meaning the user
> still browsing is still alive. Thus they don't get destroyed. As for
> the ajax it might work, have to do something like those annoying
> popups that popup when you try to leave some sites. Which they use the
> onunload property in the body tag.
>
> On Nov 18, 6:49 am, "Liebermann, Anja Carolin"
>
>
>
> <[EMAIL PROTECTED]> wrote:
> > Hi Yogesh,
>
> > As far as I know this is not possible. This is also the reason why you can 
> > set a session timeout. The server and therefore your application has no 
> > clue if your user still views teh browser window or if the windows has bee 
> > closed, the PC shut down etc.
>
> > Maybe you can do a kind of ping via AJAX to check if there is still someone 
> > there, but I am not fit with AJAX. But normally you have a session timeout 
> > and if the user is just leaving without properly checking out the session 
> > is loast after some time, depending on your settings.
>
> > Bye Anja
>
> > -Ursprüngliche Nachricht-
> > Von: cake-php@googlegroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von 
> > Yogesh
> > Gesendet: Dienstag, 18. November 2008 13:02
> > An: CakePHP
> > Betreff: Destroying cakephp session on closing browser window
>
> > Hi Can anyone please help me out?
> > I wan't to destroy the session when user closes the Browser windows.
> > my cakephp version is 1.2 beta
> > Explanation: If user is logged in and closes the Browser without log out 
> > then next time if he opens the Browser then it should not store the 
> > session. Currently if I close the browser then it does not store the 
> > session in IE6 only but if I have open the multiple instances of fire fox 3 
> > or IE7 and only close the browser or tab then it does destroy the Session.
> >      Waiting for your sugessions
> >      Thanks in Advanced
>
> > Regards
> > Yogesh- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: Destroying cakephp session on closing browser window

2008-11-19 Thread Yogesh

Thnaks for your reply. I was also thinking to uset the database table
to maintain the session but now changing the session maintaing method
may will need to work whole things again, but thanks once again for
your reply

On Nov 18, 9:05 pm, "Marcelo Andrade" <[EMAIL PROTECTED]> wrote:
> On Tue, Nov 18, 2008 at 9:02 AM, Yogesh <[EMAIL PROTECTED]> wrote:
>
> > I wan't to destroy the session when user closes the Browser windows.
> > my cakephp version is 1.2 beta
> > Explanation: If user is logged in and closes the Browser without log
> > out then next time if he opens the Browser then it should not store
> > the session. Currently if I close the browser then it does not store
> > the session in IE6 only but if I have open the multiple instances of
> > fire fox 3 or IE7 and only close the browser or tab then it does
> > destroy the Session.
> >     Waiting for your sugessions
> >     Thanks in Advanced
>
> In my applications (non-Cake) I create a db table like "onlineusers"
> with a user id and a timestamp of last app request.  Each php script
> have a code that checks the difference of the user's timestamp and
> the actual timestamp is more than some time of inactivity, and I
> delete the user record from this table.  Otherwise, I just update the
> user timestamp.
>
> Just an idea.
>
> --
> MARCELO DE F. ANDRADE (aka "eleKtron")
> Belem, PA, Amazonia, Brazil
> Linux User #221105
>
> [EMAIL PROTECTED] ~]# linkshttp://pa.slackwarebrasil.org/
--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Destroying cakephp session on closing browser window

2008-11-18 Thread Yogesh

Hi Can anyone please help me out?
I wan't to destroy the session when user closes the Browser windows.
my cakephp version is 1.2 beta
Explanation: If user is logged in and closes the Browser without log
out then next time if he opens the Browser then it should not store
the session. Currently if I close the browser then it does not store
the session in IE6 only but if I have open the multiple instances of
fire fox 3 or IE7 and only close the browser or tab then it does
destroy the Session.
 Waiting for your sugessions
 Thanks in Advanced

Regards
Yogesh


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



for numbering the records of pagination

2008-04-06 Thread yogesh

Hi,
I am new to the cakephp. i want to show the result using the
pagination but the problem is that when we go on next page the serial
number of records again start from 1 but i want to continue these from
the last records number
i.e i have SR.NO | name | address| .. here oi have limit the
records per page is 50 and when we move on next page SRNO again start
from one but i want to continue these from the last record of the
previous page
please help me
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
-~--~~~~--~~--~--~---