Jump to content

Conexion de sistemas


PablocoDj

Recommended Posts

Estimados de Chilecomparte.

 

Tengo un conflicto con una aplicación web que me pidieron instalar en 2 computadores, en uno que se realicen ventas y en otro se ingrese productos y que estos esten conectados. Es necesario un hosting o se puede conectar de otra forma ???

Link to comment
Share on other sites

Es muy grande el sistema como para tener los productos y las ventas separadas?, lo dudo. lo encuentro innecesario y sin sentido. Si vas a hacer un sistema distribuido, harías un balanceo de carga, pero no necesariamente cosas separadas, aunque facebook si separa todo, pero es facebook, tiene su tamaño.

Link to comment
Share on other sites

Si se puede, yo una vez hice un sistema y lo monté en 1 PC y con un cable de red conecte el server a otro PC; le dí permisos y ambos tenían acceso al sistema sin estar en un hosting.....si es un sistema para un negocio pequeño pues sería fácil de hacer ;)

 

Personalmente seguí estas instrucciones y funciono muy bien....que tiempos aquellos, cuando era un novato :notonto:

 

 

Open httpd.conf of Apache server (backup first) Look for the the following : Listen

 

Change the line to

Listen *:80

 

Still in httpd.conf, look for the following (or similar):

<Directory />

Options FollowSymLinks

AllowOverride None

Order deny,allow

Allow from all

Deny from all

</Directory>

 

Change this block to :

<Directory />

Options FollowSymLinks

AllowOverride None

Order deny,allow

Allow from all

#Deny from all

</Directory>

 

Save httpd.conf and restart apache

 

Open port 80 of the server such that everyone can access your server.

 

Open Control Panel >> System and Security >> Windows Firewall then click on “Advance Setting” and then select “Inbound Rules” from the left panel and then click on “Add Rule…”. Select “PORT” as an option from the list and then in the next screen select “TCP” protocol and enter port number “80” under “Specific local port” then click on the ”Next” button and select “Allow the Connection” and then give the general name and description to this port and click Done.

 

Restart WAMP and access your machine in LAN or WAN.

 

Saludos :krider:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...