Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Perl module

by sgifford (Prior)
on Jan 15, 2005 at 05:17 UTC ( [id://422458]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl module
in thread Copy perl module to webhost

I install things without shell access all the time. It goes something like this:
$ wget module-src.tar.gz $ cat >install-module #!/bin/sh -x printf "Content-type: text/plain\n\n" tar xvzf module-src.tar.gz cd module-src perl Makefile.PL PREFIX=/your/home make make test make install ^D $ ftp your.hosting.site ftp> cd cgi-bin ftp> bin ftp> put module-src.tar.gz ftp> put install-module ftp> site chmod +x install-module ftp> quit

Then visit http://your.site/cgi-bin/install-module. Of course this will all vary somewhat, but the basic formula works.

Update: As CountZero says, your provider must have the appropriate compiler available. And don't forget to remove the install-module script when you're done, for security reasons.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://422458]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-19 05:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found