A while ago, I was facing the following error when running Facebook Command Line on my Linux:
“PHP Deprecated: Comments starting with ‘#’ are deprecated in /etc/php5/cli/conf.d/mcrypt.ini on line 1 in Unknown on line 0”
To resolve this issue, open mcrypt.ini located at /etc/php5/cli/conf.d
You will see the following code snippet:
# configuration for php MCrypt module extension=mcrypt.so
Replace the # with ;:
; configuration for php MCrypt module extension=mcrypt.so
Hope this helps

















