Webmin Navigation Menu - webmin

I'm being a complete dullard and cannot for the life of me remember how to add a module to the navigation menu within webmin!
At the minute in the navigation menu under the Servers tab I only have 4 servers listed two of which i don't use.
All I want to do is add another module that is already installed to the list and remove the ones I do not use.

Try Webmin > Webmin Configuration > Reassign Modules
This allows you to choose which module appears in which section of the admin bar. It doesn't actually install or remove anything, just changes how it is shown.
If you want to actually install or delete modules (not normally necessary) then you want Webmin > Webmin Configuration > Webmin Modules

Related

Where are Webmin's available modules stored?

The modules a Webmin user can see in the menu can be configured via the GUI under Webmin/Webmin Users/Available Webmin modules. Where are these settings stored? I need to restore them programmatically on a fresh Webmin installation - without accessing the GUI.
The Available Webmin Modules that are displayed in the menu are reflected in file /etc/webmin.acl. It contains a space seperated list where modules are added when changing the settings via GUI.
In this case the configuration was made for the root user. The list therefore has the format
root: moduleX, moduleY.
It is likely that configurations for other users would be added in the same format, e.g.:
userXYZ: moduleX, moduleY
Restoring webmin.acl did the trick.

How can I install apps/modules in odoo v9

I have started using odoo and I would like to install some modules like Custom Invoice template, Pls recommend some docs or steps to install new modules.
Activate the developer mode by doing to About page (by clicking the user profile picture).
Go to settings choose "Users" from the menu Click the current user, and edit it by checking "Technical features"
Refresh the page
Unpacked the module at ../server/openerp/addons
Go to modules under settings and Click the "Update module list" menu item.
The app should display under local modules, so find your new module in Settings > Modules > Local Modules and click on the install button.
I am just posting the best steps:
create a separate folder custom_addons and place it inside the located folder of odoo in parallel with addons folder like
/opt/odoo/custom_addons ,
Now your odoo directory have two module source /opt/odoo/addons and /opt/odoo/custom_addons.
It's time to include this newly create folder in the addons path of odoo server .
Open your odoo server config :nano /etc/odoo-server.conf
append the newly create addons in addons_path like:
addons_path = /opt/odoo/custom_addons,/opt/odoo/addons
save the file and restart your odoo server .
Now place your new modules [create/purchased] in side the
custom_addons then update module list and search the name of module and install it.

PhpStorm Deployment menu greyed out

I've added a server in PhpStorm deployment settings but the Tools -> Deployment -> Upload to menu is still greyed out.
You need to specify a deployment path mapping in your server. Even if it's just the root path, you need to enter /. PhpStorm doesn't do it automatically.
Go to your server in deployment settings, click the 'Mappings' tab and enter slash (or your mapping) in the 'Deployment path on server' field. You don't need to enter a web path. Deployment menu should be ungreyed now.
In version 2019.2, if you dont set the path to / in mapping, it will grayed out.
Previous version, you could leave it blank
Also, if your local path (inside mappings configuration) is not your project root, you have to click on the deployable folder in the project tree to enable the menu.
Also, if the Deployment menu is completely missing at the bottom of the context menu, then set up a default server.
Click the server with the check mark to make a server the default option for a project.
Then you will get this additional menu when you right click on a file, folder, or the project.
I also encountered this issue in PyCharm Professional 2022.1.
Since the aforementioned solutions did not work for me, and it took me some time to resolve, I am providing the solution I found.
Clicking on Tools -> Deployment -> upload to servername was not working for me no matter what I tried.
However, I could right-click on the main project folder (on the left of the PyCharm window, where the project folder/file structure is visible). This right-click opens a menu, where there is an option for deployment -> upload to servername.
Once I clicked this, not only it worked, but the classical way (Tools -> Deployment -> upload to ) ceased to be grayed out also.
If deployment was available and suddenly no longer works, confirm that your credentials didn't get wiped from the deployment settings (Connection tab).
If any of these answers don't help, because you can't even see the server menu, you probably have the Remote Hosts Access plugin disabled.
Go to settings, go to the plugins, and enable Remote Hosts Access.
Please check if the following options are enabled in settings(Ctrl+Alt+S). It goes uncheck if Php Storm crashes. Check the below options and restart the editor.
This works for ver 2017.2.1
Also, check Windows->Store current layout as the default just to make sure in the future you can restore the layout.
It's possible the opened file in the editor belongs to a External Library (bottom of project tree).
These External library files can't be deployed.

Standard modules not found after installing on odoo 8

I'm currently trying to install a module (service level agreement module) on Odoo 8. I downloaded the zip, copied it over to the addon directory specified in the configuration file, and then restarted the server. To ensure it restarted I killed the old process, check that it was dead, and then started it up again.
I attempted to search for the module (searched for Service), and it was not found.
Am I missing something?
Thanks.
They appear after you update Module List but you need the "Technical Features" permission. You even have to set it for your admin user like this.
To activate the technical features, you have to add access rights to your user. You must edit your current user from the menu Settings > Users. Edit your user (probably admin) and, in the Access Rights tab, check the option Technical Features.
Did you update your list of modules ? (Settings / Modules / Update Module List).
You need the 'Technical Features' rights to do that.

how can I view the installed openerp modules

Hi I am using openerp 7 on my XP . I have created a custom openerp module . It was shown in openerp and I installed it successfully but now I dont know where it has been installed. I also cannot view other installed openerp modules . I wanted to see the installed modules . How to view them?
Hopes for suggestion
When you said you installed the module, what all you have done? Here are some steps to follow.
Create the module (detail on how to create a module is out of scope)
copy the module folder in to the addons folder
Login in as admin
you probably want to see technical details as admin. So, go to "Settings / Users / Users". Open the admin record and edit it. And on access rights tab enable "Technical features". Save the form and reload the page.
If the DB is created before the modules folder was copied in to addons, go to "Settings / Modules / Update module list" and Update the module list.
Go to "Settings / Modules / Installed module" remove the "installed" filter from search box and search for your module name.
Once found the module, click the install button.
from "Settings / Modules / Installed module" find and open the module in form view. Under the "Technical Data" tab, you will see the views added by the module. Under "Features tab" you will all the menus and report created by the module.