DBI Module
1. Obtain the latest version of the DBI module distribution from a CPAN mirror or download the 1.48 version from our server:
http://www.jmbsoft.com/software/modules/DBI-1.48.tar.gz
2. Extract the archive on your server and change into the created directory:
gunzip DBI-1.48.tar.gz
tar xf DBI-1.48.tar
cd DBI-1.48
3. Configure, compile and install the module:
perl Makefile.PL
make
make install
4. The installation of this module is complete
***************************************************************************************************************************
DBD::mysql Module
1. If the DBI module is not yet installed, you must install that first. See the instructions above.
2. Obtain the latest version of the DBD::mysql module distribution from a CPAN mirror or download the 2.9004 version from our server:
http://www.jmbsoft.com/software/modules/DBD-mysql-2.9004.tar.gz
3. Extract the archive on your server and change into the created directory:
gunzip DBD-mysql-2.9004.tar.gz
tar xf DBD-mysql-2.9004.tar
cd DBD-mysql-2.9004
4. Configure, compile and install the module:
perl Makefile.PL
make
make install
5. The installation of this module is complete
***************************************************************************************************************************
GD Library and Module
1. Before you can install the GD Perl module you must install the GD programming library. This library has some optional components that we recommend you compile it with, so these instructions will include installation of those components as well.
2. Obtain and install the latest version of the JPEG programming library. You can download version 6b from our server:
http://www.jmbsoft.com/software/modules/jpegsrc.v6b.tar.gz
Extract the archive on your server and change into the created directory:
gunzip jpegsrc.v6b.tar.gz
tar xf jpegsrc.v6b.tar
cd jpeg-6b
Configure, compile and install the library:
./configure --enable-shared
make
make install
Installation of this library is complete
3. Obtain and install the latest version of the PNG programming library. You can download the 1.2.8 version from our server:
http://www.jmbsoft.com/software/modules/libpng-1.2.8-config.tar.gz
Extract the archive on your server and change into the created directory:
gunzip libpng-1.2.8-config.tar.gz
tar xf libpng-1.2.8-config.tar
cd libpng-1.2.8-config
Configure, compile and install the library:
./configure
make
make install