Buenas, tengo un error al convertir desde phpbb3
Al ver el perfil de un usuario:
http://bytegames.cz.cc/foros/member.php?...ile&uid=44
arriba sale un error:
Código:
Warning [2] mktime() expects parameter 4 to be long, string given - Line: 1467 - File: member.php PHP 5.2.12 (Linux)
Código:
[PHP] errorHandler->error
/member.php 1467 mktime
Lo he solucionado mediante esta sentencia en la BD MySQL (desde phpMyAdmin)
UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` LIKE '--%';
y despues esta:
UPDATE `mybb_users` SET `birthday` = '' WHERE `birthday` = '-';
SOLUCIONADO