Recent Topics

1 May 22, 2008 18:58    

My b2evolution Version: 1.10.x

Hi There,

Using B2evo ver: 2.4.2

I am currently running an old version(1.10.2) of b2evo on another website with my host, and it installed fine and continues to run fine.

I just setup a new domain and wanted to start fresh with the newest version of b2evo. When I run through the installer, it starts creating the tables and finally stop when creating the evo_users table. This is the error message I get:

Creating b2evolution tables...
Created table «evo_users»
An unexpected error has occured!

If this error persits, please report it to the administrator.

Go back to home page
Additional information about this error:

MySQL error!

Can't create table './b2evo/evo_users.frm' (errno: 135)(Errno=1005)

Your query:

CREATE TABLE evo_users (
user_ID int(11) unsigned NOT NULL auto_increment,
user_login varchar(20) NOT NULL,
user_pass CHAR(32) NOT NULL,
user_firstname varchar(50) NULL,
user_lastname varchar(50) NULL,
user_nickname varchar(50) NULL,
user_icq int(11) unsigned NULL,
user_email varchar(255) NOT NULL,
user_url varchar(255) NULL,
user_ip varchar(15) NULL,
user_domain varchar(200) NULL,
user_browser varchar(200) NULL,
dateYMDhour datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
user_level int unsigned DEFAULT 0 NOT NULL,
user_aim varchar(50) NULL,
user_msn varchar(100) NULL,
user_yim varchar(50) NULL,
user_locale varchar(20) DEFAULT 'en-EU' NOT NULL,
user_idmode varchar(20) NOT NULL DEFAULT 'login',
user_allow_msgform TINYINT NOT NULL DEFAULT '1',
user_notify tinyint(1) NOT NULL default 1,
user_showonline tinyint(1) NOT NULL default 1,
user_grp_ID int(4) NOT NULL default 1,
user_validated TINYINT(1) NOT NULL DEFAULT 0,
PRIMARY KEY user_ID (user_ID),
UNIQUE user_login (user_login),
KEY user_grp_ID (user_grp_ID)
)

Can anyone please help?

Thanks,
marc

EDIT: Fixed version info in Title

2 May 22, 2008 19:36

as it has said; it was an unexpected error, try a fresh install (:, kidding, but it may work, try once more, if not someone will figure sth out, i ve always wondered why b2 did not have an external .sql to import yourself by default

3 May 22, 2008 19:42

Thanks for your reply. I tried the following:

-deleting all of the tables and trying the installer again - same error.
-deleting the db and re-creating it, then trying to run the installer - Same error.

Thanks,
marc

4 May 23, 2008 17:49

Try DROPPING all the tables in your brand-new-but-not-working database, then running only the query you pasted in your first post here.

CREATE TABLE evo_users (
user_ID int(11) unsigned NOT NULL auto_increment,
user_login varchar(20) NOT NULL,
user_pass CHAR(32) NOT NULL,
user_firstname varchar(50) NULL,
user_lastname varchar(50) NULL,
user_nickname varchar(50) NULL,
user_icq int(11) unsigned NULL,
user_email varchar(255) NOT NULL,
user_url varchar(255) NULL,
user_ip varchar(15) NULL,
user_domain varchar(200) NULL,
user_browser varchar(200) NULL,
dateYMDhour datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
user_level int unsigned DEFAULT 0 NOT NULL,
user_aim varchar(50) NULL,
user_msn varchar(100) NULL,
user_yim varchar(50) NULL,
user_locale varchar(20) DEFAULT 'en-EU' NOT NULL,
user_idmode varchar(20) NOT NULL DEFAULT 'login',
user_allow_msgform TINYINT NOT NULL DEFAULT '1',
user_notify tinyint(1) NOT NULL default 1,
user_showonline tinyint(1) NOT NULL default 1,
user_grp_ID int(4) NOT NULL default 1,
user_validated TINYINT(1) NOT NULL DEFAULT 0,
PRIMARY KEY user_ID (user_ID),
UNIQUE user_login (user_login),
KEY user_grp_ID (user_grp_ID)
) 


This will tell us if for some reason your new server will simply never ever like this table, or if something else unknown is causing the blockage. IF you can make that table then (again) DROP it and get a brand new copy of the 242 package, unzip it, edit the conf/_basic_config.php file to suit your needs, and upload all the files again. Actually delete all the files from your server first! The idea is if you have a bonked up set of files then completely replacing them all the way back to the .zip package will take care of that issue.

5 May 23, 2008 19:09

Thanks for your help!

I dropped all of the tables, ran the sql statement and it created the table with no problems! I deleted everything, downloaded 2.4.2 again, and am uploading now. I will post my results.

Thanks again!

6 May 23, 2008 19:38

Hi Again, no, it still stops at the same point when I run via the installer. :-(

But I am getting a new errno now - Errcode: 28 - which means that MySQL is out of available disk space if I am correct....*groan* time to call the web host.

7 May 23, 2008 21:08

errno: 135 could mean that there is too much files in /tmp and so mysql can't create temporary file

8 May 26, 2008 18:51

Hi All - Thanks for all of your help. My hosting provider did something...and I was able to install and get it up and running!


Form is loading...