Tagged Questions
The cgi-application tag has no wiki summary.
5
votes
1answer
150 views
Suggestions for an authentication system for a Perl CGI::Application
I am building a Perl app with CGI::Application to display software tools, and would like to allow users to add ratings and comments on the tools. Ideally users would need to be registered to post. I'm ...
5
votes
3answers
471 views
How can I provide a temp file download using mod_perl and CGI::Application?
My web app runs on Apache mod_perl using CGI::Application. I want to provide a download of a generated file. In the past (before we were using mod_perl and CGI::App) I just spooled out a csv file to ...
3
votes
6answers
504 views
How can I run a CGI::Application run mode from the command line?
I have a run mode in my CGI::Application web-app that I would like to be able to trigger from the command line so i can automate it. From the web-app's perspective it does some processing then sends ...
2
votes
1answer
260 views
Google authentication using perl cgi-application
I have built a CGI::Application currently running on local host and have used 2 authentication methods -
1. descried in http://www.perlmonks.org/?node_id=622071 by storing user password in database ...
2
votes
4answers
136 views
Are there any medium-sized web applications built with CGI::Application that are open-sourced?
I learn best by taking apart something that already does something and figuring out why decisions were made in which manner.
Recently I've started working with Perl's CGI::Application framework, but ...
2
votes
2answers
281 views
How do you get the content type of an uploaded file using CGI::Application?
I am trying to process an uploaded file in a Perl program, using CGI::Application. I need to get the content type of the uploaded file. From what I read, the following should work, but it doesn't ...
1
vote
1answer
151 views
How to allow only one user at a time in this CGI::Application?
I have used this tutorial to make a website, but I would like that only one user is allowed to be logged in at any time.
I suppose this change should be made in Login.pm which I have included, but I ...
0
votes
2answers
211 views
Passing hash from perl CGI::Application::Plugin::JSON to jquery form plugin
I need to pass a hash from server side to client side. I am using jquery and perl CGI::Application respectively on the front-end and back-end. I am a starter when it comes to using jquery thus I ...
0
votes
2answers
107 views
How to remove login form from this CGI::Application example?
In this tutorial he creates a custom login form, just to show how it is done. Please search for
How do I remove the custom login and fall back to the default?
To code looks like this
sub ...
-1
votes
2answers
312 views
How do I upload file using CGI APPLICATION
Hi
I am trying to upload image file using perl cgi-application. Not sure what I am doing wrong - but an empty image file (with the right name) gets saved.
my $picture = ...