Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
installerror with memorysize
Re: installerror with memorysize
I did the upload with filezilla, and it didnt give any errors, so I guess yes
-
- nuBuilder Team
- Posts: 4482
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 75 times
- Been thanked: 504 times
- Contact:
Re: installerror with memorysize
The error message you're encountering indicates that a PHP class called 'nuBuilderSessionData' is not found in the file '/../core/nuchoosesetup.php' on line 49. This is causing a fatal error in your PHP application.Henk_2a wrote: ↑Mon Sep 25, 2023 6:00 pm I've got it stabel now, tried several times and always the same error
AH01071: Got error 'PHP message: PHP Fatal error: Uncaught Error: Class 'nuBuilderSessionData' not found in /../core/nuchoosesetup.php:49\nStack trace:\n#0 /../core/nuchoosesetup.php(15): nuLoadNewSession()\n#1 /../index.php(15): require_once('...n...')\n#2 {main}\n thrown in /../test_dh/core/nuchoosesetup.php on line 49'
Any idea?
Make sure that the 'nuBuilderSessionData' class is defined in nubuilder_session_data.php
It should look like this:
Code: Select all
<?php
require_once('nusetuplibs.php');
require_once('nudatabase.php');
$config = nuConfigScript();
eval($config['code']);
class nuBuilderSessionData {
public $nubuilder = [
'NB_PATH' => __DIR__,
'GLOBEADMIN' => false,
'GLOBEADMIN_NAME' => '',
'GLOBEADMIN_PASS' => '',
'GLOBEADMIN_DEMO_NAME' => '',
'GLOBEADMIN_DEMO_PASS' => '',
'GLOBEADMIN_HOME' => 'nuhomecompact',
'DEMO_SAVING_ALLOWED_IDS' => '',
'USER_LOGIN' => '',
// more code here...