RE: how to add support of Msql and CGI in Apache

2009-04-22 Thread Dermot Paikkos
From: Raheel Hassan [mailto:raheel.has...@gmail.com] Sent: 21 April 2009 17:32 To: Dermot Paikkos Cc: beginners-cgi@perl.org Subject: Re: how to add support of Msql and CGI in Apache Please see below for my solution. .. . That is all your missing at the moment. You need to tell apache to

Re: how to add support of Msql and CGI in Apache

2009-04-21 Thread Raheel Hassan
Please see below for my solution. On Thu, Apr 16, 2009 at 3:52 PM, Dermot Paikkos < dermot.paik...@sciencephoto.co.uk> wrote: > I am following these instructions, > > http://www.ubuntugeek.com/how-to-install-apache2-webserver-with-phpcgi-a > nd-perl-support-in-ubuntu-server.html

RE: how to add support of Msql and CGI in Apache

2009-04-17 Thread Dermot Paikkos
I am following these instructions, http://www.ubuntugeek.com/how-to-install-apache2-webserver-with-phpcgi-a nd-perl-support-in-ubuntu-server.html but when i type, http://localhost it prompts to open the CGI script that i set at the location in text editor. It does not execute. I have seen the

RE: how to add support of Msql and CGI in Apache

2009-04-16 Thread Dermot Paikkos
aheel Hassan [mailto:raheel.has...@gmail.com] Sent: 16 April 2009 09:17 To: Dermot Paikkos Subject: Re: how to add support of Msql and CGI in Apache Could you please tell me which directory i need to configure and what changes i need to make in which configuration file so that i can execute my CGI sc

RE: how to add support of Msql and CGI in Apache

2009-04-14 Thread Dermot Paikkos
: how to add support of Msql and CGI in Apache > > Hello, Hi > I am facing problems in executing cgi programs, on Apache web server, > can > any body tell me how i can configure my Apache server so that it can > support > CGI and Msql. I also wanted to enable ssl support

Re: how to add support of Msql and CGI in Apache

2009-04-14 Thread Gunnar Hjalmarsson
Hello again, Raheel. Raheel Hassan wrote: I am facing problems in executing cgi programs, on Apache web server, can any body tell me how i can configure my Apache server so that it can support CGI and Msql. I also wanted to enable ssl support in the Apache server. Yes, this is a better place t

how to add support of Msql and CGI in Apache

2009-04-14 Thread Raheel Hassan
Hello, I am facing problems in executing cgi programs, on Apache web server, can any body tell me how i can configure my Apache server so that it can support CGI and Msql. I also wanted to enable ssl support in the Apache server. Thanks in advance. Regards, Raheel.

Re: How to add an item into Shopping cart

2004-03-24 Thread drieux
On Mar 22, 2004, at 5:53 PM, B. Fongo wrote: I'm working on a shopping cart, and yet to implement Apache::Session. But before then, I have a question on how to populate a shopping cart without the page reloading. Is there a way of achieving this using perl? Let me see if I get you correct here, t

How to add an item into Shopping cart

2004-03-22 Thread B. Fongo
I'm working on a shopping cart, and yet to implement Apache::Session. But before then, I have a question on how to populate a shopping cart without the page reloading. Is there a way of achieving this using perl? I believe it is possible to use JavaScript event-handler can be to keep track of it

Re: How to add modul directory to @INC

2003-07-28 Thread drieux
On Monday, Jul 28, 2003, at 04:12 US/Pacific, <[EMAIL PROTECTED]> wrote: [..] So I moved my module to /usr/lib/perl/ and it work o.k. not a recommended strategy, trust me. you may want to start with reading perldoc h2xs perldoc perlmod for a start on how to think about creating yo

How to add modul directory to @INC

2003-07-28 Thread mygrps
It is my first time writing a module. After executing a script that requires my module, I got an error "blabla not found in /usr/lib/perl etc.". So I moved my module to /usr/lib/perl/ and it work o.k. Recently I read somewhere that, instead of always moving my modules to /usr/lib/perl/, I could p

Re: how to add

2002-07-07 Thread David T-G
Henk -- ...and then Henk van Ess said... % % Connie, Niko & Janek, % % Ty for you fast input. Your suggestions assume that the "'s are added % during the inputphase. But I want the "'s to be added AFTER the user entered % the input. Do your suggestion still work then? Sure. Using the examples

Re: how to add

2002-07-07 Thread Henk van Ess
Connie, Niko & Janek, Ty for you fast input. Your suggestions assume that the "'s are added during the inputphase. But I want the "'s to be added AFTER the user entered the input. Do your suggestion still work then? -- Best regards, Henk mailto:[EMAIL PROTECTED] --

Re: How to add " "

2002-07-07 Thread Connie Chan
$input =~ s/^(.+)$/"$1"/; Don't use it. This is too trouble to doing this way. Just want to tell, this is also a method =) Rgds, Connie - Original Message - From: "Henk van Ess" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July

Re: How to add " "

2002-07-07 Thread Niko Gunadi
On Sun, Jul 07, 2002 at 11:12:48AM +0200, Henk van Ess wrote: > > I've got a beginnersquestion. How do I add a " before and a " after > any given user-input? I want to make a phrase out of the user-input. > Example: > userinput: > walking in mountains > > output should be: > "walking in mountains

Re: How to add " "

2002-07-07 Thread Janek Schleicher
Henk Van Ess wrote at Sun, 07 Jul 2002 11:12:48 +0200: > So basically, I want to change > > userinput > > into > > "userinput" $userinput = qq/"$userinput"/; Greetings, Janek -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to add " "

2002-07-07 Thread Henk van Ess
I've got a beginnersquestion. How do I add a " before and a " after any given user-input? I want to make a phrase out of the user-input. Example: userinput: walking in mountains output should be: "walking in mountains" So basically, I want to change userinput into "userinput"