Re: [Ilugc] Need PHP Script.

2014-05-28 Thread vijay siva
ur using e-commerce or wp


On Wed, May 28, 2014 at 4:06 PM, Sathish sjksathishku...@gmail.com wrote:

 Hi,

 I need PHP Script for Blog to customised template. I want to include
 that script into my design. Can any one help me?? Thanks in advance.



 --
 Thanks  Regards

 Sathishkumar S
 Mob: +91-9994788682
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 ILUGC Mailing List Guidelines:
 http://ilugc.in/mailinglist-guidelines

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Placeholder in django forms

2014-01-22 Thread vijay siva
read bootstrap tutorials


On Wed, Jan 22, 2014 at 6:56 PM, Vignesh Nagarajan
vigneshac...@gmail.comwrote:

 I just created a form and need to use a placeholder in it. but i am using
 bootstrap for css works.

 So, how to add the placeholder in templates.

 Thanks in advance.


 --
 Thanks,

 Vignesh.N
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 ILUGC Mailing List Guidelines:
 http://ilugc.in/mailinglist-guidelines

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] python wrapper for facebook

2013-11-20 Thread vijay siva
Hi Friends,

I m beginner in python language.

I have update status/comments for  facebook using python.

i did not get any correct documentation.


I have downloaded and installed pyfacebook.

but i did not get any tutorials(documentation)


please help me
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] python tutorials

2013-08-06 Thread vijay siva
thanks.


On Mon, Aug 5, 2013 at 7:13 PM, Arulalan T arulal...@gmail.com wrote:

 2013/8/5 vijay siva vijaysiva5...@gmail.com:
  HI to every one...
 
  i m new in python programming language...
 
  if any one know which tutorial is best  learning beginner...

 http://www.pythontutor.com/


 --
 Regards,
 Arulalan.T
 Project Associate
 Centre for Atmospheric Sciences
 Indian Institute of Technology Delhi

 My Experiments In Gnu/Linux !  : http://tuxcoder.wordpress.com
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 ILUGC Mailing List Guidelines:
 http://ilugc.in/mailinglist-guidelines

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] python tutorials

2013-08-05 Thread vijay siva
HI to every one...

i m new in python programming language...

if any one know which tutorial is best  learning beginner...
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] how to use AWS?

2013-06-20 Thread vijay siva
thanks to every one, finally its working.

i have use below these url:

http://www.orderingdisorder.com/aws/ses/


On Thu, Jun 20, 2013 at 11:06 AM, Mehul Ved mehul.n@gmail.com wrote:

 On Wed, Jun 19, 2013 at 5:57 PM, vijay siva vijaysiva5...@gmail.com
 wrote:

  Warning: require(aws/aws-autoloader.php) [function.require]: failed to
 open
 
 stream: No such file or directory in
  /opt/lampp/htdocs/amazon/aws/servicefactor.php on line 5
 
  Fatal error: require() [function.require]: Failed opening required
  'aws/aws-autoloader.php' (include_path='.:/opt/lampp/lib/php') in
  /opt/lampp/htdocs/amazon/aws/servicefactor.php on line 5
 

 This isn't a AWS problem. PHP is throwing an error, telling you that it
 can't find the file aws-autoloader.php in the include_path. Probably it
 should have been require(aws-autoloader.php)? Check your directory layout
 to figure out what's the correct path.
 --
 With Regards,
 Mehul Ved
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 ILUGC Mailing List Guidelines:
 http://ilugc.in/mailinglist-guidelines

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] how to use AWS?

2013-06-19 Thread vijay siva
Hi to every one.

my task is send to email with using AWS.

so i have sign up for (Amazon Web Services)AWS . and i have got secrete
keys, and keys.i have downloads SDK for PHP and i have copy,past to my
direct path(/opt/lampp/htdocs/amazon/aws)


i have write the initals(fresh) code.below these codes


?php

// Include the SDK using the Composer autoloader
require 'amazon/aws/aws-autoloader.php';

use Aws\S3\S3Client;

// Instantiate the S3 client with your AWS credentials and desired AWS
region
$client = S3Client::factory(array(
'key' = 'AKIAI3RFK7VX6KPAVWQQ',
'secret' = 'nfvjefVOCfGmCkwDfWtwdyJi12Prvum3K86ab5hZ',
));



$bucket = 'bala';

$result = $client-createBucket(array(
'Bucket' = $bucket
));

// Wait until the bucket is created
$client-waitUntil('BucketExists', array('Bucket' = $bucket));
?

and save these codes and run  browser ,

but its not working, i have found below these errors


Warning: require(aws/aws-autoloader.php) [function.require]: failed to open
stream: No such file or directory in
/opt/lampp/htdocs/amazon/aws/servicefactor.php on line 5

