This was using 1.2 XenForo and 1.2 BB importer.
I get this error when trying to rebuild user caches after import:
Server Error
Mysqli statement execute error : Incorrect integer value: '' for column 'user_group_id' at row 1
- Zend_Db_Statement_Mysqli->_execute() in Zend/Db/Statement.php at line 297
- Zend_Db_Statement->execute() in Zend/Db/Adapter/Abstract.php at line 479
- Zend_Db_Adapter_Abstract->query() in Zend/Db/Adapter/Abstract.php at line 574
- Zend_Db_Adapter_Abstract->insert() in XenForo/Model/Permission.php at line 1416
- XenForo_Model_Permission->findOrCreatePermissionCombination() in XenForo/Model/Permission.php at line 1377
- XenForo_Model_Permission->findOrCreatePermissionCombinationFromUser() in XenForo/Model/Permission.php at line 1246
- XenForo_Model_Permission->updateUserPermissionCombination() in XenForo/DataWriter/User.php at line 962
- XenForo_DataWriter_User->rebuildPermissionCombinationId() in XenForo/Deferred/User.php at line 37
- XenForo_Deferred_User->execute() in XenForo/Model/Deferred.php at line 197
- XenForo_Model_Deferred->runDeferred() in XenForo/Model/Deferred.php at line 320
- XenForo_Model_Deferred->_runInternal() in XenForo/Model/Deferred.php at line 273
- XenForo_Model_Deferred->run() in XenForo/ControllerAdmin/Tools.php at line 147
- XenForo_ControllerAdmin_Tools->actionRunDeferred() in XenForo/FrontController.php at line 337
- XenForo_FrontController->dispatch() in XenForo/FrontController.php at line 134
- XenForo_FrontController->run() in /home/nginx/domains/religiousforums.com/public/admin.php at line 13
Any timeframe for fixing the issue with Xenforo 1.4 (column alignment)?
(and at least write a short comment on the first page that this addon currently is not compatible with Xenforo 1.4 before more are hurt)
I'm waiting to purchase the script once you finish the eval/tweak Jake, so that I can use 1.4 fresh.
Do you generally update here once all complete with new changes to the script?
Thanks.
//importTable('xf_ip');
Updated column orders to work with XenForo 1.4.
(Note, will no longer work on previous versions of XenForo).
Any suggestions to speed up the cache rebuild process after import? or is the following typical?
Background: There are 1M users, 30M Posts
I'm currently rebuilding user cache.
It's processing ~5,100 users per minute.
I tried a thread rebuild on a previous import... that took most of the day.
I'm still getting an error when trying to Export Avatars and Attachments (options 5 and 6) using the table prefix 'vb_' on the newest version of the Big Board Import script. Every other option works fine.
![]()
public function avatars ()
{
$globalStart = microtime(true);
echo "\r\nperforming avatar diff...";
$avatarModel = XenForo_Model::create('XenForo_Model_Avatar');
static $types = array(
1 => 'GIF',
2 => 'JPEG',
3 => 'PNG'
);
static $_sizes = array(
'l' => 192,
'm' => 96,
's' => 48
);
static $imageQuality = 60;
$fileName = '' . self::$dataDir . 'avatar_temp';
$currentTime = time();
while (
// WHERE user.userid BETWEEN ' . intval($start) . ' AND ' . intval($start + 999) . ' AND (customavatar.dateline IS NOT NULL OR customprofilepic.dateline IS NOT NULL)
$users = $this->db->fetchAll('
SELECT user.userid, IF(customavatar.dateline, customavatar.dateline, customprofilepic.dateline) AS avatar_date, IF(customavatar.dateline, customavatar.filedata, customprofilepic.filedata) AS image, user.avatarrevision AS avatarrevision, user.profilepicrevision AS profilepicrevision
FROM ' . $this->sourceDb . '.' . self::$tablePrefix . 'user AS user
LEFT JOIN ' . $this->sourceDb . '.' . self::$tablePrefix . 'customavatar AS customavatar ON (customavatar.userid = user.userid)
LEFT JOIN ' . $this->sourceDb . '.' . self::$tablePrefix . 'customprofilepic AS customprofilepic ON (customprofilepic.userid = user.userid)
WHERE
(customavatar.dateline IS NOT NULL OR customprofilepic.dateline IS NOT NULL)
ORDER BY user.userid
')
)
{
echo "\r\n " . number_format(count($users)) . " users with new avatars\r\n";
foreach ($users as $user)
{
Fixed avatar import to work with table prefixes.
Slavik updated vBulletin Big Board Importer [vBulletin 3 + vBulletin 4] with a new update entry:
Avatars Bugfix
Read the rest of this update entry...
Don't know if you got it already - but there was also the same unknown column bug 'fileedata.filedata' and 'attachment.attachmentid' on the the attachments Export. I just applied the same fix ("$tablePrefix . 'attachment as attachment" etc) and it worked fine.
Don't know if you got it already - but there was also the same unknown column bug 'fileedata.filedata' and 'attachment.attachmentid' on the the attachments Export. I just applied the same fix ("$tablePrefix . 'attachment as attachment" etc) and it worked fine.
Just looking now, ive spotted the filedata one, but the attachmentid looks correct? Can you confirm it was that?
Updated attachment export to work with table prefixes.
I ran an import using the latest big board importer version 1.4.1 with XF 1.4.2; however, the homepage is not listing any forums. I rebuilt the Forum cache, and no luck. The xf_node table however does have a list of all the forums.
When I click on Search Forums, it only has two forums listed in the 'Search in Forums' field.
Any suggestions?
We use essential cookies to make this site work, and optional cookies to enhance your experience.