Running Php from command-line-interface i ran something php related in the console i get this strange error:
[code]
PHP Deprecated: Comments starting with ‘#’
are deprecated in /etc/php5/cli/conf.d/ming.ini
on line 1 in Unknown on line 0
[/code]
I googled for some minutes and found why is that happening and how to fix it. The solution is open the file:
[code]vi /etc/php5/cli/conf.d/ming.ini[/code]
and replace the “#” in the first line with “;” and that will fix the “warning”.
The same worked for [code] PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf.d/sqlite3.ini on line 1 in Unknown on line 0 [/code]