Fatal error: require() [function.require]: Failed opening required
'aws/aws-autoloader.php' (include_path='.:/opt/lampp/lib/php') in
/opt/lampp/htdocs/amazon/aws/servicefactor.php on line 5

if any one know AWS please help with me?
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


[Ilugc] it is possible?

2013-06-06 Thread vijay siva
?
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) 
strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
if($_GET){
   echo $_GET['username'];
   exit();
}
}
?
html
head
script type=text/javascript src=jquery-1.8.0.min.js/script
script
$(document).ready(function(){

$('#button').click(function(){

   $user= $('#username').val();
   $pass= $('#password').val();

$.get('test.php',{username:$user,password:$pass},function(data){

$('#myDiv').html(data)
})
  })
})
/script
/head
body
div id=myDivh2Let AJAX change this text/h2/div
input type=text id=username name=username
input type=text id=password name=password
button type=button id=buttonChange Content/button
 ?php echo $_GET['username']; ?
/body
/html

this is my simple logic ajax code, i want to $_GET['username'] to placed in
html(client-side) or otherwise any give ideas
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
ILUGC Mailing List Guidelines:
http://ilugc.in/mailinglist-guidelines


Re: [Ilugc] Help with SMTP/PHP (AKA: Re: i need help)

2013-05-23 Thread vijay siva
i m also a same  problem, till now i m working with mail part , but i have
found solution

http://www.pixelinx.com/2010/10/creating-a-mail-server-on-ubuntu-using-postfix-courier-ssltls-spamassassin-clamav-and-amavis/






On Thu, May 23, 2013 at 11:43 AM, Version Control Buddy
vcbu...@gmail.comwrote:

  ; Log all mail() calls including the full path of the script, line #, to
  address and headers
  ;mail.log =
 
   but mail cannot be send.
 
  now wat can i do?
 
  please any one tell me.
 

 Here are few things that comes to my mind.

 1. Make sure your sendmail works by sending some mail directly using
 sendmail.

 2. Is this linux ? in that case you can see if the local mail are recived,
 if a local email is configured.

 3. Using a gmail account in the from might cause problems or will send the
 mail to your junk folder. Try changing it.

 4. Enable log mail.log and see what it has to say.

  Rgds,
 Siva.
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] how to check php mail() send or not

2013-05-23 Thread vijay siva
HI ,

help me?


i m using simple php codings,

 ?php
$to = vijaysiv...@yahoo.com;
$subject = Test mail;
$message = Hello! This is a simple email message.;
$from = vijaysiva5...@gmail.com;
$headers = From: . $from;
if(mail($to,$subject,$message,$headers)){
echo Mail Sent.;
}
else{
echo mail cannot be sent;
}
?

and i was changing php.ini file

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = vijaysiva5...@gmail.com

; For Unix only.  You may supply arguments as well (default: sendmail -t
-i).
; http://php.net/sendmail-path
sendmail_path =/usr/sbin/sendmail -t -i

; Force the addition of the specified parameters to be passed as extra
parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script
followed by the filename
mail.add_x_header = On

; Log all mail() calls including the full path of the script, line #, to
address and headers
;mail.log =


but  its not working, only output  is mail cannot be sent.

now what can i do?,

please tell any one.
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] how to check php mail() send or not

2013-05-23 Thread vijay siva
http://www.quackit.com/php/tutorial/php_mail_configuration.cfm,

and i have using these website also



On Thu, May 23, 2013 at 3:40 PM, vijay siva vijaysiva5...@gmail.com wrote:

 HI ,

 help me?


 i m using simple php codings,

  ?php
 $to = vijaysiv...@yahoo.com;
 $subject = Test mail;
 $message = Hello! This is a simple email message.;
 $from = vijaysiva5...@gmail.com;
 $headers = From: . $from;
 if(mail($to,$subject,$message,$headers)){
 echo Mail Sent.;
 }
 else{
 echo mail cannot be sent;
 }
 ?

 and i was changing php.ini file

 [mail function]
 ; For Win32 only.
 ; http://php.net/smtp
 SMTP = localhost
 ; http://php.net/smtp-port
 smtp_port = 25

 ; For Win32 only.
 ; http://php.net/sendmail-from
 sendmail_from = vijaysiva5...@gmail.com

 ; For Unix only.  You may supply arguments as well (default: sendmail -t
 -i).
 ; http://php.net/sendmail-path
 sendmail_path =/usr/sbin/sendmail -t -i

 ; Force the addition of the specified parameters to be passed as extra
 parameters
 ; to the sendmail binary. These parameters will always replace the value of
 ; the 5th parameter to mail(), even in safe mode.
 ;mail.force_extra_parameters =

 ; Add X-PHP-Originating-Script: that will include uid of the script
 followed by the filename
 mail.add_x_header = On

 ; Log all mail() calls including the full path of the script, line #, to
 address and headers
 ;mail.log =


 but  its not working, only output  is mail cannot be sent.

 now what can i do?,

 please tell any one.



