Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

installerror with memorysize

Questions related to installing, updating, setting up and configuring
Henk_2a
Posts: 52
Joined: Sun Feb 14, 2016 8:42 pm
Location: Nederland

Re: installerror with memorysize

Unread post by Henk_2a »

I did the upload with filezilla, and it didnt give any errors, so I guess yes
kev1n
nuBuilder Team
Posts: 3848
Joined: Sun Oct 14, 2018 6:43 pm
nuBuilder Version: 4.5
Has thanked: 2 times
Been thanked: 9 times
Contact:

Re: installerror with memorysize

Unread post by kev1n »

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?
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.


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...
	
Post Reply