Welcome to the nuBuilder forums!
Please register and login to view forums and other content only available to registered users.
Please register and login to view forums and other content only available to registered users.
installerror with memorysize
-
- Posts: 52
- Joined: Sun Feb 14, 2016 8:42 pm
- Location: Nederland
Re: installerror with memorysize
I did the upload with filezilla, and it didnt give any errors, so I guess yes
-
- nuBuilder Team
- Posts: 3680
- Joined: Sun Oct 14, 2018 6:43 pm
- nuBuilder Version: 4.5
- Has thanked: 2 times
- Been thanked: 5 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...