View Single Post
  #20  
Old 05-18-2007, 10:26 AM
Angelox
AX Classic Developer
 
Join Date: May 2006
Location: filler
Posts: 2,049
Default

Any luck yet? here's some Sql lines you can run -

This will check to see if the IP is proper;

Code:
SELECT minilogin_ip FROM ax_classic.account where name = "angelox";
ax_classic is the database in use and angelox is the account name

Code:
UPDATE ax_classic.account set minilogin_ip="192.168.2.103"  where name="angelox";
this will set the IP address via SQL command shell. so you can cut/paste use these with proper account name and IP use the first one for checking
Reply With Quote