I used to use a provider called
http://ipowerweb.com. They were pretty good, actually, and the reason I don't use them any more was because I wanted the power and flexibility (e.g. dns, mod_perl) of having my own virtual linux node (at
http://www.linode.com/).
I got a few Perl applications going on http://ipowerweb.com like twiki which required additional CPAN modules.
What I would do is download the necessary CPAN modules onto my local machine and make the module. Note that you MUST build a Perl version as binaries are unlikely to work on a remote virtual host.
Next, I would bundle up my modules into a particular location, and FTP them onto my virtual server (e.g. into the /home/myusername/perllib/ directory).
Lastly I would ensure my Perl script would have a
use lib '/home/myusername/perllib';
statement so that Perl would know where to find my modules.
In the case of twiki, which already has several Perl modules that are used by the application, I bundled my CPAN modules into the same directory as those that came with the application and ensured the library path was correctly set in the application configuration file.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.