Skip to content

{ Category Archives } perl

Joomla installation on Debian Etch

first I have created one Account for joomla useradd -m -c “user joomla” -s /bin/false -g users joomla 1. DOWNLOAD Joomla Copy  de-DE_joomla_lang_full.1.5.10v1.zip   file into a directory /home/joomla # cd /home/Joomla Extract the files e.g. # unzip  de-DE_joomla_lang_full.1.5.10v1.zip

Tagged ,

check whether a Perl module is installed

for example: check modul Mail::Mailer use the command: # perl -MMail::Mailer -e 1 echo $? You can find a version number like this: # perl -MMail::Mailer -le ‘print $Mail::Mailer::VERSION’ Is the Modul not installed! you can use perl on the command line # perl -MCPAN -e shell (or direct perl -MCPAN -e “install Mail::Mailer”) at […]

Tagged , ,