Thread: fatal error
View Single Post
  #9  
Old 23rd October 2008, 16:13
djlee's Avatar
djlee djlee is offline
Senior Member
 
Join Date: Mar 2008
Posts: 183
Default
Code:
`seedbox` int(10) unsigned NOT NULL default '0.0.0.0'
theres your problem. the default value is an IP therefore 4 octets seperated with 3 points .. how many numbers do you see with 3 decimal points ...

change the field to varchar(15) .. so that it will accept 4 octets of the ints per octet (4 x 3 = 12) plus the 3 dots

i'll leave it up to the developer to fix this mistake and do whatever he deems neccassary to finish resolving the problem
Reply With Quote