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.
HTML 500 error
HTML 500 error
Why can't I run this report? I have another "test" report using the same nuSQL which works fine, but when I run report FR2 I get this error
You do not have the required permissions to view the files attached to this post.
-
- nuBuilder Team
- Posts: 4444
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 75 times
- Been thanked: 484 times
- Contact:
Re: HTML 500 error
Hi,
I see this error:
Try the following:
Replace this line
in nucommon.php with
I see this error:
Code: Select all
Uncaught TypeError: DateTime::setDate(): Argument #1 ($year) must be of type int, string given
Replace this line
Code: Select all
$o->setDate($d[0], $d[1], $d[2]);
Code: Select all
$o->setDate(intval($d[0]), intval($d[1]), intval($d[2]));