For downloading csv files using php. <?php header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); header("Content-Type: application/csv"); header("Content-Disposition: attachment; filename=\"output.csv\";" ); readfile("path to output.csv"); ?>
nixhat
Here is how to block Scanalert bots using csf. wget -q -O- http://www.mcafeesecure.com/help/ScanIps.csv | awk 'NR < 4 { next } { print }' | cut -d"," -f1 | replace '"' '' — | sort -n > /etc/csf/csf.denyscanalert To include these blocks in CSF, add this to /etc/csf.deny : Include […]
Block Scanalert bots
Recently, I have tried a slightly different approach in building an EBS Centos 5.6 AMI using Fedora8 Instance Store. In my older post, Custom Centos5.5 was build as an Instance Store. The major changes from my older post is as follows: Attached an EBS volume of 50 GB and installed […]