View Single Post
  #19  
Old 3rd August 2015, 22:36
atmoner atmoner is offline
Senior Member
 
Join Date: Mar 2015
P2P
Posts: 25
Default
Quote:
Originally Posted by gogo999 View Post
Fatal error: Call to undefined function session_status() in C:\NGXMP\www\libs\default.class.php on line 43


LOL! replace this line in libs/default.class.php

PHP Code:
if (session_status() == PHP_SESSION_NONEsession_start(); 
By:
PHP Code:
session_start(); 
Function session_status() exists since version PHP >=5.4.0
Reply With Quote
The Following User Says Thank You to atmoner For This Useful Post:
gogo999 (6th August 2015)