The fact you're putting the ID number way up there might be your problem.
Somebody correct me if I'm wrong, but I think happens when the server loads up doors is it looks at the highest ID number and then allocates enough memory to hold that many doors. Try making your new door with only 1 higher than the highest existing ID.
You can determine what the highest existing door ID is by giving the command from a MySQL prompt:
Quote:
SELECT Max(ID) FROM Doors;
|