Web Apps Since 2004.

Is your website boring?  Kick it up a notch.  Encodable apps easily drop into your website to make it modern, fun, and interactive, with features like file uploads, user accounts, paid subscriptions, protected pages, live chat, visitor logging, mailing lists, and more.
All Encodable apps include:
• Easy setup
• Lifetime license
• Free tech support
• Full customizability

How To Install Perl Modules

On Shared Hosting

(For other situations, see the Perl Modules main page.)

If you need a Perl module installed on your server, the best thing to do is to simply ask your hosting company to install it.  However, some hosting companies are unwilling to install Perl modules for their clients.  Fortunately there's a relatively simple workaround that works in many cases.

You can "install" the Perl module yourself, within your own web space, just for your own CGI scripts.  To the scripts, this is exactly the same as if the module were installed server-wide.

Step 1a: install the module the easy way

All you need to do is get the module from CPAN, unzip it and find the *.pm file within it, and then put that *.pm file into your cgi-bin directory.

Step 1b: install the module the hard way

Unfortunaltely, for more complex Perl modules, there won't be a *.pm file within the file that you download from CPAN.  These kinds of modules need to be built manually on the system where they're going to be used.  Building them is still usually pretty easy, but it's a little more work.  You need to take the zip file from CPAN, unzip it, and put its contents onto your server, for example in a folder named ~/perltemp.  Then SSH into the server, cd into the ~/perltemp/modulename folder, and then run these commands:

mkdir myoutput
perl Makefile.PL PREFIX=./myoutput LIB=./myoutput
make
make install

When that's finished, you'll find a new subfolder within the myoutput folder, named something like "x86_64-linux-gnu-thread-multi".  You need to go into that folder and copy all its contents (except for perllocal.pod which you can skip) into your website's cgi-bin folder.

Step 2: tell your script where to find the module

In your script, near the top, put the following 2 lines:

use lib '.';
use lib "$ENV{DOCUMENT_ROOT}/cgi-bin";

The first line tells the script to look in the current directory for Perl modules; the second line explicitly specifies the cgi-bin directory.  One or both of those lines should work on most servers, and it doesn't hurt to add them both.

For Encodable apps like FileChucker and UserBase, they're pre-programmed to look for Perl modules in a directory called cgi-bin/perlmodules/ so you don't need to edit the script at all; just create a directory called perlmodules within your cgi-bin directory and put your modules into it.

As a final note, many Perl modules are named in 2 parts; for example, there's a module called "File::Mirror" which can be used to copy whole directories recursively.  To install this module within your perlmodules directory, you first create a subdirectory called "File", and then you put the "Mirror.pm" file into the "File" folder.  Then the module will be at cgi-bin/perlmodules/File/Mirror.pm.

Shopping Cart

Client Quotes

Nice script, it's saving the day on our project.
– Aaron W.
FileChucker is helping drive the backend of several high profile entertainment sites for people like Shania Twain and Dolly Parton.  We're also using it to drive backend file uploads for a multi-billion dollar banking institution.  It's a great product.  We've tried other "chucking" upload solutions with progress bars using flash and php, but nothing works as reliably as FileChucker.
– Michael W.
You've done a wonderful job with FileChucker and UserBase, and they have made a big difference to how our website runs.
– Nicholas H.
I just want to say you guys really stand alone in that you have a quality product and you provide genuine customer service.  It's sad but those qualities are seldom found separately, much less together.  Thanks again for your time and help.
– Alex S.
I looked all over trying to find a simple cgi script.  I found that FileChucker was by far the best.  If you have issues with your hosting service's php.ini max upload size then this is the way to go.  Looking forward to future enhancements.
– Bob C.
Just one word: Fantastic.  10-minute job to plug FileChucker into my app, and it now works a treat.  It's through the hard work by people like yourselves that make my job so much easier.  Congratulations on an outstanding product... Many many thanks.
– Sean F.
FileChucker is working great...  Clients love it.  Vendors love it.  We love it.
– Gerry W.
FileChucker is a great drop-in solution for file uploads, and worth every penny of its very reasonable cost.  Encodable's support is excellent to boot.
– Loren A.
The amount of customization in the program is incredible.  I was able to integrate it into my existing page layout relatively simply.  I was also able to easily customize the look/feel to match the current site.
– Jason M.
Thank you VERY much for all of your help.  You've really impressed me.  We have support agreements for other software that costs thousands of dollars / year (just for the support), and most of them aren't as helpful as you have been.
– Keith Y.
Thanks again for a great product and great support - beyond expectations.
– Greg S.
The work, the thought and the organization you put into this app is incredible.
– Bruce C.
I want to thank you for your efforts on Userbase. It has become an integral part of our business and has allowed us to branch out and begin using automation on a lot of our processes. Userbase has become the gateway to advancement for our company's processes for our clients and employees.
I just wanted to say that yours is the first product that I've tested so far that hasn't failed on handling uploads.  This is going to work for a print company, so they are handling nothing but large files and all the other solutions I've tried so far have not been reliable.  So far yours has been 100% successful in my tests.
– Kevin H.
I just installed the demo of your product and got it up and running in no time.  I searched high and low for a decent login script and thank God I found yours.
– Adrian F.
Our members think your software is fantastic...  I would recommend your software and your company to anyone.  Thanks for all your help.  It has been a pleasure dealing with you.
– Tommy A.
Why didn't I just do this from the get-go?  So much easier.  Thanks for your work.  FileChucker makes my work easier.
– Dominic M.
Do you know how rare it is to have a "canned" shopping cart that can easily do complex pricing options on a single item?  Basically, they don't exist!  I have looked.  Everywhere!  And the few that might even come close to CornerStore's functionality cost a fortune!
– Tashina P.