- Adres van je forum: http://http://oorlogsvondsten.nl
Event. modificaties op je forum: Geen
Wanneer ontstond het probleem? Na overstap op 3.0.10
phpBB versie: 3.0.10
Heb je onlangs iets veranderd aan je forum?
Geüpdate van 3.0.9 naar 3.0.10. De database werd succesvol geüpdate, daarna liep de boel vast. Dus ik heb de versie geheel opnieuw online gezet, gaat dus om een verse installatie van de nieuwste versie. Wat ik daarna nog heb gedaan: mod toegepast die het mogelijk maakt om in afbeeldingen in het profielveld te zetten, dit had ik daarvoor echter ook al zonder verdere problemen. Zie eind van het bericht voor de mod.
Wat is het probleem?
Mod:
Code: Selecteer alles
• .../viewtopic.php
NA
include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
TOEGEVOEGD
include_once($phpbb_root_path . 'includes/functions_content.' . $phpEx);
NA
foreach ($cp_row['blockrow'] as $field_data)
{
TOEGEVOEGD
$uid = $bitfield = $options = '';
$allowed_bbcode = $allowed_smilies = $allowed_urls = true;
generate_text_for_storage($field_data["PROFILE_FIELD_VALUE"], $uid, $bitfield, $options, $allowed_bbcode, $allowed_smilies, $allowed_urls);
$field_data["PROFILE_FIELD_VALUE"] = generate_text_for_display($field_data["PROFILE_FIELD_VALUE"], $uid, $bitfield, $options);
• .../memberlist.php
NA
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
TOEGEVOEGD
include_once($phpbb_root_path . 'includes/functions_content.' . $phpEx);
NA
foreach ($profile_fields['blockrow'] as $field_data)
{
TOEGEVOEGD
$uid = $bitfield = $options = '';
$allowed_bbcode = $allowed_smilies = $allowed_urls = true;
generate_text_for_storage($field_data["PROFILE_FIELD_VALUE"], $uid, $bitfield, $options, $allowed_bbcode, $allowed_smilies, $allowed_urls);
$field_data["PROFILE_FIELD_VALUE"] = generate_text_for_display($field_data["PROFILE_FIELD_VALUE"], $uid, $bitfield, $options);