Warning: Creating default object from empty value in /home/myairline/public_html/phpvms/core/classes/Vars.class.php on line 74
The fix is quite as easy as navigating to the right line and adding the right stuff.Navigate towards /phpvms/core/classes/Vars.class.php and go down to line 60. After line 60, add this:
self::$request = new stdClass();
So now, on lines 59 to 61, you should see this:
self::$post = new stdClass();
self::$get = new stdClass();
self::$request = new stdClass();