2 /***************************************************************************
5 * begin : Saturday, Feb 13, 2001
6 * copyright : (C) 2001 The phpBB Group
7 * email : support@phpbb.com
9 * $Id: functions.php,v 1.133.2.48 2006/12/16 13:11:26 acydburn Exp $
12 ***************************************************************************/
14 /***************************************************************************
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
22 ***************************************************************************/
24 function get_db_stat($mode)
31 $sql = "SELECT COUNT(user_id) AS total
32 FROM " . USERS_TABLE . "
33 WHERE user_id <> " . ANONYMOUS;
37 $sql = "SELECT user_id, username
38 FROM " . USERS_TABLE . "
39 WHERE user_id <> " . ANONYMOUS . "
46 $sql = "SELECT SUM(forum_topics) AS topic_total, SUM(forum_posts) AS post_total
47 FROM " . FORUMS_TABLE;
51 if ( !($result = $db->sql_query($sql)) )
56 $row = $db->sql_fetchrow($result);
67 return $row['post_total'];
70 return $row['topic_total'];
77 // added at phpBB 2.0.11 to properly format the username
78 function phpbb_clean_username($username)
80 $username = substr(htmlspecialchars(str_replace("\'", "'", trim($username))), 0, 25);
81 $username = phpbb_rtrim($username, "\\");
82 $username = str_replace("'", "\'", $username);
88 * This function is a wrapper for ltrim, as charlist is only supported in php >= 4.1.0
89 * Added in phpBB 2.0.18
91 function phpbb_ltrim($str, $charlist = false)
93 if ($charlist === false)
98 $php_version = explode('.', PHP_VERSION);
100 // php version < 4.1.0
101 if ((int) $php_version[0] < 4 || ((int) $php_version[0] == 4 && (int) $php_version[1] < 1))
103 while ($str{0} == $charlist)
105 $str = substr($str, 1);
110 $str = ltrim($str, $charlist);
116 // added at phpBB 2.0.12 to fix a bug in PHP 4.3.10 (only supporting charlist in php >= 4.1.0)
117 function phpbb_rtrim($str, $charlist = false)
119 if ($charlist === false)
124 $php_version = explode('.', PHP_VERSION);
126 // php version < 4.1.0
127 if ((int) $php_version[0] < 4 || ((int) $php_version[0] == 4 && (int) $php_version[1] < 1))
129 while ($str{strlen($str)-1} == $charlist)
131 $str = substr($str, 0, strlen($str)-1);
136 $str = rtrim($str, $charlist);
143 * Our own generator of random values
144 * This uses a constantly changing value as the base for generating the values
145 * The board wide setting is updated once per page if this code is called
146 * With thanks to Anthrax101 for the inspiration on this one
147 * Added in phpBB 2.0.20
151 global $db, $board_config, $dss_seeded;
153 $val = $board_config['rand_seed'] . microtime();
155 $board_config['rand_seed'] = md5($board_config['rand_seed'] . $val . 'a');
157 if($dss_seeded !== true)
159 $sql = "UPDATE " . CONFIG_TABLE . " SET
160 config_value = '" . $board_config['rand_seed'] . "'
161 WHERE config_name = 'rand_seed'";
163 if( !$db->sql_query($sql) )
165 message_die(GENERAL_ERROR, "Unable to reseed PRNG", "", __LINE__, __FILE__, $sql);
171 return substr($val, 4, 16);
174 // Get Userdata, $user can be username or user_id. If force_str is true, the username will be forced.
176 function get_userdata($user, $force_str = false)
180 if (!is_numeric($user) || $force_str)
182 $user = phpbb_clean_username($user);
186 $user = intval($user);
190 FROM " . USERS_TABLE . "
192 $sql .= ( ( is_integer($user) ) ? "user_id = $user" : "username = '" . str_replace("\'", "''", $user) . "'" ) . " AND user_id <> " . ANONYMOUS;
193 if ( !($result = $db->sql_query($sql)) )
195 message_die(GENERAL_ERROR, 'Tried obtaining data for a non-existent user', '', __LINE__, __FILE__, $sql);
198 return ( $row = $db->sql_fetchrow($result) ) ? $row : false;
201 function make_jumpbox($action, $match_forum_id = 0)
203 global $template, $userdata, $lang, $db, $nav_links, $phpEx, $SID;
205 // $is_auth = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata);
207 $sql = "SELECT c.cat_id, c.cat_title, c.cat_order
208 FROM " . CATEGORIES_TABLE . " c, " . FORUMS_TABLE . " f
209 WHERE f.cat_id = c.cat_id
210 GROUP BY c.cat_id, c.cat_title, c.cat_order
211 ORDER BY c.cat_order";
212 if ( !($result = $db->sql_query($sql)) )
214 message_die(GENERAL_ERROR, "Couldn't obtain category list.", "", __LINE__, __FILE__, $sql);
217 $category_rows = array();
218 while ( $row = $db->sql_fetchrow($result) )
220 $category_rows[] = $row;
223 if ( $total_categories = count($category_rows) )
226 FROM " . FORUMS_TABLE . "
227 ORDER BY cat_id, forum_order";
228 if ( !($result = $db->sql_query($sql)) )
230 message_die(GENERAL_ERROR, 'Could not obtain forums information', '', __LINE__, __FILE__, $sql);
233 $boxstring = '<select name="' . POST_FORUM_URL . '" onchange="if(this.options[this.selectedIndex].value != -1){ forms[\'jumpbox\'].submit() }"><option value="-1">' . $lang['Select_forum'] . '</option>';
235 $forum_rows = array();
236 while ( $row = $db->sql_fetchrow($result) )
238 $forum_rows[] = $row;
241 if ( $total_forums = count($forum_rows) )
243 for($i = 0; $i < $total_categories; $i++)
245 $boxstring_forums = '';
246 for($j = 0; $j < $total_forums; $j++)
248 if ( $forum_rows[$j]['cat_id'] == $category_rows[$i]['cat_id'] && $forum_rows[$j]['auth_view'] <= AUTH_REG )
251 // if ( $forum_rows[$j]['cat_id'] == $category_rows[$i]['cat_id'] && $is_auth[$forum_rows[$j]['forum_id']]['auth_view'] )
253 $selected = ( $forum_rows[$j]['forum_id'] == $match_forum_id ) ? 'selected="selected"' : '';
254 $boxstring_forums .= '<option value="' . $forum_rows[$j]['forum_id'] . '"' . $selected . '>' . $forum_rows[$j]['forum_name'] . '</option>';
257 // Add an array to $nav_links for the Mozilla navigation bar.
258 // 'chapter' and 'forum' can create multiple items, therefore we are using a nested array.
260 $nav_links['chapter forum'][$forum_rows[$j]['forum_id']] = array (
261 'url' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=" . $forum_rows[$j]['forum_id']),
262 'title' => $forum_rows[$j]['forum_name']
268 if ( $boxstring_forums != '' )
270 $boxstring .= '<option value="-1"> </option>';
271 $boxstring .= '<option value="-1">' . $category_rows[$i]['cat_title'] . '</option>';
272 $boxstring .= '<option value="-1">----------------</option>';
273 $boxstring .= $boxstring_forums;
278 $boxstring .= '</select>';
282 $boxstring .= '<select name="' . POST_FORUM_URL . '" onchange="if(this.options[this.selectedIndex].value != -1){ forms[\'jumpbox\'].submit() }"></select>';
285 // Let the jumpbox work again in sites having additional session id checks.
286 // if ( !empty($SID) )
288 $boxstring .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
291 $template->set_filenames(array(
292 'jumpbox' => 'jumpbox.tpl')
294 $template->assign_vars(array(
295 'L_GO' => $lang['Go'],
296 'L_JUMP_TO' => $lang['Jump_to'],
297 'L_SELECT_FORUM' => $lang['Select_forum'],
299 'S_JUMPBOX_SELECT' => $boxstring,
300 'S_JUMPBOX_ACTION' => append_sid($action))
302 $template->assign_var_from_handle('JUMPBOX', 'jumpbox');
308 // Initialise user settings on page load
309 function init_userprefs($userdata)
311 global $board_config, $theme, $images;
312 global $template, $lang, $phpEx, $phpbb_root_path, $db;
315 if ( $userdata['user_id'] != ANONYMOUS )
317 if ( !empty($userdata['user_lang']))
319 $default_lang = phpbb_ltrim(basename(phpbb_rtrim($userdata['user_lang'])), "'");
322 if ( !empty($userdata['user_dateformat']) )
324 $board_config['default_dateformat'] = $userdata['user_dateformat'];
327 if ( isset($userdata['user_timezone']) )
329 $board_config['board_timezone'] = $userdata['user_timezone'];
334 $default_lang = phpbb_ltrim(basename(phpbb_rtrim($board_config['default_lang'])), "'");
337 if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $default_lang . '/lang_main.'.$phpEx)) )
339 if ( $userdata['user_id'] != ANONYMOUS )
341 // For logged in users, try the board default language next
342 $default_lang = phpbb_ltrim(basename(phpbb_rtrim($board_config['default_lang'])), "'");
346 // For guests it means the default language is not present, try english
347 // This is a long shot since it means serious errors in the setup to reach here,
348 // but english is part of a new install so it's worth us trying
349 $default_lang = 'english';
352 if ( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $default_lang . '/lang_main.'.$phpEx)) )
354 message_die(CRITICAL_ERROR, 'Could not locate valid language pack');
358 // If we've had to change the value in any way then let's write it back to the database
359 // before we go any further since it means there is something wrong with it
360 if ( $userdata['user_id'] != ANONYMOUS && $userdata['user_lang'] !== $default_lang )
362 $sql = 'UPDATE ' . USERS_TABLE . "
363 SET user_lang = '" . $default_lang . "'
364 WHERE user_lang = '" . $userdata['user_lang'] . "'";
366 if ( !($result = $db->sql_query($sql)) )
368 message_die(CRITICAL_ERROR, 'Could not update user language info');
371 $userdata['user_lang'] = $default_lang;
373 elseif ( $userdata['user_id'] === ANONYMOUS && $board_config['default_lang'] !== $default_lang )
375 $sql = 'UPDATE ' . CONFIG_TABLE . "
376 SET config_value = '" . $default_lang . "'
377 WHERE config_name = 'default_lang'";
379 if ( !($result = $db->sql_query($sql)) )
381 message_die(CRITICAL_ERROR, 'Could not update user language info');
385 $board_config['default_lang'] = $default_lang;
387 include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.' . $phpEx);
389 if ( defined('IN_ADMIN') )
391 if( !file_exists(@phpbb_realpath($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.'.$phpEx)) )
393 $board_config['default_lang'] = 'english';
396 include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_admin.' . $phpEx);
402 if ( !$board_config['override_user_style'] )
404 if ( $userdata['user_id'] != ANONYMOUS && $userdata['user_style'] > 0 )
406 if ( $theme = setup_style($userdata['user_style']) )
413 $theme = setup_style($board_config['default_style']);
416 // Mozilla navigation bar
417 // Default items that should be valid on all pages.
418 // Defined here to correctly assign the Language Variables
419 // and be able to change the variables within code.
421 $nav_links['top'] = array (
422 'url' => append_sid($phpbb_root_path . 'index.' . $phpEx),
423 'title' => sprintf($lang['Forum_Index'], $board_config['sitename'])
425 $nav_links['search'] = array (
426 'url' => append_sid($phpbb_root_path . 'search.' . $phpEx),
427 'title' => $lang['Search']
429 $nav_links['help'] = array (
430 'url' => append_sid($phpbb_root_path . 'faq.' . $phpEx),
431 'title' => $lang['FAQ']
433 $nav_links['author'] = array (
434 'url' => append_sid($phpbb_root_path . 'memberlist.' . $phpEx),
435 'title' => $lang['Memberlist']
441 function setup_style($style)
443 global $db, $board_config, $template, $images, $phpbb_root_path;
446 FROM ' . THEMES_TABLE . '
447 WHERE themes_id = ' . (int) $style;
448 if ( !($result = $db->sql_query($sql)) )
450 message_die(CRITICAL_ERROR, 'Could not query database for theme info');
453 if ( !($row = $db->sql_fetchrow($result)) )
455 // We are trying to setup a style which does not exist in the database
456 // Try to fallback to the board default (if the user had a custom style)
457 // and then any users using this style to the default if it succeeds
458 if ( $style != $board_config['default_style'])
461 FROM ' . THEMES_TABLE . '
462 WHERE themes_id = ' . (int) $board_config['default_style'];
463 if ( !($result = $db->sql_query($sql)) )
465 message_die(CRITICAL_ERROR, 'Could not query database for theme info');
468 if ( $row = $db->sql_fetchrow($result) )
470 $db->sql_freeresult($result);
472 $sql = 'UPDATE ' . USERS_TABLE . '
473 SET user_style = ' . (int) $board_config['default_style'] . "
474 WHERE user_style = $style";
475 if ( !($result = $db->sql_query($sql)) )
477 message_die(CRITICAL_ERROR, 'Could not update user theme info');
482 message_die(CRITICAL_ERROR, "Could not get theme data for themes_id [$style]");
487 message_die(CRITICAL_ERROR, "Could not get theme data for themes_id [$style]");
491 $template_path = 'templates/' ;
492 $template_name = $row['template_name'] ;
494 $template = new Template($phpbb_root_path . $template_path . $template_name);
498 $current_template_path = $template_path . $template_name;
499 @include($phpbb_root_path . $template_path . $template_name . '/' . $template_name . '.cfg');
501 if ( !defined('TEMPLATE_CONFIG') )
503 message_die(CRITICAL_ERROR, "Could not open $template_name template config file", '', __LINE__, __FILE__);
506 $img_lang = ( file_exists(@phpbb_realpath($phpbb_root_path . $current_template_path . '/images/lang_' . $board_config['default_lang'])) ) ? $board_config['default_lang'] : 'english';
508 while( list($key, $value) = @each($images) )
510 if ( !is_array($value) )
512 $images[$key] = str_replace('{LANG}', 'lang_' . $img_lang, $value);
520 function encode_ip($dotquad_ip)
522 $ip_sep = explode('.', $dotquad_ip);
523 return sprintf('%02x%02x%02x%02x', $ip_sep[0], $ip_sep[1], $ip_sep[2], $ip_sep[3]);
526 function decode_ip($int_ip)
528 $hexipbang = explode('.', chunk_split($int_ip, 2, '.'));
529 return hexdec($hexipbang[0]). '.' . hexdec($hexipbang[1]) . '.' . hexdec($hexipbang[2]) . '.' . hexdec($hexipbang[3]);
533 // Create date/time from format and timezone
535 function create_date($format, $gmepoch, $tz)
537 global $board_config, $lang;
540 if ( empty($translate) && $board_config['default_lang'] != 'english' )
542 @reset($lang['datetime']);
543 while ( list($match, $replace) = @each($lang['datetime']) )
545 $translate[$match] = $replace;
549 return ( !empty($translate) ) ? strtr(@gmdate($format, $gmepoch + (3600 * $tz)), $translate) : @gmdate($format, $gmepoch + (3600 * $tz));
553 // Pagination routine, generates
554 // page number sequence
556 function generate_pagination($base_url, $num_items, $per_page, $start_item, $add_prevnext_text = TRUE)
560 $total_pages = ceil($num_items/$per_page);
562 if ( $total_pages == 1 )
567 $on_page = floor($start_item / $per_page) + 1;
570 if ( $total_pages > 10 )
572 $init_page_max = ( $total_pages > 3 ) ? 3 : $total_pages;
574 for($i = 1; $i < $init_page_max + 1; $i++)
576 $page_string .= ( $i == $on_page ) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
577 if ( $i < $init_page_max )
579 $page_string .= ", ";
583 if ( $total_pages > 3 )
585 if ( $on_page > 1 && $on_page < $total_pages )
587 $page_string .= ( $on_page > 5 ) ? ' ... ' : ', ';
589 $init_page_min = ( $on_page > 4 ) ? $on_page : 5;
590 $init_page_max = ( $on_page < $total_pages - 4 ) ? $on_page : $total_pages - 4;
592 for($i = $init_page_min - 1; $i < $init_page_max + 2; $i++)
594 $page_string .= ($i == $on_page) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
595 if ( $i < $init_page_max + 1 )
597 $page_string .= ', ';
601 $page_string .= ( $on_page < $total_pages - 4 ) ? ' ... ' : ', ';
605 $page_string .= ' ... ';
608 for($i = $total_pages - 2; $i < $total_pages + 1; $i++)
610 $page_string .= ( $i == $on_page ) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
611 if( $i < $total_pages )
613 $page_string .= ", ";
620 for($i = 1; $i < $total_pages + 1; $i++)
622 $page_string .= ( $i == $on_page ) ? '<b>' . $i . '</b>' : '<a href="' . append_sid($base_url . "&start=" . ( ( $i - 1 ) * $per_page ) ) . '">' . $i . '</a>';
623 if ( $i < $total_pages )
625 $page_string .= ', ';
630 if ( $add_prevnext_text )
634 $page_string = ' <a href="' . append_sid($base_url . "&start=" . ( ( $on_page - 2 ) * $per_page ) ) . '">' . $lang['Previous'] . '</a> ' . $page_string;
637 if ( $on_page < $total_pages )
639 $page_string .= ' <a href="' . append_sid($base_url . "&start=" . ( $on_page * $per_page ) ) . '">' . $lang['Next'] . '</a>';
644 $page_string = $lang['Goto_page'] . ' ' . $page_string;
650 // This does exactly what preg_quote() does in PHP 4-ish
651 // If you just need the 1-parameter preg_quote call, then don't bother using this.
653 function phpbb_preg_quote($str, $delimiter)
655 $text = preg_quote($str);
656 $text = str_replace($delimiter, '\\' . $delimiter, $text);
662 // Obtain list of naughty words and build preg style replacement arrays for use by the
663 // calling script, note that the vars are passed as references this just makes it easier
664 // to return both sets of arrays
666 function obtain_word_list(&$orig_word, &$replacement_word)
671 // Define censored word matches
673 $sql = "SELECT word, replacement
674 FROM " . WORDS_TABLE;
675 if( !($result = $db->sql_query($sql)) )
677 message_die(GENERAL_ERROR, 'Could not get censored words from database', '', __LINE__, __FILE__, $sql);
680 if ( $row = $db->sql_fetchrow($result) )
684 $orig_word[] = '#\b(' . str_replace('\*', '\w*?', preg_quote($row['word'], '#')) . ')\b#i';
685 $replacement_word[] = $row['replacement'];
687 while ( $row = $db->sql_fetchrow($result) );
694 // This is general replacement for die(), allows templated
695 // output in users (or default) language, etc.
697 // $msg_code can be one of these constants:
699 // GENERAL_MESSAGE : Use for any simple text message, eg. results
700 // of an operation, authorisation failures, etc.
702 // GENERAL ERROR : Use for any error which occurs _AFTER_ the
703 // common.php include and session code, ie. most errors in
706 // CRITICAL_MESSAGE : Used when basic config data is available but
707 // a session may not exist, eg. banned users
709 // CRITICAL_ERROR : Used when config data cannot be obtained, eg
710 // no database connection. Should _not_ be used in 99.5% of cases
712 function message_die($msg_code, $msg_text = '', $msg_title = '', $err_line = '', $err_file = '', $sql = '')
714 global $db, $template, $board_config, $theme, $lang, $phpEx, $phpbb_root_path, $nav_links, $gen_simple_header, $images;
715 global $userdata, $user_ip, $session_length;
718 if(defined('HAS_DIED'))
720 die("message_die() was called multiple times. This isn't supposed to happen. Was message_die() used in page_tail.php?");
723 define('HAS_DIED', 1);
729 // Get SQL error if we are debugging. Do this as soon as possible to prevent
730 // subsequent queries from overwriting the status of sql_error()
732 if ( DEBUG && ( $msg_code == GENERAL_ERROR || $msg_code == CRITICAL_ERROR ) )
734 $sql_error = $db->sql_error();
738 if ( $sql_error['message'] != '' )
740 $debug_text .= '<br /><br />SQL Error : ' . $sql_error['code'] . ' ' . $sql_error['message'];
743 if ( $sql_store != '' )
745 $debug_text .= "<br /><br />$sql_store";
748 if ( $err_line != '' && $err_file != '' )
750 $debug_text .= '<br /><br />Line : ' . $err_line . '<br />File : ' . basename($err_file);
754 if( empty($userdata) && ( $msg_code == GENERAL_MESSAGE || $msg_code == GENERAL_ERROR ) )
756 $userdata = session_pagestart($user_ip, PAGE_INDEX);
757 init_userprefs($userdata);
761 // If the header hasn't been output then do it
763 if ( !defined('HEADER_INC') && $msg_code != CRITICAL_ERROR )
767 if ( !empty($board_config['default_lang']) )
769 include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/lang_main.'.$phpEx);
773 include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
777 if ( empty($template) || empty($theme) )
779 $theme = setup_style($board_config['default_style']);
783 // Load the Page Header
785 if ( !defined('IN_ADMIN') )
787 include($phpbb_root_path . 'includes/page_header.'.$phpEx);
791 include($phpbb_root_path . 'admin/page_header_admin.'.$phpEx);
797 case GENERAL_MESSAGE:
798 if ( $msg_title == '' )
800 $msg_title = $lang['Information'];
804 case CRITICAL_MESSAGE:
805 if ( $msg_title == '' )
807 $msg_title = $lang['Critical_Information'];
812 if ( $msg_text == '' )
814 $msg_text = $lang['An_error_occured'];
817 if ( $msg_title == '' )
819 $msg_title = $lang['General_Error'];
825 // Critical errors mean we cannot rely on _ANY_ DB information being
826 // available so we're going to dump out a simple echo'd statement
828 include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
830 if ( $msg_text == '' )
832 $msg_text = $lang['A_critical_error'];
835 if ( $msg_title == '' )
837 $msg_title = 'phpBB : <b>' . $lang['Critical_Error'] . '</b>';
843 // Add on DEBUG info if we've enabled debug mode and this is an error. This
844 // prevents debug info being output for general messages should DEBUG be
845 // set TRUE by accident (preventing confusion for the end user!)
847 if ( DEBUG && ( $msg_code == GENERAL_ERROR || $msg_code == CRITICAL_ERROR ) )
849 if ( $debug_text != '' )
851 $msg_text = $msg_text . '<br /><br /><b><u>DEBUG MODE</u></b>' . $debug_text;
855 if ( $msg_code != CRITICAL_ERROR )
857 if ( !empty($lang[$msg_text]) )
859 $msg_text = $lang[$msg_text];
862 if ( !defined('IN_ADMIN') )
864 $template->set_filenames(array(
865 'message_body' => 'message_body.tpl')
870 $template->set_filenames(array(
871 'message_body' => 'admin/admin_message_body.tpl')
875 $template->assign_vars(array(
876 'MESSAGE_TITLE' => $msg_title,
877 'MESSAGE_TEXT' => $msg_text)
879 $template->pparse('message_body');
881 if ( !defined('IN_ADMIN') )
883 include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
887 include($phpbb_root_path . 'admin/page_footer_admin.'.$phpEx);
892 echo "<html>\n<body>\n" . $msg_title . "\n<br /><br />\n" . $msg_text . "</body>\n</html>";
899 // This function is for compatibility with PHP 4.x's realpath()
900 // function. In later versions of PHP, it needs to be called
901 // to do checks with some functions. Older versions of PHP don't
902 // seem to need this, so we'll just return the original value.
903 // dougk_ff7 <October 5, 2002>
904 function phpbb_realpath($path)
906 global $phpbb_root_path, $phpEx;
908 return (!@function_exists('realpath') || !@realpath($phpbb_root_path . 'includes/functions.'.$phpEx)) ? $path : @realpath($path);
911 function redirect($url)
913 global $db, $board_config;
920 if (strstr(urldecode($url), "\n") || strstr(urldecode($url), "\r") || strstr(urldecode($url), ';url'))
922 message_die(GENERAL_ERROR, 'Tried to redirect to potentially insecure url.');
925 $server_protocol = ($board_config['cookie_secure']) ? 'https://' : 'http://';
926 $server_name = preg_replace('#^\/?(.*?)\/?$#', '\1', trim($board_config['server_name']));
927 $server_port = ($board_config['server_port'] <> 80) ? ':' . trim($board_config['server_port']) : '';
928 $script_name = preg_replace('#^\/?(.*?)\/?$#', '\1', trim($board_config['script_path']));
929 $script_name = ($script_name == '') ? $script_name : '/' . $script_name;
930 $url = preg_replace('#^\/?(.*?)\/?$#', '/\1', trim($url));
932 // Redirect via an HTML form for PITA webservers
933 if (@preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')))
935 header('Refresh: 0; URL=' . $server_protocol . $server_name . $server_port . $script_name . $url);
936 echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><meta http-equiv="refresh" content="0; url=' . $server_protocol . $server_name . $server_port . $script_name . $url . '"><title>Redirect</title></head><body><div align="center">If your browser does not support meta redirection please click <a href="' . $server_protocol . $server_name . $server_port . $script_name . $url . '">HERE</a> to be redirected</div></body></html>';
940 // Behave as per HTTP/1.1 spec for others
941 header('Location: ' . $server_protocol . $server_name . $server_port . $script_name . $url);