Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums 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: 4188
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 60 times
- Been thanked: 399 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]));