Cześć, mam errory sql w mybb, czy możecie mi pomóc - głupie pytanie biggrin.gif

mam http://serious-rp.xaa.pl/changes.php i gdy chcę napisać nową zmianę a raczej już ją dodać to wyskakuje error sql
Kod
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Zmiany'','Wczoraj pod wieczór dodaliśmy parę nowych możliwości na forum i w' at line 3
Query:
INSERT INTO mybb_changes (`title`,`text`,`dateline`,`category`) VALUES ('Nowa podstrona 'Zmiany'','Wczoraj pod wieczór dodaliśmy parę nowych możliwości na forum i właśnie jedna z nich i praktycznie najważniejsza to właśnie ta podstrona.','1295878927','forum')

tabela
  1. CREATE TABLE IF NOT EXISTS `mybb_changes` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `title` varchar(255) COLLATE utf8_polish_ci NOT NULL,
  4. `text` text COLLATE utf8_polish_ci NOT NULL,
  5. `dateline` int(44) NOT NULL,
  6. `category` varchar(255) COLLATE utf8_polish_ci NOT NULL,
  7. PRIMARY KEY (`id`)
  8. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci AUTO_INCREMENT=10 ;


mam panel do gry sa-mp http://serious-rp.xaa.pl/gamecp.php i gdy chcę napisać aplikacje http://serious-rp.xaa.pl/gamecp.php?action=register to wyskakuje error sql i także mybb biggrin.gif
Kod
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Query:
SELECT * FROM mybb_users WHERE uid=


gdy wchodzę w usercp i edytuj profil a następnie aktualizuj to wyskakuje error sql mybb
Kod
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1054 - Unknown column 'm.isgroup' in 'where clause'
Query:
SELECT m.*, u.username, u.usergroup, u.displaygroup FROM mybb_moderators m LEFT JOIN mybb_users u ON (m.id=u.uid) WHERE m.isgroup = '0' ORDER BY u.username



mybb_users z mojego forum
  1. CREATE TABLE IF NOT EXISTS `mybb_users` (
  2. `uid` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  3. `username` varchar(120) NOT NULL DEFAULT '',
  4. `password` varchar(120) NOT NULL DEFAULT '',
  5. `salt` varchar(10) NOT NULL DEFAULT '',
  6. `loginkey` varchar(50) NOT NULL DEFAULT '',
  7. `email` varchar(220) NOT NULL DEFAULT '',
  8. `gs` varchar(6) NOT NULL DEFAULT '0',
  9. `postnum` int(10) NOT NULL DEFAULT '0',
  10. `avatar` varchar(200) NOT NULL DEFAULT '',
  11. `avatardimensions` varchar(10) NOT NULL DEFAULT '',
  12. `avatartype` varchar(10) NOT NULL DEFAULT '0',
  13. `usergroup` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
  14. `additionalgroups` varchar(200) NOT NULL DEFAULT '',
  15. `displaygroup` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
  16. `usertitle` varchar(250) NOT NULL DEFAULT '',
  17. `regdate` bigint(30) NOT NULL DEFAULT '0',
  18. `lastactive` bigint(30) NOT NULL DEFAULT '0',
  19. `lastvisit` bigint(30) NOT NULL DEFAULT '0',
  20. `lastpost` bigint(30) NOT NULL DEFAULT '0',
  21. `website` varchar(200) NOT NULL DEFAULT '',
  22. `icq` varchar(10) NOT NULL DEFAULT '',
  23. `aim` varchar(50) NOT NULL DEFAULT '',
  24. `yahoo` varchar(50) NOT NULL DEFAULT '',
  25. `msn` varchar(75) NOT NULL DEFAULT '',
  26. `birthday` varchar(15) NOT NULL DEFAULT '',
  27. `birthdayprivacy` varchar(4) NOT NULL DEFAULT 'all',
  28. `signature` text NOT NULL,
  29. `allownotices` int(1) NOT NULL DEFAULT '0',
  30. `hideemail` int(1) NOT NULL DEFAULT '0',
  31. `subscriptionmethod` int(1) NOT NULL DEFAULT '0',
  32. `invisible` int(1) NOT NULL DEFAULT '0',
  33. `receivepms` int(1) NOT NULL DEFAULT '0',
  34. `receivefrombuddy` int(1) NOT NULL DEFAULT '0',
  35. `pmnotice` int(1) NOT NULL DEFAULT '0',
  36. `pmnotify` int(1) NOT NULL DEFAULT '0',
  37. `threadmode` varchar(8) NOT NULL DEFAULT '',
  38. `showsigs` int(1) NOT NULL DEFAULT '0',
  39. `showavatars` int(1) NOT NULL DEFAULT '0',
  40. `showquickreply` int(1) NOT NULL DEFAULT '0',
  41. `showredirect` int(1) NOT NULL DEFAULT '0',
  42. `ppp` smallint(6) NOT NULL DEFAULT '0',
  43. `tpp` smallint(6) NOT NULL DEFAULT '0',
  44. `daysprune` smallint(6) NOT NULL DEFAULT '0',
  45. `dateformat` varchar(4) NOT NULL DEFAULT '',
  46. `timeformat` varchar(4) NOT NULL DEFAULT '',
  47. `timezone` varchar(4) NOT NULL DEFAULT '',
  48. `dst` int(1) NOT NULL DEFAULT '0',
  49. `dstcorrection` int(1) NOT NULL DEFAULT '0',
  50. `buddylist` text NOT NULL,
  51. `ignorelist` text NOT NULL,
  52. `style` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
  53. `away` int(1) NOT NULL DEFAULT '0',
  54. `awaydate` int(10) UNSIGNED NOT NULL DEFAULT '0',
  55. `returndate` varchar(15) NOT NULL DEFAULT '',
  56. `awayreason` varchar(200) NOT NULL DEFAULT '',
  57. `pmfolders` text NOT NULL,
  58. `notepad` text NOT NULL,
  59. `referrer` int(10) UNSIGNED NOT NULL DEFAULT '0',
  60. `referrals` int(10) UNSIGNED NOT NULL DEFAULT '0',
  61. `reputation` bigint(30) NOT NULL DEFAULT '0',
  62. `regip` varchar(50) NOT NULL DEFAULT '',
  63. `lastip` varchar(50) NOT NULL DEFAULT '',
  64. `longregip` int(11) NOT NULL DEFAULT '0',
  65. `longlastip` int(11) NOT NULL DEFAULT '0',
  66. `language` varchar(50) NOT NULL DEFAULT '',
  67. `timeonline` bigint(30) NOT NULL DEFAULT '0',
  68. `showcodebuttons` int(1) NOT NULL DEFAULT '1',
  69. `totalpms` int(10) NOT NULL DEFAULT '0',
  70. `unreadpms` int(10) NOT NULL DEFAULT '0',
  71. `warningpoints` int(3) NOT NULL DEFAULT '0',
  72. `moderateposts` int(1) NOT NULL DEFAULT '0',
  73. `moderationtime` bigint(30) NOT NULL DEFAULT '0',
  74. `suspendposting` int(1) NOT NULL DEFAULT '0',
  75. `suspensiontime` bigint(30) NOT NULL DEFAULT '0',
  76. `suspendsignature` int(1) NOT NULL DEFAULT '0',
  77. `suspendsigtime` bigint(30) NOT NULL DEFAULT '0',
  78. `coppauser` int(1) NOT NULL DEFAULT '0',
  79. `classicpostbit` int(1) NOT NULL DEFAULT '0',
  80. `loginattempts` tinyint(2) NOT NULL DEFAULT '1',
  81. `failedlogin` bigint(30) NOT NULL DEFAULT '0',
  82. `usernotes` text NOT NULL,
  83. `sr_gadu` varchar(16) NOT NULL,
  84. `sr_tlen` text NOT NULL,
  85. `sr_skype` varchar(64) NOT NULL,
  86. `pktpremium` int(8) NOT NULL DEFAULT '0',
  87. `upp` tinyint(1) NOT NULL DEFAULT '2',
  88. `status` int(2) NOT NULL DEFAULT '0',
  89. `premium` int(24) NOT NULL DEFAULT '0',
  90. `newcomments` int(10) NOT NULL DEFAULT '0',
  91. `reg` int(2) NOT NULL DEFAULT '0',
  92. `accounts` int(1) NOT NULL DEFAULT '0',
  93. `tdp` int(1) NOT NULL DEFAULT '0',
  94. `developer` int(1) NOT NULL DEFAULT '0',
  95. `css` text NOT NULL,
  96. `styl-profile` int(2) NOT NULL DEFAULT '0',
  97. `mypage` text NOT NULL,
  98. `gamepoint` int(29) NOT NULL DEFAULT '50',
  99. `mypageon` int(1) NOT NULL DEFAULT '0',
  100. `skorka` varchar(255) NOT NULL,
  101. `premium_rozpoczecie` varchar(50) NOT NULL,
  102. `premium_zakonczenie` varchar(50) NOT NULL,
  103. `akismetstopped` int(11) NOT NULL DEFAULT '0',
  104. `user_img_prof` varchar(100) NOT NULL,
  105. `deniedsupport` int(1) NOT NULL DEFAULT '0',
  106. `deniedsupportreason` int(5) NOT NULL DEFAULT '0',
  107. `deniedsupportuid` int(10) NOT NULL DEFAULT '0',
  108. `mysupportdisplayastext` int(1) NOT NULL DEFAULT '0',
  109. `mysb_banned` smallint(1) NOT NULL DEFAULT '0',
  110. `mysb_banned_reason` varchar(255) NOT NULL DEFAULT '',
  111. `remember` int(1) DEFAULT NULL,
  112. PRIMARY KEY (`uid`),
  113. UNIQUE KEY `username` (`username`),
  114. KEY `usergroup` (`usergroup`),
  115. KEY `birthday` (`birthday`),
  116. KEY `longregip` (`longregip`),
  117. KEY `longlastip` (`longlastip`)
  118. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=114 ;