Hi friends, I wish to create a scalable site made in PERL and seek guidance which templating engine should i use which has less learnig curve also. Names...
Hi, I have a recursive routine for traversing a kind of graph. My scripts are running with '-w' option/ Sometime I get a warning about deep recursion: "Deep...
I prefer self-submitting pages myself, but sometimes you can't do that without changing webserver config. Anyway, with a self-submitting page, your logic is: ...
You can do this in Perl, but I much prefer PHP. I know, I know, you did say Perl, but PHP is very close to Perl code-wise, so if you know Perl, you can learn...
Unless you're creating the next eBay or Google, my first thought is that you should be able to scale pretty large with either, and that your abilities as a...
I've installed Perl on my computer (which is not a server). I can run Perl at DOS prompt only. When I use IE or Firefox to access Perl scripts, the browsers...
... sujaymallesh> I want to leanr Perl, can anyone tell me where can i get resources for sujaymallesh> the same. A bit of googling should have brought you to...
... 1) You said it's not a server so I'm assuming Apache is nowhere to be found. 2) I had that problem with my scripts even with Apache installed. I had to...
... Yes. Install a web server on your machine and configure it to run your CGIs. -- Just my 0.00000002 million dollars worth, Shawn "For the things we have to...
What exactly are you trying to do? Do you want to embedd Perl in HTML? -Pavan ... From: youwenjia <no_reply@yahoogroups.com> To: Perl_Official@yahoogroups.com ...
Progress. Now I've got Apache running too locally with Windows XP Home. It shows web pages successfully, but responds to .pl and .cgi calls with "There is an...
... server). I can run ... I assume from the above that you have installed it on a windoze machine (2000 or XP) If that is correct and you have not installed...
Hi can some help me in writing a perl script to access remote registry. Which modules required to installed etc. Thanks, Vittal jadhav ... Why delete messages?...
Does any one know how to check if password exists for a windows user through perl function. UserGetAttributes doesn't work..it is returning null password...
hi, i am trying this statement but it is not executing i.e. killing process $force ="-9"; print "Kill $force $pid[$_]\n"; Thanks and Regards Avinash ... Get...
... process ... All your script would do is print out a Kill message. It will not execute the Kill command. In fact, I am not aware of a "Kill" command. If...
try this `kill $force $pid[$_]`; ... -- Kind Regards Dhanapalan.C " If there is a way, I will find one, If there is none,I will make one.... !!! " [Non-text...
hi, i am using the unix opearting system. I have attached the code It is still not able to kill the process Thanks in advance Avinash ... process ... All your...
... The code may have gotten stripped as a "non-text attachment". Try pasting the relevant portion(s) in-line. A few things could keep you from being able to...
Avinash, The last suggestion which surrounded the kill command with grave accents (`kill -9 PID`) was essentially causing perl to spawn a process and running...
... Glen> The last suggestion which surrounded the kill command with grave Glen> accents (`kill -9 PID`) was essentially causing perl to spawn a Glen> process...
Hi, I am fairly new to Perl and have written some Perl to interface with an API that comes with an application i am working with. I now need to bypass the API...
hi, i am killing all the process that are displayed using the ps command. but doing that the particular unix session also terminates. so how to prevent the...
Example string $Data=":2-Name1:4-Name2:3-Name3:1-Name4:"; I need to get the following info ... But All I can search with is ... In other words I know it starts...
#!/usr/bin/perl use strict ; my @Name; my $Name; my $X = 1; my $Y = 2; my $Data=":2-Lou-14:4-Bobby:3-Tine13:1-jack 23:"; my $Info = ($Data =~ /:$Y-(.*?):/); ...
The main problem with your attempted solution is that .* is greedy. This means that the colon it would find is the last one on the line. Greedy means that .*...
Thanks for the responce Glen If you going to ask why I don't use MySql... I have not had time to figure out who to use it... I am just now begining to grasp...
hi, I am trying to find particular words in text files(i.e. *.txt files) Should i use regular expressions in doing? Thanks in advance Avinash ... Get the...