You can set the batch size when you run the command and yes you can and should increase batch size if you have a powerful enough server with enough resources.
you can also run it in the background. just append &
That's correct. It mimics the default one but allows to run trough the command line. It'll allow to maybe increase the batch size of each step to run it faster on larger boards with vps or dedicated servers.
I actually bought the big board importer and this won't work nearly as fast
What will be a programmatic way of updating the background-image property in a skin.
attached screenshots
(
[property_definition_id] => 19
[definition_style_id] => 0
[group_name] => general
[title] => Body
[description] =>...
Thanks. I've been modifying the script to support certain things like the usergroups, custom fields, moderators and permissions. as well as minor changes to the output of the times, interactive console and ability to specify multiple banned user groups. I've also updated to read the...
i just did this:
$model = XenForo_Model::create('XenForo_Model_Banning');
$ips = explode("\n", $ips);
foreach($ips as $ip) {
try {
$model->banIp($ip);
} catch(Exception $e) {
echo $ip . ':' . $e->getMessage() . "\n";
}
}
is there a reason why IPs/emails are not...
After an import from VB when i login to an account and check the stay logged in checkbox. i'll be logged in for a few minutes than signed out, forcing me to login again.
are there any settings, or cache related things i need to run or check for? i am not entirely sure why this happens and i'd...
After an import from VB two of the forums became a category, i think due to the fact they were forums with no children in VB. now in XF they show up as categories instead forums and i can't access them. they have threads and posts so is there a way to convert a category to a forum? doesn't seem...