MyBB Community Forums

Full Version: ok merger completed, now the problems resolving time, plz help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Team,
just now finished the merging with phpbb3... it went smoothly.

now i will be posting the problems i am getting..

please help me out..1 st error.

1. Whnerver i am clicking on the profile of members, the following error comin:

Warning [2] mktime() expects parameter 4 to be long, string given - Line: 1474 - File: member.php PHP 5.2.14 (Linux)
File Line Function
[PHP] errorHandler->error
/member.php 1474 mktime
As well as the one there, you'll need this too:

UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` LIKE '--%';

Better make a sticky on this.
woohooo.. it worked... thank u ... loving MyBB... but more than that the support here on community.... Smile
just one query.... which one exactly.. I have read all thread on this and found 2-3 queries to be run... can u tell which one is the exact i should run:

UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` LIKE '--%'; 

UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` LIKE '-%'; 

UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` = '-'; 
the last one i found in 1.4 version merge system support section

please tell what is the difference between all these and which should i use.
They'd all work, but this one:

UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` LIKE '-%';

will be fine, it does the same as both the others.