I've come across a lot of RBLs and blocklists that sometimes have an instance of weird formatting whether that is missing a newline character or having an extra "space" at the end of the IP. This can break a lot of daemons and firewalls.
Here is my safe way of trying to concatenate lists:
cat somelist.txt sed s/" "//g|sed -e '$a' >>updatedlist.txt
The first sed removes any spaces which is more common than you think........
PHP cannot access /usr/bin/opensslI have verified the username that runs the process is able to access /usr/bin/openssl and it does exist but the PHP script is saying it doesn't exist:
[code:1:1fd0f3abbe]
if (!file_exists($OPENSSL)) {
//echo "ERROR: OPENSSL $OPENSSL not foundn";
}[/code:1:1fd0f3abbe]
I don't get itI can clearly see the contents of /usr/bin by using the PHP system fu........