I'm supposed to change a web app written in perl and java scripts to dot net environment.
I was given
js, pl and tmpl extension files and a link to the website.
I have been able to reproduce the web app pages using the link view source codes and the tmpl files. The db connects to a SQLite.
I installed SQLLitePRo and Perl 5,10,0,1003 yesterday.
I have not changed any part of the original code that I was given.
My problem is, I can't get the program to call the pl and the
js files. I get an error message like:
The HTTP verb POST used to access path '/appDirectory/plDirectory/plFilename.pl' is not allowed.
2. Do I have to have the files in a particular folder on my local machine to work?
3. Do I need any configurations to make?
4. Because I'm still using the original codes, I suspect it tries to read from a server nobody seems to know where or which one.
this is a copy of the DBI code:
my $database = DBI->connect("dbi: SQLite:dbname=$$form{SomeName}.db","","") || die "$DBI::errstr\n";
my $statement = $database->prepare("select * from groups");
How do I import these database files into the SQLLITePro to enable me use
the connection string above on my local machine?
Any sugestions will be welcomed.
This is my first web app project and I suspect I've not set the environment correctly.
I really need an
