Can’t locate Plack/Handler/Starlet.pm

Error Messages

Plack::Handler::Starlet ...MISSING
Can't locate Plack/Handler/Standalone/Prefork/Server/Starter.pm in @INC
FAIL Installing Plack::Handler::Starlet failed. See /USER/.cpanm/build.log for details.

Where the heck are the documentations for these modules?

I have tried everything cpanminus, cpan, cpanplus ect… Nothing would work until i did the following:

Navigate to the Perl Directory
(or wherever Perl is located on your system)
cd /usr/local/share/perl/

Within your perl folder there should be a folder called /Plack/Handler/
and within this folder there should be a file called “Starlet.pm”

/usr/local/share/perl/5.10.0/Plack/Handler/Starlet.pm

if this file is missing, you need to locate within your system or on the internet and copy or move it to that folder.
Mine was located here /USER/.cpan/build/Starlet-0.14-Spf5Vd/lib/Starlet.pm

Run make testdeps again and voila no more error messages:

Import Microsoft Excel data to Mysql

Import Excel To MySQL

First fire up your MySQL Workbench editor or your chosen Mysql Client editor

CSV

LOAD DATA LOCAL INFILE 'C:\\Users\\ycsoftware\\Desktop\\ycsoftware.csv' INTO 
TABLE `ycsoftware`.`ycsoftware` FIELDS 
TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\r\n' (temp1, temp2, temp3); SHOW WARNINGS

OR

LOAD DATA LOCAL INFILE 'C:\\Users\\ycsoftware\\Desktop\\ycsoftware.csv' INTO 
TABLE `ycsoftware`.`ycsoftware` FIELDS 
TERMINATED BY ',' ENCLOSED BY '' LINES TERMINATED BY '\r\n' (temp1, temp2, temp3); SHOW WARNINGS

TAB  SEPARATED

LOAD DATA LOCAL INFILE 'C:\\Users\\ycsoftware\\Desktop\\ycsoftware.csv' INTO 
TABLE `ycsoftware`.`ycsoftware` FIELDS 
terminated by '\t' lines terminated by '\r\n' (temp1, temp2, temp3);  SHOW WARNINGS

Invalid ALLOWHIDDENFILE configuration option: Not a file: /dev/.initramfs

This rkhunter software is driving me nuts with all these false positive alerts.
ALLOWHIDDENFILE apparently is not working on symbolic links (version 1.3.8) and I was unable to whitelist this “/dev/.initramfs” file until I found this blog below:

http://digitalcardboard.com/blog/2012/05/24/ubuntu-12-04-rkhunter-1-3-8-false-positives/

Follow the steps that the blogger mentioned above and you will be able to whitelist symbolic links

rkhunter manual
http://rkhunter.sourceforge.net/

Other links:
http://ycsoftware.net/please-inspect-this-machine-because-it-may-be-infectedrkhunter/