yum cannot update or create new users/roles yii - yii-extensions

I have installed YUM in yii. But when i click on create new user it display page like this
The same when i click on Grand permission
and on roles displays
Any help will be appreciated.

Related

enable update manager module in drupal 8

my drupal8 is missing install new theme button, I looked in the internet that it requires to enable update manager module in drupal 8. How do I do it , Im new to drupal8 development. please help
go to your www.yoursite.com/admin/modules
then scroll down to Update Manager and then enable it

how to a place a module menu under another module menu in odoo

i just installed odoo 10 on ubuntu 16.04 LTS and everything is working fine but i want to combine all the HR apps i have installed into a single menu that i will name human resource so when i click on the menu human resource i will see all the hr apps as submenus under it on odoo, i have tried going through the settings menu in developer mode to see if i can do the configuration from there but im not seeing anything that could help me, so please i would be very happy if someone could help me with this in a step by step process thank you.
You can manage menu items from Settings/ technical/ User interface/ Menu Items.
Here you can create a new menu named Human resources and set this as parent menu for all other menu items you need under HR.
Just remember upgrade any module after that all menu items defined in the upgraded module will be changed to its default.

Build a (custom) module in Odoo OpenERP

I have downloaded the source code of Odoo (previously OpenERP) and installed OpenERP. I wanted to know how can I create new module, build it and install it (on Windows) when I don't have the Update Module List.
Take a look at this doc. This is in new api version 8.0
Odoo documentation
To build an Odoo module please Have a look here Which is the Basic Odoo Documentation to builds a new addon. To update Apps list after building the addon after restarting the server you have to follow below methods according to the versions so that you can customize it.
Odoo V8
Go to settings -> Users -> Check the Technical Features.
Update Apps list and Install custom add-on.
Odoo V9
click on About, will open wizard
Use active developer mode and then Update Apps list and Install custom add-on.
Odoo V10
Goto Settings -> Activate developer mode and then Update Apps list and Install custom add-on.
After Updating the module list you can see the custom add-on.
First of all place your module into addon folder of your odoo installation
Log in as Administrator
got to settings - users - Administrator
click on Edit
Check Technical properties
Save and refresh your browser
Go to Settings - Modules - Refresh module list
Click on Refresh
If everything went well you will see your own module within the list
Ensure you have technical features enabled for your user in the access rights section.
Once you have enabled it, logout and login again and you should see Update Module List menu item
As a matter of first importance put your module into addon envelope of your odoo establishment
When you have empowered it, logout and login again and you ought to see Update Module List menu thing. An other way to odoo erp customization
Sign in as Administrator
got to settings - clients - Administrator
tap on Edit
Check Technical properties
Spare and invigorate your program
Go to Settings - Modules - Refresh module list

Install msi in non admin users

I have created a path rule in Software Restriction Policies to install my msi (C:\temp\my_msi_file.msi). I have tried to install my application in non-admin account. It opens gently and starts installation. While installing it ended with the error "You do not have sufficient privilege to complete this action". In my installer i am accessing database and registry values. I think in this point the installation is fails. Is there anyway to run my msi application without admin privilege? It will be good to set in OS level.
Note: I want to give full access permission only the applications created by me.
Right click on the file; Select properties; Navigate to security tab; You can see the file permissions. Click edit. Select system in the list. Click Apply and Ok. Now you can install the file

Can't get run my application after installation?

I builded nsis script succesfully, but after installing, I can't run my application without admin privilegies. Anyone who knows what's a problem?
Thanks for answers. I found a bug in my application, you can read about it here
I would recommend that you just disable the run checkbox on the finish page. If you really need to start a app as non-admin, use the UAC plugin
You only need to add this in the beginning of your installation script:
RequestExecutionLevel admin
This allow two parameters: admin or user, with admin execution level you may be able to start your application with admin privileges.