Advanced Search
Search Results
168 total results found
Install Magetno with Docker Compose
Install on docker compose
Configure your .yml file like this: version: '3.1' services: web: container_name: odoo image: odoo:16.0 depends_on: - db ports: - "8069:8069" volumes: - /your/local/directory:/var/lib/odoo - /your/loc...
Install Kasm on docker compose
https://geekscircuit.com/kasm-workspaces-with-docker/
Install Remotely on docker compose
https://hub.docker.com/r/translucency/remotely
How to clean log files in Linux
Fisrt, See the logs that are in the logs area of /var du -h /var/log/ The du command prints the estimated disk space usage of each file and directory for the path that you specified.The -h argument causes the command to print the information in a human-reada...
"if"
An example of the "if" function age = input("What is your age?") if age > str(30): print("Your getting up there...") elif age >= str(20): print("Your still Young.") elif age >= str(10): print("You lil thang you...") else: print("Baby...
Troubleshooting Odoo Docker and Docker Compose
I figured out some good debugging methods that both solved this problem and seem generally useful for figuring out Docker persistent data volume issues. Test 1: can the container work with an empty Docker volume? This is a really easy test: just create a new...
Homer Functions
Server app card status dot: In the config file, include the "type: Ping" for the status dot. -Note: Make sure the P is capitalized, with no quotes. It will not work otherwise. This should work with or without quotes. services: - name: "Media" ...
Move / Transfer file from host do docker container
Using terminal From container to host: sudo docker cp container-id:/path/filename.txt ~/Desktop/filename.txt From host to container: sudo docker cp ~/Desktop/filename.txt container-id:/path/filename.txt
Troubleshooting Odoo | Docker permissions:
Docker permissions: FYI: On first setup, main/root directory is set to "root" Inside your root directory, Your main website directory well be set to root. Change it. Go into the docker container and get the user ID number. In my case it was 102. Exit the c...
Install Odoo "Community" on local machine
Odoo ‘deb’ package uses PostgreSQL. Install that first sudo apt install postgresql -y Repository: wget -q -O - https://nightly.odoo.com/odoo.key | sudo gpg --dearmor -o /usr/share/keyrings/odoo-archive-keyring.gpg echo 'deb [signed-by=/usr/share/keyrings...
Odoo File Locations
/etc/odoo /var/lib/odoo/.local/share/Odoo
Samba Share Setup
Make sure you have a directory set up that you are going to be sharing. If it is going to be a new one, create that directory where you need it, on the local machine that the data will live. /home/the/share/file/location or something like that. If it already...
Samba Users
Since Samba doesn't use the system account password, we need to set up a Samba password for our user account sudo smbpasswd -a username Note: The user name must belong to a system account or else it won't work. The password is the part that will change to i...
Troubleshooting Samba / Cifs share Permissions
Cifs share doesn't preserve permission configuration in smb.conf (755 instead of 777) There are two options that can help 'save the day': dir_mode and file_mode. (placeholders in green italics) Setting both these to 0777 gives full permissions that the ho...
Odoo addons
To add modules: first create a location of where the modules will be stored. Odoo does not make one by default. You will need to create your own path. /home/some/location/you/want/extra-addons Edit the files: /etc/odoo/odoo.conf Add path in that file: An...
Odoo | Nginx config file
This is my current version: server { server_name mywebsite.com; location / { proxy_pass http://127.0.0.1:8069; proxy_connect_timeout 3600; proxy_read_timeout 3600; ...
Odoo Website | how to remove header menu item
Go to your website section and then configuration Website> Configuration> Menus There you should have the option to choose the website you want to see the menus of. The first option for the website should be the one you want. click on that one. In ther...
Change internal IP to DNS | Odoo backend
Possible error messages: "device_id and device_name are required for private IP: http://192.168.0.0:8069/google_gmail/confirm" "How to change ip to domain name(http://144.144.144.144:8069/?db=A1010101=>A1010101?" Or something like that... This means Odoo i...
Migrate Nextcloud To Another Server
Restoring from backup. Use this same method for migrating. 1) You use Rsync to move the backed up files to the new server. It will keep the tags and other permission that the backup was oriniglally stored with. If you don't care about that, just copy it. (rs...