MyBB Community Forums

Full Version: Table creation problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It appears that the MyBB installation is freezing at the table creation screen. This is what it looks like and it stays at this screen until I close the browser.

[Image: mybbrw8.jpg]

I checked all the settings and everything is correct. Can anyone give me a hand with this?

Thanks
http://community.mybboard.net/attachment.php?aid=3967

reupload the installation folder with that and refresh the page.
Still nothing. Sad

I even tried dropping and re-creating the database and also deleting the entire contents of the Mybb section of my site and re-uploading it and then overwritting the intallation files with the ones that you supplied.

Am I doing something wrong somewhere in the installation process? I've been able to install a PHP blog program to my site that uses a database so I know that PHP is enabled and that the database is working properly.
bump

Any other suggestions?
There is a error in the install.
With strict MySQL I bet, overwrite install/resources/mysql_db_tables.php
With this new one.
For the developers: #1101 - BLOB/TEXT column 'notes' can't have a default value (Alot of TEXT has default value, should be changed, I changed it in the file I attach)

Also read about it here
So any row that has a TEXT/BLOB column and has default '' should be removed?
Yes, I did it in the bug report patches.
I actually thought it'd already been done when I went through and previously fixed MySQL compatibility.
I had the same problem with the above, changed that file so it now works. But i now have a new problem:
Quote:Theme InsertionLoading and importing theme and template file...

MySQL error: 1364
Field 'allowedgroups' doesn't have a default value
Query: INSERT INTO llyfthemes (name,pid,css,cssbits,themebits,extracss) VALUES ('MyBB Master Style','0','','','','')

Please tell me what i'm doing wrong! lol Smile

Jonnyphan
Rest assured MySQL Strict compatibility has been fixed for 1.2.2

In admin/theme.php find both instances of:

$themearray = array(
	"name" => $db->escape_string($mybb->input['name']),
	"pid" => $mybb->input['pid'],
	"css" => '',
	"cssbits" => '',
	"themebits" => '',
	"extracss" => '',
);

and replace both with

$themearray = array(
	"name" => $db->escape_string($mybb->input['name']),
	"pid" => $mybb->input['pid'],
	"css" => '',
	"cssbits" => '',
	"themebits" => '',
	"extracss" => '',
	"allowedgroups" => ''
);

cheers
Pages: 1 2