| 
| 
						
								| carrzkiss | First Post Posted on: 05-04-10 04:23 PM |  | Installing Modes |  | 
 |  | 
									| Hello All; 
 Going to " Manage Account " & " Sign Up "
 I receive the following to " Modes " Not installed
 
 Can't locate Net/SSL.pm in @INC)
 Can't locate IO/Socket/SSL.pm in @INC
 
 I have tried adding in new " repositories " into PPM
 And did a search for these 2 modes. but all I come up with
 Is " Add-Ons " for the modes.
 
 Can someone please tell me what " Repository " needs to be added to
 PPM, in order to get these Modes Installed ?
 
 Thank You
 Wayne
 |  |  |  |  |  |  |  |  |  
| 
						
								| mewsoft | Reply #: 1 Posted on: 05-04-10 07:30 PM |  | Re: Installing Modes |  | 
 |  | 
									| I think you need only Crypt::SSLeay for windows server and these 2 you are saying I do not think they are required for windows or at least for this software. 
 To install Crypt::SSLeay module try this from DOS, CD to c:\perl\bin, type :
 
 ppm install http://theoryx5.uwinnipeg.ca/pps/Crypt-SSLeay.ppd
 |  | 
 Mewsoft Support www.mewsoft.com
 
 |  |  |  |  |  |  |  
| 
						
								| carrzkiss | Reply #: 2 Posted on: 05-05-10 11:54 AM |  | Re: Installing Modes |  | 
 |  |  |  |  
| 
						
								| mewsoft | Reply #: 3 Posted on: 05-05-10 12:52 PM |  | Re: Installing Modes |  | 
 |  |  |  |  
| 
						
								| carrzkiss | Reply #: 4 Posted on: 05-05-10 01:49 PM |  | Re: Installing Modes |  | 
 |  | 
									| OK. Tried the install from the link, And receive the following error.
 Do not know if you can assist with the PPM Errors or not,
 But here goes:
 
 Error: no suitable installation target found for package Crypt-SSLeay.
 
 Any idea's?
 |  |  |  |  |  |  |  |  |  |  | 
 
| 
						
								| mewsoft | Reply #: 5 Posted on: 05-05-10 03:09 PM |  | Re: Installing Modes |  | 
 |  | 
									| <SOFTPKG NAME="Crypt-SSLeay" VERSION="0,51,0,0">
 <TITLE>Crypt-SSLeay</TITLE>
 <ABSTRACT>OpenSSL glue that provides LWP https support</ABSTRACT>
 <AUTHOR>Joshua Chamas <josh (at) chamas dot com></AUTHOR>
 <IMPLEMENTATION>
 <OS NAME="MSWin32" />
 <CODEBASE HREF="http://theoryx5.uwinnipeg.ca/ppms/x86/Crypt-SSLeay.tar.gz" />
 <INSTALL EXEC="PPM_PERL" HREF="http://theoryx5.uwinnipeg.ca/ppms/scripts/install_ssl">install_ssl</INSTALL>
 </IMPLEMENTATION>
 </SOFTPKG>
 
 
 
 Save the above code to a text file and name it as:
 
 Crypt-SSLeay.ppd
 
 then go to the directory where you saved it and type:
 
 ppm install Crypt-SSLeay.ppd
 
 The above code is the contents of the file Crypt-SSLeay.ppd but I removed the line :
 
 <ARCHITECTURE NAME="MSWin32-x86-multi-thread-5.8" />
 
 It should work.
 |  | 
 Mewsoft Support www.mewsoft.com
 
 |  |  |  |  |  |  |  |  | 
 
| 
						
								| carrzkiss | Reply #: 6 Posted on: 05-11-10 11:56 PM |  | Re: Installing Modes |  | 
 |  | 
									| Hello; 
 For some reason "ppm" is not finding the " NET:SMTP "
 Is there any way that you can make me up (Also explain how it is done)
 A " ppd " like you did for: CRYPT::SSL   ?
 
 So that I can Install it?
 And I do Beleive that will be it for the Modules that I will need
 For the Engine?  ( I hope )
 |  |  |  |  |  |  |  |  |  |  | 
 
| 
						
								| mewsoft | Reply #: 7 Posted on: 05-12-10 01:09 AM |  | Re: Installing Modes |  | 
 |  | 
									| Go to the url: 
 http://theoryx5.uwinnipeg.ca/ppms/
 
 You will find a list of all the built modules that you can install directely using the same command from DOS or Telnet:
 
 ppm install http://theoryx5.uwinnipeg.ca/ppms/ModuleName.ppd
 
 replace ModuleName.ppd in the above URL with the module name that you want to install.
 
 The Net::SMTP does not come as a single module, it comes in a Bundle called libnet. Go to :
 
 http://search.cpan.org/~gbarr/libnet-1.19/
 
 click on the download link
 
 http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/libnet-1.19.tar.gz
 
 then unzip, change to unzipped directory and install it using the steps:
 
 perl Makefile.PL
 nmake
 nmake install
 
 or simply using the PPM build packages, run the ppm from DOS
 c:\perl\bin\ppm
 
 ppm> search libnetSearching in Active Repositories
 1. Bundle-libnet [1.00] A bundle to install all libnet related modules
 2. Bundle-libnet [1.00] A bundle to install all libnet related modules
 3. libnet        [1.19] Collection of Network protocol modules
 4. libnet        [1.13] Collection of Network protocol modules
 5. libnet        [1.16] Collection of Network protocol modules
 6. libnet        [1.17] Collection of Network protocol modules
 7. libnet        [1.19] Collection of Network protocol modules
 ppm>
 
 now you can install the bundle normal like a module:
 
 ppm>install Bundle-libnet
 
 or
 if you issued the search command above, you can install using the search reasult number, so you can issue the above command immediatley after the search command as:
 
 ppm>install 1
 this will install the "1. Bundle-libnet [1.00] A bundle to install all libnet related modules" in the above search reasults.
 |  | 
 Mewsoft Support www.mewsoft.com
 
 |  |  |  |  |  |  |  |  | 
 
| 
						
								| carrzkiss | Reply #: 8 Posted on: 05-12-10 08:29 AM |  | Re: Installing Modes |  | 
 |  | 
									| Thank you so much for the information. Especially this:
 
 perl Makefile.PL
 nmake
 nmake install
 
 I was finally able to install Business:OnlinePayment
 Using it :-) Thank You.
 
 All Modules are now installed and all features work,
 Except but a problem that I listed in the other topic.
 
 Take Care
 |  |  |  |  |  |  |  |  |  |