First, I would like to thank all those involved in this project. Well done, and to the point.
Looking in the forum here, and general tutorials I am not able to find a solution to the problem I have encountered.
There are a few similar posts, but no solutions to the following issue:
Unable to add a form for a group level access
Here is the rundown.
version
nubuilder-v2.8-12.12.11-Build550.tar
PHP 5.3.3-14.el6_3
MySQL 5.1.61-4.el6
CentOS 6.3 (Final)
nuBuilder installation was fine
I used the sample.sql to add the zzsys_ tables to my existing DB
commented out
-- CREATE DATABASE IF NOT EXISTS sample;
-- USE sample;
-- CREATE USER 'sample'@'localhost' IDENTIFIED BY 'samplepass';
-- GRANT ALL PRIVILEGES ON `sample` . * TO 'sample'@'localhost' WITH GRANT OPTION;
-- SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- SET time_zone = "+00:00";
All went fine with SQL.
logged in with globeuser and PW, -- OK
Created Object and used form wizard to make a form for view and mod of an existing table -- OK
Added a User Group, User -- OK
Added access Level, chose the group, added object OK
***** added Form == !OK (not OK)
{the selection window with a list of the forms shows up but none can be clicked on to be added} This appears to be a static list.
I can log in with the added user credentials
Button works, ( set up for TAB ) but cannot view the form
error said ~ no access. " You do not have access "
I tried the hidden button trick and made a mess. The form can only be seen when the form is set to Access with out Login = Yes... however, the whole link now is live with no session password. If it is set to no, you will see ~ no access. "You do not have access"
I typed in the name of the form from the list:
The result is: ' Forms Allowed Access' on line 1 cannot be left blank ( upon save. )
Anything I missed?
Thanks
Mike
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.
User Level Access setup for FORMS Question
Re: User Level Access setup for FORMS Question
Mike,
Are you saying that after running the wizard you cannot add the wizard's Form to the Forms Tab of Access Levels?
Forms created with the Wizard are always prefixed with (Wizard).
I'm not sure if this answers your question.
Steven
Are you saying that after running the wizard you cannot add the wizard's Form to the Forms Tab of Access Levels?
Forms created with the Wizard are always prefixed with (Wizard).
I'm not sure if this answers your question.
Steven
You do not have the required permissions to view the files attached to this post.
-
- Posts: 3
- Joined: Sun Dec 16, 2012 10:26 am
Re: User Level Access setup for FORMS Question
Steve,
Correct, I cannot add the wizard's Form to the Forms Tab via Access Levels section. That pop-up list does not respond to mouse clicks like other areas of the site does. Manually typing the name fails also. However I can see the list just fine.
I do see my forms that I created in this list.
I do have the ability to capture the PHP error reports if that would help.
For instance
$CRLF in BROWSE.PHP claims to be an unassigned variable on multiple lines for instance.
Correct, I cannot add the wizard's Form to the Forms Tab via Access Levels section. That pop-up list does not respond to mouse clicks like other areas of the site does. Manually typing the name fails also. However I can see the list just fine.
I do see my forms that I created in this list.
I do have the ability to capture the PHP error reports if that would help.
For instance
$CRLF in BROWSE.PHP claims to be an unassigned variable on multiple lines for instance.
Re: User Level Access setup for FORMS Question
MikeM,
I'm not sure what to say.
You can see the Form in the list but you can't select it?
Steven
I'm not sure what to say.
You can see the Form in the list but you can't select it?
Steven
-
- Posts: 3
- Joined: Sun Dec 16, 2012 10:26 am
Re: User Level Access setup for FORMS Question
Correct Steven.
The text just sort of highlights while clicking, but no action.
***edit add // all other nuBuilder interfaces work well. //
As long as what I described above about versions and the installation seems ok I am at a loss too.
The scripts have never crashed, and in top level access they modify and interact with my tables in the database just fine.
I would imagine it maybe the PHP settings on that shared hosting "cloud" server. We are allowed to poke a few things in the PHP INI.
Drupal CMS, and about 40 of my php scripts for MySQL access are doing well on there.
I'll hunt around using the server error log and attempt to understand the source code as a guide and provide feed back.
This is the best style interface out there yet! Keep up the great work.
Mike
The text just sort of highlights while clicking, but no action.
***edit add // all other nuBuilder interfaces work well. //
As long as what I described above about versions and the installation seems ok I am at a loss too.
The scripts have never crashed, and in top level access they modify and interact with my tables in the database just fine.
I would imagine it maybe the PHP settings on that shared hosting "cloud" server. We are allowed to poke a few things in the PHP INI.
Drupal CMS, and about 40 of my php scripts for MySQL access are doing well on there.
I'll hunt around using the server error log and attempt to understand the source code as a guide and provide feed back.
This is the best style interface out there yet! Keep up the great work.
Mike
Re: User Level Access setup for FORMS Question
Thanks Mike.
Let as many people know about nuBuilder as you can!
Steven
Let as many people know about nuBuilder as you can!
Steven
-
- Posts: 503
- Joined: Thu May 24, 2012 2:08 am
- Location: Milan, Italy
- Contact:
Re: User Level Access setup for FORMS Question
Mike,
Hope this helps.
Max
Sometimes on shared hosting, parameters in php.ini can be overridden via htaccess, for example:MikeM wrote:We are allowed to poke a few things in the PHP INI
Code: Select all
php_value max_input_vars 10000
php_value post_max_size 32M
php-value max_execution_time 600
php_value memory_limit 512M
php_value magic_quotes_gpc Off
php_flag display_errors Off
php_flag suhosin.simulation On
Max