Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

newbie question: The Procedure does not exist... (RUNFF) Topic is solved

Questions related to using nuBuilder Forte.
Post Reply
lxnunes
Posts: 22
Joined: Sat Dec 18, 2021 1:40 am
Has thanked: 2 times

newbie question: The Procedure does not exist... (RUNFF)

Unread post by lxnunes »

Hi, this is my 1st post and also the 1st time I am using nubuilder, so please excuse me if this has been answered already elsewhere.

I have just made a clean install of nubuilder 4.5, using mysql 8 as a backend, with an existing database. Nubuilder created all the zzz(..) tables so I guess it was properly installed.

When trying to create my 1st fast form, and following the pizza delivery video, I added the table and the fields and I was able to scroll through the different values.

However, when clicking the "build fast form" button I get an error "The Procedure does not exist... (RUNFF)" and nothing is created.

I tried searching the documentation but couldn't find anything regarding the meaning of this message nor why it popped up. Any hint would be much apreciated.

Many thanks!
kev1n
nuBuilder Team
Posts: 4297
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: newbie question: The Procedure does not exist... (RUNFF)

Unread post by kev1n »

Hi and welcome :hi:

There should be a PHP Procedure with sph_code RUNFF in the table zzzzsys_php.

Code: Select all

SELECT * FROM `zzzzsys_php` WHERE `sph_code` = 'RUNFF' 
If it does not exist, run this INSERT statement in phpMyAdmin to create it:

Code: Select all

INSERT INTO `zzzzsys_php` (`zzzzsys_php_id`, `sph_code`, `sph_description`, `sph_group`, `sph_php`, `sph_run`, `sph_zzzzsys_form_id`, `sph_system`, `sph_global`, `sph_hide`) VALUES ('nufastform', 'RUNFF', 'Run Fast Form', 'nubuilder', 'nuBuildFastForm(\'#fastform_table#\', \'#fastform_type#\');\r\n\r\n', '', 'nufflaunch', '1', '0', '')
lxnunes
Posts: 22
Joined: Sat Dec 18, 2021 1:40 am
Has thanked: 2 times

Re: newbie question: The Procedure does not exist... (RUNFF)

Unread post by lxnunes »

Hi kev1n and thakn you for the lighning-fast reply!

Meanwhile I noticed an Update button and gave it a shot. Indeed the UI changed a bit (e.g. the form builder table selector is now a combobox) and the form was created fine.

The question now is which version am I running? :) Before the update version.txt had
nuBuilder Forte 4.5
DB Version: V.4.5-2021.12.02.03
Files Version: V.4.5-2021.12.04.00

Now it still seems to be the same...
kev1n
nuBuilder Team
Posts: 4297
Joined: Sun Oct 14, 2018 6:43 pm
Has thanked: 71 times
Been thanked: 445 times
Contact:

Re: newbie question: The Procedure does not exist... (RUNFF)

Unread post by kev1n »

Where did you download it from?

The latest version is always on Github: https://github.com/nuBuilder/nuBuilder-4.5
lxnunes
Posts: 22
Joined: Sat Dec 18, 2021 1:40 am
Has thanked: 2 times

Re: newbie question: The Procedure does not exist... (RUNFF)

Unread post by lxnunes »

from https://github.com/nuBuilder/nuBuilder- ... .5.1.0.zip

anyway, the update feature seems to have worked like a charm!
Many thanks.
Post Reply