Back to Forum Home Page
Forum Topics
- Application Installation18
- FAQs6
- Server Setup4
- Application Errors/Issues4
- ONLYOFFICE Installation3
- FlinkISO API3
- Available Modules2
- Getting Started2
- Custom Forms1
- Other1
- Bug Report0
Q. How to get access to FlinkISO Forum?
Ans:In order to able to post, you must be a registered user either with FlinkISO either On-premise or Cloud. You can login to the forum via using your email address, which you or your administrator used duing the registration on the websile. Once you have the email address, use the same email addres and generate a token. We will send you the token on the same email address. Use that token along with the email address to login. You can read posts without login.
Home > Getting Started
Cannot switch on CREATOR rights
Hello,
after creating the first employees and users I'm now struggeling with changing the creator rights as well as approver. Both icons can be switched to green but seems it didn't get saved. After refreshing the page both are back on the red x.
Any Idea?
2 days, 6 hours ago | Open | By: Oliver SpraulHello Oliver.
Can you check your “users” table using phpmyadmin to see if the is_creator field is available? If not,
- Try and run the update once and check if the field is getting added
- OR you can try and run the following SQL and it should resolve the issue.
ALTER TABLE `qc_documents` ADD `data_update_type` INT(1) NULL DEFAULT '0' AFTER `schedule_id`;
ALTER TABLE `users` ADD `is_creator` TINYINT(1) NULL DEFAULT '1' AFTER `is_approver`, ADD `is_publisher` TINYINT(1) NULL DEFAULT '1' AFTER `is_creator`;
-FlinkISO Help Team
1 day, 17 hours ago | By: FlinkISO Team
Hello,
thanks for your reply, the mentioned field is_creator is not existing in users table. I tried to update the system from the web page but got access denied error without further details. Is there an option to run the update also from console?
If that would not work I will try to use the sql commands.
Thanks and greetings!!
1 day, 5 hours ago | By: Oliver SpraulHi,
Can you try running the following commands from phpmyadmin?
ALTER TABLE `qc_documents` ADD `data_update_type` INT(1) NULL DEFAULT '0' AFTER `schedule_id`;
ALTER TABLE `users` ADD `is_creator` TINYINT(1) NULL DEFAULT '1' AFTER `is_approver`, ADD `is_publisher` TINYINT(1) NULL DEFAULT '1' AFTER `is_creator`;
-FlinkISO Help Team
1 day, 4 hours ago | By: FlinkISO Team
Hello,
seems that worked now with the alter table command but now the next problem popped up: I created a new document category but can't publish that because system says I'm have no approval rights. Based on user definition I have.
Is there an issue when working with user having admin rights?
Can you please check question above regarding update from command line? Web client didn't work.
Thanks !!
1 day, 3 hours ago | By: Oliver Spraul
Hello,
Mark yourself as Approver, then logout and login. That should resolve the issue. With new changes, a person can be Admin, but not necessarily Approver.
-FlinkISO Help Team
23 hours, 48 minutes ago | By: FlinkISO Team