___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] ILUG-C, vijay siva has invited you to open a Gmail account

2013-05-23 Thread vijay siva
I've been using Gmail and thought you might like to try it out. Here's an
invitation to create an account.


  You're Invited to Gmail!

vijay siva has invited you to open a Gmail account.

Gmail is Google's free email service, built on the idea that email can be
intuitive, efficient, and fun. Gmail has:

 *Less spam*
Keep unwanted messages out of your inbox with Google's innovative
technology.

*Lots of space*
Enough storage so that you'll never have to delete another message.

*Built-in chat*
Text or video chat with vijay siva and other friends in real time.

*Mobile access*
Get your email anywhere with Gmail on your mobile phone.

You can even import your contacts and email from Yahoo!, Hotmail, AOL, or
any other web mail or POP accounts.

Once you create your account, vijay siva will be notified of your new Gmail
address so you can stay in touch. Learn
morehttp://mail.google.com/mail/help/intl/en/about.htmlor get
startedhttp://mail.google.com/mail/a-e11da628c9-2f9c98114a-uLXUDeBvl4r0vWzhMuduPZ2Rowc?pc=en-rf---a
!
Sign 
uphttp://mail.google.com/mail/a-e11da628c9-2f9c98114a-uLXUDeBvl4r0vWzhMuduPZ2Rowc?pc=en-rf---a

Google Inc. | 1600 Ampitheatre Parkway | Mountain View, California 94043
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Fwd: [fsug-tvm] Would U like to try out solution other than zimbra and MS-Exchange

2013-05-22 Thread vijay siva
hi sir,

i need help sir,

how to setup email sending in ubuntu?







On Wed, May 22, 2013 at 12:17 AM, Shrinivasan T tshriniva...@gmail.comwrote:

 -- Forwarded message --
 From: John Joseph jjk_s...@yahoo.com
 Date: Thu, May 16, 2013 at 11:19 AM
 Subject: [fsug-tvm] Would U  like to try out solution other than
 zimbra and MS-Exchange
 To: TVM LinuxUsersGroup ilug-...@googlegroups.com, Cochin
 mailingl...@ilug-cochin.org


 Hi All
 Try out  SOGO http://www.sogo.nu/;, an alternative for Zimbra and
 Exchange
 It supports MAPI natively
 It is from the company inverse http://www.inverse.ca; .  and it is open
 source

 Now inverse is the same company behind packet fense
 It is worth trying out.





 --
 --
 Freedom is the only law.
 Freedom Unplugged
 http://www.ilug-tvm.org

 You received this message because you are subscribed to the Google
 Groups ilug-tvm group.
 To control your subscription visit
 http://groups.google.co.in/group/ilug-tvm/subscribe
 To post to this group, send email to ilug-...@googlegroups.com
 To unsubscribe from this group, send email to
 ilug-tvm-unsubscr...@googlegroups.com



 For details visit the google group page:
 http://groups.google.com/group/ilug-tvm?hl=en

 ---
 You received this message because you are subscribed to the Google
 Groups Free Software Users Group, Thiruvananthapuram group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to ilug-tvm+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




 --
 Regards,
 T.Shrinivasan


 My Life with GNU/Linux : http://goinggnu.wordpress.com
 Free E-Magazine on Free Open Source Software in Tamil : http://kaniyam.com

 Get CollabNet Subversion Edge : http://www.collab.net/svnedge
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Fwd: [fsug-tvm] Would U like to try out solution other than zimbra and MS-Exchange

2013-05-22 Thread vijay siva
i have already  changed my SMPT settings. but its not working


