Bored? Looking to kill some time? Want to chat with other SMF users? Join us in IRC chat or Discord
By the way, I set up a custom bb code that allowed me to embed youtube videos into posts. Is this possible with SMF?
Quote from: quercus on September 23, 2012, 11:04:51 AMBy the way, I set up a custom bb code that allowed me to embed youtube videos into posts. Is this possible with SMF?Not my business but there are a couple of mods for embedding videos:http://custom.simplemachines.org/mods/index.php?action=search;basic_search=youtube
sorry, but i don't understand you. after convertation I can't login to my forum with my username and password. and nobody of my users too. what should we do?
maybe the password_salt in IPB has more than 5 characters..
added a modified version of the converter,
Notice: Undefined variable: oldAvatarDir in /home/user566952/smf/convert.php(1254) : eval()'d code on line 58Warning: copy(/av-124.jpg) [function.copy]: failed to open stream: No such file or directory in /home/user566952/smf/convert.php(1254) : eval()'d code on line 59 Successful. Recalculating forum statistics... Successful.
without any changes
ALTER TABLE {$to_prefix}members CHANGE COLUMN passwd passwd varchar(64) NOT NULL default '', CHANGE COLUMN password_salt password_salt varchar(64) NOT NULL default '';
maybe that can help you : in the table ibf_members_converge i I don't have field password_salt , there is only а converge_id , converge_email , converge_joined , converge_pass_hash , converge_pass_salt
Which charset / language is your forum?
win-1251 / english
// Attempt to allow big selects, only for mysql so far though. if ($smcFunc['db_title'] == 'MySQL') { $results = $smcFunc['db_query']('', "SELECT @@SQL_BIG_SELECTS, @@SQL_MAX_JOIN_SIZE", 'security_override'); list($big_selects, $sql_max_join) = $smcFunc['db_fetch_row']($results); // Only waste a query if its worth it. if (empty($big_selects) || ($big_selects != 1 && $big_selects != '1')) $smcFunc['db_query']('', "SET @@SQL_BIG_SELECTS = 1", 'security_override'); // Lets set MAX_JOIN_SIZE to something we should if (empty($sql_max_join) || ($sql_max_join == '18446744073709551615' && $sql_max_join == '18446744073709551615')) $smcFunc['db_query']('', "SET @@SQL_MAX_JOIN_SIZE = 18446744073709551615", 'security_override'); }
Over 90% of all computer problems can be traced back to the interface between the keyboard and the chair