MyBB Community Forums

Full Version: GoMobile
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Beta 3 released;

http://www.mybbgm.com/thread-146.html

Fixes some annoying issues, and should prevent some future bugs.
Are you using something other than MySQL on mybbgm.com?

Tried to install it, got this back. Using MySQL...

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    1264 - Out of range value for column 'gmtid' at row 1
Query:
    INSERT INTO mybb_gomobile (`gmtid`,`regex`) VALUES ('-1','/ip[ho](.+?)mobile(.+?)safari/i') 

Because it's an unsigned int but you're trying to insert -1
                default:
                        $db->query("CREATE TABLE ".TABLE_PREFIX."gomobile (
                                gmtid int(10) unsigned NOT NULL auto_increment,
                                regex varchar(120) NOT NULL default '',
                                PRIMARY KEY(gmtid)
                        ) TYPE=MyISAM;");

I'm not quite sure if -1 is valid value for primary key, especially if it's used more than once.

There are a lot of references to gmtid == -1 so I'm not quite sure how to fix.
What is the procedure for upgrading is it just uninstall deactivate,upload new files then activate and install
(2011-01-08, 12:47 AM)frostschutz Wrote: [ -> ]Are you using something other than MySQL on mybbgm.com?

Nope, MySQL from the start. The only thing I've changed in this version was removed the tid column from the gomobile table, since it wasn't necessary. It installed with no issues on both localhost and mybbgm.com...

If the value is set to 0 instead of -1 does it work for you?

@adbrad yes, same as the last.
ok thanks except i went straight to beta 2 i never installed beta 1 thats why i was asking i guessed it would be though
Love the new updates, no more opera bug yay Toungue
Looking to gather some opinions on JavaScript in GoMobile, please post your feedback here:

http://www.mybbgm.com/thread-149.html
Hey how would I make my shoutbox mobile and can I make my forum icons bigger??
What shoutbox do you use? MyBBShoutBox has a mobile version.
Where is the link to MyBBShoutbox??
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15