- Adres van je forum: http://www.urbexnederland.nl
Event. modificaties op je forum:nvt
Wanneer ontstond het probleem?28/12
phpBB versie:3.0.11
Heb je onlangs iets veranderd aan je forum?geen veranderingen
Wat is het probleem?
Een gedeelte wat alleen voor de echte leden toegankelijk is. De foutmelding zal ik hieronder ook plaatsen.
We krijgen hier support op het forum van David hier wel bekend denk ik. Hij heeft hier naar gekeken en de Debug functie uitgezet en de suggestie gegeven hier ook het probleem te plaatsen. We komen niet echt verder. Nu missen we een tweetal onderwerpen onder Urbex Nederland Group(Belgie en Nederland) en kunnen we ook niet meer terug vinden.
Dit is de melding die boven de pagina stond. Iemand een idee wat we kunnen doen? En waar komt zoiets vandaan?
Code: Selecteer alles
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 250: Undefined offset: 0
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 255: Undefined offset: 0
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 255: Undefined index: forum_topics
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 260: Undefined index: forum_posts
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 263: Undefined index: forum_last_post_time
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 250: Undefined index: forum_id_unapproved_topics
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 250: Undefined index: forum_id_unapproved_topics
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 250: Undefined index: forum_id_unapproved_topics
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 250: Undefined index: forum_id_unapproved_topics
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 250: Undefined index: forum_id_unapproved_topics
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 315: Undefined index: parent_id
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 333: Undefined index: forum_id
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 391: Undefined index: forum_type
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 404: Undefined index: forum_status
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 434: Undefined index: forum_type
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 435: Undefined index: forum_type
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 443: Undefined index: parent_id
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 445: Undefined index: forum_type
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 447: Undefined index: forum_id
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 466: Undefined index: forum_type
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 468: Undefined index: forum_id
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 469: Undefined index: forum_status
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 470: Undefined index: display_subforum_list
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 472: Undefined index: forum_options
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 472: Undefined index: forum_type
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 474: Undefined index: forum_id
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 475: Undefined index: forum_name
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 476: Undefined index: forum_desc
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 476: Undefined index: forum_desc_uid
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 476: Undefined index: forum_desc_bitfield
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 476: Undefined index: forum_desc_options
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 482: Undefined index: forum_image
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 483: Undefined index: forum_image
[phpBB Debug] PHP Notice: in file [ROOT]/includes/functions_display.php on line 495: Undefined index: forum_id_unapproved_topics
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4721: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4723: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4724: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4725: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3823)
Laatste actie van vanmorgen gedaan door David:
Zoals ik al zei heb ik de includes/functions_display.php van jullie forum vergeleken met een origineel bestand het enige verschil is deze wijziging, die nodig is voor de country flag MOD!
Code: Selecteer alles
/**
* Get user country flag
*
* @param int $user_flag the current stored users country flag id
* @param string &$flag_country the country name will be stored here after execution
* @param string &$flag_code the country code will be stored here after execution
* @param string &$flag_img the country flag image as full img tag is stored here after execution
* @param string &$flag_img_src the country flag image source is stored here after execution
*
*/
function get_user_flag($user_flag, &$flag_country, &$flag_code, &$flag_img, &$flag_img_src)
{
global $flags, $config;
if (empty($flags))
{
global $cache;
$flags = $cache->obtain_flags();
}
if (!empty($user_flag))
{
$flag_country = (isset($flags[$user_flag]['country'])) ? $flags[$user_flag]['country'] : '';
$flag_code = (isset($flags[$user_flag]['code'])) ? $flags[$user_flag]['code'] : '';
$flag_text = $flags[$user_flag]['country'] . ' (' . $flags[$user_flag]['code'] . ')';
$flag_img = (!empty($flags[$user_flag]['image'])) ? '<img src="' . $config['flags_path'] . '/' . $flags[$user_flag]['image'] . '" alt="' . $flag_text . '" title="' . $flag_text . '" />' : '';
$flag_img_src = (!empty($flags[$user_flag]['image'])) ? $config['flags_path'] . '/' . $flags[$user_flag]['image'] : '';
}
}
Verder heb ik de cache geleegd en via Google gekeken of ik een antwoord kan vinden. Helaas is mij dat niet gelukt dus het beste is denk ik dat jij of ik even een support topic open, vermeld daarin het probleem, de foutmeldingen en wat ik al heb gedaan Ik hoop dat iemand anders (één van mijn collega’s) dan met een oplossing komt.