On Wed, May 22, 2013 at 2:57 PM, Riyaz Ahmed rah...@encoress.com wrote:

 Hi Vijay,

 Please be more specific

 Whether you need

 Mail server configuration in ubuntu
 (or)
 Email class for sending email if you already SMTP setting

 Regards,
 Riyaz

 On Wednesday 22 May 2013 02:54 PM, vijay siva wrote:
  hi sir,
 
  i need help sir,
 
  how to setup email sending in ubuntu?
 
 
 
 
 
 
 
  On Wed, May 22, 2013 at 12:17 AM, Shrinivasan T tshriniva...@gmail.com
 wrote:
 
  -- Forwarded message --
  From: John Joseph jjk_s...@yahoo.com
  Date: Thu, May 16, 2013 at 11:19 AM
  Subject: [fsug-tvm] Would U  like to try out solution other than
  zimbra and MS-Exchange
  To: TVM LinuxUsersGroup ilug-...@googlegroups.com, Cochin
  mailingl...@ilug-cochin.org
 
 
  Hi All
  Try out  SOGO http://www.sogo.nu/;, an alternative for Zimbra and
  Exchange
  It supports MAPI natively
  It is from the company inverse http://www.inverse.ca; .  and it is
 open
  source
 
  Now inverse is the same company behind packet fense
  It is worth trying out.
 
 
 
 
 
  --
  --
  Freedom is the only law.
  Freedom Unplugged
  http://www.ilug-tvm.org
 
  You received this message because you are subscribed to the Google
  Groups ilug-tvm group.
  To control your subscription visit
  http://groups.google.co.in/group/ilug-tvm/subscribe
  To post to this group, send email to ilug-...@googlegroups.com
  To unsubscribe from this group, send email to
  ilug-tvm-unsubscr...@googlegroups.com
 
 
 
  For details visit the google group page:
  http://groups.google.com/group/ilug-tvm?hl=en
 
  ---
  You received this message because you are subscribed to the Google
  Groups Free Software Users Group, Thiruvananthapuram group.
  To unsubscribe from this group and stop receiving emails from it, send
  an email to ilug-tvm+unsubscr...@googlegroups.com.
  For more options, visit https://groups.google.com/groups/opt_out.
 
 
 
 
  --
  Regards,
  T.Shrinivasan
 
 
  My Life with GNU/Linux : http://goinggnu.wordpress.com
  Free E-Magazine on Free Open Source Software in Tamil :
 http://kaniyam.com
 
  Get CollabNet Subversion Edge : http://www.collab.net/svnedge
  ___
  ILUGC Mailing List:
  http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 
  ___
  ILUGC Mailing List:
  http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
 


 --

 Regards,
 Riyaz
 Encore IT Services Solutions Pvt Ltd,
 Chennai.
 Ph No: 9500146660
 www.encoress.com

 PRIVILEGED - PRIVATE AND CONFIDENTIAL: This e-mail and any files
 transmitted with it are intended solely for the use of the addressee(s) and
 may contain information which is confidential or privileged. If you are not
 the intended recipient, be aware that any disclosure, copying, distribution
 or use of this e-mail or any attachment is prohibited. If you receive this
 e-mail and you are not the addressee, or you have received this e-mail in
 error, please disregard the contents of the e-mail and delete the same.

 NOTE: Regardless of content, this e-mail shall not operate to bind Encore
 to any order or other contract unless pursuant to explicit written
 agreement or government initiative expressly permitting the use of e-mail
 for such purpose.

 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Linux sysadmin consultant

2013-05-22 Thread vijay siva
Hi,

I m a beginner of php

i m tried to send email with another persons, using mail() functions.

but mail cannot be send.

I have change SMTP path in php.ini file

[mail function]
; For Win32 only.
; http://php.net/smtp
SMTP = localhost
; http://php.net/smtp-port
smtp_port = 25

; For Win32 only.
; http://php.net/sendmail-from
sendmail_from = vijaysiva5...@gmail.com

; For Unix only.  You may supply arguments as well (default: sendmail -t
-i).
; http://php.net/sendmail-path
sendmail_path =/usr/sbin/sendmail -t -i

; Force the addition of the specified parameters to be passed as extra
parameters
; to the sendmail binary. These parameters will always replace the value of
; the 5th parameter to mail(), even in safe mode.
;mail.force_extra_parameters =

; Add X-PHP-Originating-Script: that will include uid of the script
followed by the filename
mail.add_x_header = On

; Log all mail() calls including the full path of the script, line #, to
address and headers
;mail.log =

 but mail cannot be send.

now wat can i do?

please any one tell me.


On Sun, May 19, 2013 at 10:12 PM, Arun Khan knu...@gmail.com wrote:

 On Sun, May 19, 2013 at 7:36 PM, Ramanathan Sivakumar
 ramannat...@gmail.com wrote:
  hey Friends pls guide me im studying 1st year b.c.a i need to do some
 extra
  classess so pls say what type of class can i join
 
 
  I have plan to join GNIIT(software eng.) in NITT

 Read the list guidelines for posting.

 specifically do *not* hijack some other discussion.

 
 
  On Sun, May 19, 2013 at 3:19 PM, Arun Khan knu...@gmail.com wrote:
 
  On Sun, May 19, 2013 at 2:28 PM, Vijay Varadan vi...@axham.com wrote:
   Hello,

 and do *not* top post.

 --
 Arun Khan
 Sent from my non-iphone/non-android device
 (অরুণ খান্/अरुण खान)
 ___
 ILUGC Mailing List:
 http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


[Ilugc] hi

2013-04-02 Thread vijay siva
hi
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc