Will do, thank you for your help!LDM wrote:I'm not 100% but I'm sure I saw on phpbb.com that many problems like that are because running MYSQL prior to 4.1, might be worth having a look on that.
Search found 6 matches
- Sun Dec 07, 2008 3:22 am
- Forum: ModphpBB3 Installation
- Topic: phpBB3 to ModphpBB3 Instructions For 1.0.3/4 Version
- Replies: 104
- Views: 284903
Re: phpBB3 to ModphpBB3 Instructions
- Sun Dec 07, 2008 3:05 am
- Forum: ModphpBB3 Installation
- Topic: phpBB3 to ModphpBB3 Instructions For 1.0.3/4 Version
- Replies: 104
- Views: 284903
Re: phpBB3 to ModphpBB3 Instructions
4.0LDM wrote:It sounds like your host is using an old MYSQL version, any ideas what it's running?
- Sun Dec 07, 2008 2:59 am
- Forum: ModphpBB3 Installation
- Topic: phpBB3 to ModphpBB3 Instructions For 1.0.3/4 Version
- Replies: 104
- Views: 284903
Re: phpBB3 to ModphpBB3 Instructions
Tried that and I got this:
SQL query:
CREATE TABLE phpbb_shoutbox(
shout_id int( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
shout_user_id mediumint( 8 ) NOT NULL ,
shout_time int( 11 ) NOT NULL ,
shout_ip varchar( 32 ) CHARACTER SET latin1 NOT NULL ,
shout_text text COLLATE utf8_bin NOT NULL ,
shout ...
SQL query:
CREATE TABLE phpbb_shoutbox(
shout_id int( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
shout_user_id mediumint( 8 ) NOT NULL ,
shout_time int( 11 ) NOT NULL ,
shout_ip varchar( 32 ) CHARACTER SET latin1 NOT NULL ,
shout_text text COLLATE utf8_bin NOT NULL ,
shout ...
- Sun Dec 07, 2008 2:52 am
- Forum: ModphpBB3 Installation
- Topic: phpBB3 to ModphpBB3 Instructions For 1.0.3/4 Version
- Replies: 104
- Views: 284903
Re: phpBB3 to ModphpBB3 Instructions
Now I got this error:
SQL query:
CREATE TABLE phpbb_shoutbox(
shout_id int( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
shout_user_id mediumint( 8 ) NOT NULL ,
shout_time int( 11 ) NOT NULL ,
shout_ip varchar( 32 ) CHARACTER SET latin1 NOT NULL ,
shout_text text COLLATE utf8_bin NOT NULL ,
shout ...
SQL query:
CREATE TABLE phpbb_shoutbox(
shout_id int( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
shout_user_id mediumint( 8 ) NOT NULL ,
shout_time int( 11 ) NOT NULL ,
shout_ip varchar( 32 ) CHARACTER SET latin1 NOT NULL ,
shout_text text COLLATE utf8_bin NOT NULL ,
shout ...
- Sun Dec 07, 2008 2:42 am
- Forum: ModphpBB3 Installation
- Topic: phpBB3 to ModphpBB3 Instructions For 1.0.3/4 Version
- Replies: 104
- Views: 284903
Re: phpBB3 to ModphpBB3 Instructions
add it to this? CREATE TABLE `phpbb_announcement_centre` (
`announcement_show` tinyint (1) NOT NULL,
`announcement_enable` tinyint (1) NOT NULL,
`announcement_enable_guests` tinyint (1) NOT NULL,
`announcement_show_birthdays` tinyint (1) NOT NULL,
`announcement_birthday_avatar` tinyint (1) NOT ...
`announcement_show` tinyint (1) NOT NULL,
`announcement_enable` tinyint (1) NOT NULL,
`announcement_enable_guests` tinyint (1) NOT NULL,
`announcement_show_birthdays` tinyint (1) NOT NULL,
`announcement_birthday_avatar` tinyint (1) NOT ...
- Sun Dec 07, 2008 2:01 am
- Forum: ModphpBB3 Installation
- Topic: phpBB3 to ModphpBB3 Instructions For 1.0.3/4 Version
- Replies: 104
- Views: 284903
Re: phpBB3 to ModphpBB3 Instructions
remove the ( ' ) infront and behind the phpbb_announcement_centre so it looks like:
CREATE TABLE phpbb_announcement_centre (
see if that works
I am having the same problem. I removed the (') and it comes up with this:
SQL query:
CREATE TABLE phpbb_announcement_centre(
`announcement_show ...