Everything works except for the forms built by WFB ver. 2.3. Build 5217.
I get an error (see attachment) - Fatal Error: session_start() ... failed to initialize storage module: files (path) in /hosts/../ContactForm/fbapp/php/config.cls.php on line 391
Here's the function being called when the error occurs:
// start session and initialize with data
public function InitSession ( $session_data = null ) {
static $session_exists = false;
if( ! $session_exists ) {
$session_exists = session_start(); //line 391
}
if( ! empty( $session_data ) )
$_SESSION = array_merge( $_SESSION, $session_data );
}
Any idea what the problem is? I've uploaded an exact copy on a subweb on my private hosting service and there is no problem at all. Does the server need some configuration. I was under the impression that the server I'm hosting on already has PHP configured to work.
I am sending a support request to my host to see what's wrong, but they can be slow to respond, so I wanted to see if anyone here has an idea first.
Thanks