Category: How-to

How to completely remove filezilla from macOS ? 0

How to completely remove filezilla from macOS ?

Sometimes Filezilla creates problem connecting to server with FTP. The easiest solution is to check the connection from another computer. If it worked on another computer then there is something wrong in your computer’s...

How to show all errors in php? 0

How to show all errors in php?

Without editing php.ini it is possible to display almost all errors in php by adding following 3 lines of codes on the top of the php page: ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); Hope it...

How to create Be like Bill? 0

How to create Be like Bill?

Nowadays, Be like Bill and Don’t be like Bill are trending on the internet. It is obvious for all that they love to create their own customized Be Like Bill or Don’t Be like...

How do get PHP Errors to display? 0

How do get PHP Errors to display?

To get PHP errors to display without modifying php.ini add the following codes to the top of the php file: ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); However, it won’t show parse errors. To show parse...