Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Is it possible to use modules without installing them?

by gmpassos (Priest)
on Aug 31, 2002 at 20:51 UTC ( [id://194385]=note: print w/replies, xml ) Need Help??


in reply to Is it possible to use modules without installing them?

You can put the module in the same directory of the script, in this case, I think, your cgi-bin.

Let's use FOO.pm like a module, with a XS too. 1st get it, compile and install in some Perl interpreter that you have access, with the same OS of your server. They will be instaled at: (let's use Perl for Win32 like example (path more simple))
c:/perl/site/lib/FOO.pm
c:/perl/site/lib/auto/FOO/FOO.dll

To enable this module in the server just copy all the stuf from FOO.pm inside site/lib to your server, with the same path. In the cgi-bin will be like:
.../cgi-bin/FOO.pm
.../cgi-bin/auto/FOO/FOO.dll

This will work fine, because Perl use your local path like a lib directory too (see @INC). About the directory auto/FOO, copy everything inside to the server, not only the DLL. And if your module have other sub-modules you need to copy the directory site/lib/FOO too.

Using this steps you don't need a shell acount to do that, just a FTP! Don't forget to send the .pm like ANSII and the DLL (or .so on linux) like binary!

Graciliano M. P.

"The creativity is the expression of the liberty".

  • Comment on Re: Is it possible to use modules without installing them?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-25 12:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found