Re: Template toolkit issue [SOLVED]

2012-05-08 Thread Mark Haney
. Lou and Mark Rob Tweren't me. I did post a similar reply to yours, but I wasn't the one wanting to opt out. -- Mark Haney Software Developer/Consultant AB Emblem ma...@abemblem.com Linux marius.homelinux 3.3.4-3.fc16.x86_64 GNU/Linux -- To unsubscribe, e-mail: beginners-unsubscr...

Re: Template toolkit issue [SOLVED]

2012-05-08 Thread Lesley
On Mon, May 07, 2012 at 10:46:28AM -0700, Randal L. Schwartz wrote: > > "'lesleyb'" == 'lesleyb' writes: > > 'lesleyb'> +1 on that. AFAIK, being able to use mod_perl still implies > having control of > 'lesleyb'> Apache and it's config. I haven't yet heard of a hosting company > providin

perl based shopping cart

2012-05-08 Thread Chankey Pathak
Hi folks, One of my friend is having a problem, he is not in the mailing list so I am posting this problem on his behalf. Please check how can this problem be solved and let me know, I'll let him know the answer, thanks :) *Problem:* Where i work we use a perl based shopping cart (Cartit). It has

Re: perl based shopping cart

2012-05-08 Thread Kartik Thakore
Perltidied and cleaned up for sanities sake: https://gist.github.com/2635922 Also are you sure strict and warnings is turned on Chankey?

Re: Template toolkit issue [SOLVED]

2012-05-08 Thread Randal L. Schwartz
> "Lesley" == Lesley writes: Lesley> Dedicated servers aren't hard to find if one has deep pockets. Virtual machines Lesley> are a cheap solution for us small fry who don't have the budget for a dedicated Lesley> server but want to get away from the run of the mill small website hosting L

Re: perl based shopping cart

2012-05-08 Thread 'lesleyb'
On Tue, May 08, 2012 at 07:44:43PM +0530, Chankey Pathak wrote: > Hi folks, > > One of my friend is having a problem, he is not in the mailing list so I am > posting this problem on his behalf. Please check how can this problem be > solved and let me know, I'll let him know the answer, thanks :) >

Re: insert

2012-05-08 Thread Uri Guttman
On 05/07/2012 04:47 PM, timothy adigun wrote: sub get_data { my ($file) = @_; my $arr_ref = []; open my $fh, '<', $file or die "can't open this file: $!"; while (<$fh>) { chomp; push @$arr_ref, $_; } close $fh or die "can't close file:$!"; ret