We will now update your PostgreSQL configuration files to let the server know that computers in your same subnet (local network) are allowed access to the SQL server.
Open the pg_hba.conf configuration file by clicking Start -> Programs -> PostgreSQL-> Configuration Files -> pg_hba.conf. Scroll to the bottom of the file, we are looking for text that is similar to this:
# TYPE DATABASE USER CIDR-ADDRESS METHOD
# IPv4 local connections:
host all all 127.0.0.1/32 md5
# IPv6 local connections:
#host all all ::1/128 md5
If the third digit in your computer's IP address is a 0 (zero), then add this line to the bottom of the document, below the text above:
host all all 192.168.0.0/24 md5
If the third digit in your computer's IP address is a 1 (one), then add this line to the bottom of the document, below the text above:
host all all 192.168.1.0/24 md5
Save the text file to continue.