Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
This can be a little tricky if you’re new to Odoo because at the time of creating a new database / company it only asks you for a password and not an email address. The default username is admin. Use the password…
A lot of people, including us, have been getting really slow download speeds on the OS X El Capitan, or macOS Sierra, download. Chances are, the servers nearest to you are being seriously hammered, hence the slow download. An easy fix to this is…
Install Memcached on your server if you haven’t already done it: LINK Issue the following at shell: yum install php-pecl-memcache Now add memcache to PHP, create a file at: /etc/php.d/memcache.ini and the following to it extension=memcache.so Restart apache systemctl restart httpd Verify the…
Issue the following command to get going: yum install memcached Edit the config located at /etc/sysconfig/memcached PORT=”11211″ USER=”memcached” MAXCONN=”1024″ CACHESIZE=”640″ OPTIONS=”-l 127.0.0.1″ Make sure you set the OPTIONS section as above, also increase the CACHESIZE according to your needs Start it up: systemctl start…
Look for the exact name of the installed rpm you want to remove rpm -aq | grep -i XYZ Copy the complete line of the rpm you want to remove and issue the following to remove rpm -e XYZ Note:…
The solution two this error is one of two things, either session create is not checking for an existing session before starting one, or the php.ini has session.auto_start enabled. Make sure you create a session by checking if one doesn’t already…
Our starting point is a 64-bit, fresh CentOS 7 (minimal ) machine. Get your machine up to date before proceeding: yum update -y We’ll start by installing PostgreSQL yum install postgresql postgresql-server postgresql-libs Since this is the first time installing…
I’ve found that if you insist on installing Odoo on CentOS, like I do, doing it on CentOS 7 is the easiest and quickest way of going about it. If you have a fresh CentOS 7 minimal install that’s great,…
I almost broke something, twice! Once figuring out the issue, and the second time when I found the solution. I had this one machine which refused to connect to another machine via Remote Desktop Connection whereas I could connect via another…
-bash: ifconfig: command not found ifconfig is not longer bundled in the minimal image of CentOS 7. You could just use the alternative ip addr which will give you the same info ifconfig gives, but if you’re set in your ways like…