LanWall – Free PHP Comment Wall for LAN users! Opensource!

Live Demo Here! Screenshots: LanWall is a PHP-based project for creating community among users connected in a Local Area Network (LAN). Users can post messages in the wall and make replies. In administrative mode, admin can modify comments & posts, ban certain IPs, restrict access or reset anything. Pros: Requires no database! You do not […]

PHP Fatal error: Cannot access empty property in

Are you trying to access any object’s property (variables/functions) using: $this->$property ? Check out the red $ should not appear before object properties. In contrast: the above code segment is wrong. You should use $ only once – before ‘ this’ only. No need to use $ sign before class variables or methods. Correct version […]

Premature end of script headers

This is a pretty common error appearing in the Apache servers… along with the disgusting Error 500 – Internal server error on the browser. Usually the error indicates that it was unable to send necessary header information correctly. What makes the problem terrible – it does not explain much of the cause. The best way […]