Hey Scidave or any other
I'm with a new problem here..
I've made a simple construct game with some of those scripts so my friend could test if he can access my database and add/read from it...
I've changed MySQLdb.connect in inital script to:
db = MySQLdb.connect("MY GLOBAL IP","root","","highscores" )
and I compiled everything selecting the pyc files.
When he tries to test the game, appear an error where it says "host 'his global ip' is not allowedto connect to this MySQL server"
so probably i had to change something to allow remote access to my db.. so I looked for help in google and found that i need to add in my.cnf
bind-address=my_ip and add a comment to skip-networking.
I'm using XAMPP so i've found this file at the mysql folder and the skip-networking was already commented and I added the bind-address=my_localip
but he still had the same error.. so probably it not worked or I'm doing something wrong.. any1 know what it should be??
thanks..