acl_get('a_attach')) ? $filename . $SID . '&mode=manage' : ''; return; } define('IN_PHPBB', 1); // Include files $phpbb_root_path = '../'; require($phpbb_root_path . 'extension.inc'); require('pagestart.' . $phpEx); if (!$auth->acl_get('a_attach')) { trigger_error($user->lang['NO_ADMIN']); } $mode = (isset($_REQUEST['mode'])) ? htmlspecialchars($_REQUEST['mode']) : ''; $config_sizes = array('max_filesize' => 'size', 'attachment_quota' => 'quota_size', 'max_filesize_pm' => 'pm_size'); foreach ($config_sizes as $cfg_key => $var) { $$var = (isset($_REQUEST[$var])) ? htmlspecialchars($_REQUEST[$var]) : ''; } $submit = (isset($_POST['submit'])) ? TRUE : FALSE; $search_imagick = (isset($_POST['search_imagick'])) ? TRUE : FALSE; $error = $notify = false; $error_msg = $notify_msg = ''; // Pull all config data $sql = "SELECT * FROM " . CONFIG_TABLE; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $config_name = $row['config_name']; $config_value = $row['config_value']; $default_config[$config_name] = $config_value; $new[$config_name] = (isset($_POST[$config_name])) ? $_POST[$config_name] : $default_config[$config_name]; foreach ($config_sizes as $cfg_key => $var) { if (empty($$var) && !$submit && $config_name == $cfg_key) { $$var = (intval($default_config[$config_name]) >= 1048576) ? 'mb' : ((intval($default_config[$config_name]) >= 1024) ? 'kb' : 'b'); } if (!$submit && $config_name == $cfg_key) { if ($new[$config_name] >= 1048576) { $new[$config_name] = round($new[$config_name] / 1048576 * 100) / 100; } else if($new[$config_name] >= 1024) { $new[$config_name] = round($new[$config_name] / 1024 * 100) / 100; } } if ($submit && $mode == 'manage' && $config_name == $cfg_key) { $old = $new[$config_name]; $new[$config_name] = ($$var == 'kb') ? round($new[$config_name] * 1024) : (($$var == 'mb') ? round($new[$config_name] * 1048576) : $new[$config_name]); } } if ($submit && $mode == 'manage') { // Update Extension Group Filesizes if ($config_name == 'max_filesize') { $old_size = intval($default_config[$config_name]); $new_size = intval($new[$config_name]); if ($old_size != $new_size) { // See, if we have a similar value of old_size in Extension Groups. If so, update these values. $sql = "UPDATE " . EXTENSION_GROUPS_TABLE . " SET max_filesize = " . $new_size . " WHERE max_filesize = " . $old_size; $db->sql_query($sql); } } set_config($config_name, stripslashes($new[$config_name])); if (in_array($config_name, array('max_filesize', 'attachment_quota', 'max_filesize_pm'))) { $new[$config_name] = $old; } } } if ($submit && ($mode == 'manage' || $mode == 'cats')) { add_log('admin', 'LOG_ATTACH_CONFIG'); $notify = TRUE; $notify_msg = $user->lang['ATTACH_CONFIG_UPDATED']; } // Adjust the Upload Directory if (!$new['allow_ftp_upload']) { if ( ($new['upload_dir'][0] == '/') || ( ($new['upload_dir'][0] != '/') && ($new['upload_dir'][1] == ':') ) ) { $upload_dir = $new['upload_dir']; } else { $upload_dir = $phpbb_root_path . $new['upload_dir']; } } else { $upload_dir = $new['download_path']; } switch ($mode) { case 'manage': $l_title = 'ATTACHMENT_CONFIG'; break; case 'cats': $l_title = 'MANAGE_CATEGORIES'; break; case 'ext_groups': $l_title = 'EXTENSION_GROUPS_TITLE'; } // Temporary Language Variables adm_page_header($user->lang[$l_title]); // Search Imagick if ($search_imagick) { $imagick = ''; if (eregi('convert', $imagick)) { continue; } else if ($imagick != 'none') { if (!eregi('WIN', PHP_OS)) { $retval = @exec('whereis convert'); $paths = explode(' ', $retval); if (is_array($paths)) { foreach($paths as $path) { if (basename($path) == 'convert') { $imagick = $path; } } } } else if (eregi('WIN', PHP_OS)) { $path = 'c:/imagemagick/convert.exe'; if (@file_exists($path)) { $imagick = $path; } } } $new['img_imagick'] = (@file_exists(trim($imagick))) ? trim($imagick) : ''; } // Check Settings if ($submit && $mode == 'manage') { $upload_dir = ( ($new['upload_dir'][0] == '/') || ($new['upload_dir'][0] != '/' && $new['upload_dir'][1] == ':') ) ? $new['upload_dir'] : $phpbb_root_path . $new['upload_dir']; test_upload($error, $error_msg, $upload_dir, $new['ftp_path'], $new['allow_ftp_upload'], false); } if ($submit && $mode == 'cats') { $upload_dir = ( ($new['upload_dir'][0] == '/') || ($new['upload_dir'][0] != '/' && $new['upload_dir'][1] == ':') ) ? $new['upload_dir'] . '/thumbs' : $phpbb_root_path . $new['upload_dir'] . '/thumbs'; test_upload($error, $error_msg, $upload_dir, $new['ftp_path'] . '/thumbs', $new['allow_ftp_upload'], true); } if ($submit && $mode == 'ext_groups') { // Change Extension Groups ? $group_change_list = ( isset($_POST['group_change_list']) ) ? $_POST['group_change_list'] : array(); $extension_group_list = ( isset($_POST['extension_group_list']) ) ? $_POST['extension_group_list'] : array(); $group_allowed_list = ( isset($_POST['allowed_list']) ) ? $_POST['allowed_list'] : array(); $download_mode_list = ( isset($_POST['download_mode_list']) ) ? $_POST['download_mode_list'] : array(); $category_list = ( isset($_POST['category_list']) ) ? $_POST['category_list'] : array(); $upload_icon_list = ( isset($_POST['upload_icon_list']) ) ? $_POST['upload_icon_list'] : array(); $filesize_list = ( isset($_POST['max_filesize_list']) ) ? $_POST['max_filesize_list'] : array(); $size_select_list = ( isset($_POST['size_select_list']) ) ? $_POST['size_select_list'] : array(); $allowed_list = array(); for ($i = 0; $i < count($group_allowed_list); $i++) { for ($j = 0; $j < count($group_change_list); $j++) { if ($group_allowed_list[$i] == $group_change_list[$j]) { $allowed_list[$j] = '1'; } } } for ($i = 0; $i < count($group_change_list); $i++) { $allowed = ( isset($allowed_list[$i]) ) ? 1 : 0; $filesize_list[$i] = ( $size_select_list[$i] == 'kb' ) ? round($filesize_list[$i] * 1024) : ( ($size_select_list[$i] == 'mb') ? round($filesize_list[$i] * 1048576) : $filesize_list[$i] ); $group_sql = array( 'group_name' => $extension_group_list[$i], 'cat_id' => $category_list[$i], 'allow_group' => $allowed, 'download_mode' => $download_mode_list[$i], 'upload_icon' => ($upload_icon_list[$i] == 'no_image') ? '' : $upload_icon_list[$i], 'max_filesize' => $filesize_list[$i] ); $sql = "UPDATE " . EXTENSION_GROUPS_TABLE . " SET " . $db->sql_build_array('UPDATE', $group_sql) . " WHERE group_id = " . $group_change_list[$i]; $db->sql_query($sql); } // Delete Extension Groups $group_id_list = ( isset($_POST['group_id_list']) ) ? $_POST['group_id_list'] : array(); if (count($group_id_list)) { $l_group_list = ''; $sql = "SELECT group_name FROM " . EXTENSION_GROUPS_TABLE . " WHERE group_id IN (" . implode(', ', $group_id_list) . ")"; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $l_group_list .= (($l_group_list != '') ? ', ' : '') . $row['group_name']; } $db->sql_freeresult($result); $sql = "DELETE FROM " . EXTENSION_GROUPS_TABLE . " WHERE group_id IN (" . implode(', ', $group_id_list) . ")"; $db->sql_query($sql); // Set corresponding Extensions to a pending Group $sql = "UPDATE " . EXTENSIONS_TABLE . " SET group_id = 0 WHERE group_id IN (" . implode(', ', $group_id_list) . ")"; $db->sql_query($sql); add_log('admin', 'LOG_ATTACH_EXTGROUP_DEL', $l_group_list); } // Add Extensions Group ? $extension_group = ( isset($_POST['add_extension_group']) ) ? trim(strip_tags($_POST['add_extension_group'])) : ''; $download_mode = ( isset($_POST['add_download_mode']) ) ? $_POST['add_download_mode'] : ''; $cat_id = ( isset($_POST['add_category']) ) ? $_POST['add_category'] : ''; $upload_icon = ( isset($_POST['add_upload_icon']) ) ? $_POST['add_upload_icon'] : ''; $filesize = ( isset($_POST['add_max_filesize']) ) ? $_POST['add_max_filesize'] : ''; $size_select = ( isset($_POST['add_size_select']) ) ? $_POST['add_size_select'] : ''; $is_allowed = ( isset($_POST['add_allowed']) ) ? 1 : 0; $add = ( isset($_POST['add_extension_group_check']) ) ? TRUE : FALSE; if ($extension_group != '' && $add) { // check Extension Group $sql = "SELECT group_name FROM " . EXTENSION_GROUPS_TABLE; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { if ($row['group_name'] == $extension_group) { $error = TRUE; if (isset($error_msg)) { $error_msg .= '
'; } $error_msg .= sprintf($user->lang['EXTENSION_GROUP_EXIST'], $extension_group); } } $db->sql_freeresult($result); if (!$error) { $filesize = ($size_select == 'kb') ? round($filesize * 1024) : (($size_select == 'mb') ? round($filesize * 1048576) : $filesize); $group_sql = array( 'group_name' => $extension_group, 'cat_id' => $cat_id, 'allow_group' => $is_allowed, 'download_mode' => $download_mode, 'upload_icon' => ($upload_icon == 'no_image') ? '' : $upload_icon, 'max_filesize' => $filesize ); $sql = "INSERT INTO " . EXTENSION_GROUPS_TABLE . " " . $db->sql_build_array('INSERT', $group_sql); $db->sql_query($sql); add_log('admin', 'LOG_ATTACH_EXTGROUP_ADD', $extension_group); } } $sql = "SELECT e.extension, g.* FROM " . EXTENSIONS_TABLE . " e, " . EXTENSION_GROUPS_TABLE . " g WHERE e.group_id = g.group_id AND g.allow_group = 1"; $result = $db->sql_query($sql); $extensions = array(); while ($row = $db->sql_fetchrow($result)) { $extension = strtolower(trim($row['extension'])); $extensions['_allowed_'][] = $extension; $extensions[$extension]['display_cat'] = intval($row['cat_id']); $extensions[$extension]['download_mode'] = intval($row['download_mode']); $extensions[$extension]['upload_icon'] = trim($row['upload_icon']); $extensions[$extension]['max_filesize'] = intval($row['max_filesize']); } $db->sql_freeresult($result); $cache->destroy('extensions'); $cache->put('extensions', $extensions); if (!$error) { $notify = true; $notify_msg = $user->lang['EXTENSION_GROUPS_UPDATED']; } } ?>

lang[$l_title]; ?>

lang[$l_title . '_EXPLAIN']; ?>

lang['WARNING']; ?>

lang['NOTIFY']; ?>

" method="post">
   | lang['ATTACH_' . strtoupper($modes[$i]) . '_URL']; if ($mode != $modes[$i]) { ?>
lang['ATTACHMENT_SETTINGS']; ?>
lang['UPLOAD_DIR']; ?>:
lang['UPLOAD_DIR_EXPLAIN']; ?>
lang['DISPLAY_ORDER']; ?>:
lang['DISPLAY_ORDER_EXPLAIN']; ?>
/> lang['DESCENDING']; ?>
/> lang['ASCENDING']; ?>
lang['ATTACH_MAX_FILESIZE']; ?>:
lang['ATTACH_MAX_FILESIZE_EXPLAIN']; ?>
lang['ATTACH_QUOTA']; ?>:
lang['ATTACH_QUOTA_EXPLAIN']; ?>
lang['ATTACH_MAX_PM_FILESIZE']; ?>:
lang['ATTACH_MAX_PM_FILESIZE_EXPLAIN']; ?>
lang['MAX_ATTACHMENTS'] ?>:
lang['MAX_ATTACHMENTS_EXPLAIN']; ?>
lang['MAX_ATTACHMENTS_PM'] ?>:
lang['MAX_ATTACHMENTS_PM_EXPLAIN']; ?>
lang['PM_ATTACH']; ?>:
lang['PM_ATTACH_EXPLAIN']; ?>
/> lang['YES']; ?>   /> lang['NO']; ?>
lang['NO_FTP_EXTENSIONS_INSTALLED']; ?>
lang['FTP_UPLOAD']; ?>:
lang['FTP_UPLOAD_EXPLAIN']; ?>
/> lang['YES']; ?>   /> lang['NO']; ?>
lang['FTP_SERVER']; ?>:
lang['FTP_SERVER_EXPLAIN']; ?>
lang['ATTACH_FTP_PATH']; ?>:
lang['ATTACH_FTP_PATH_EXPLAIN']; ?>
lang['FTP_DOWNLOAD_PATH']; ?>:
lang['FTP_DOWNLOAD_PATH_EXPLAIN']; ?>
lang['FTP_PASSIVE_MODE']; ?>:
lang['FTP_PASSIVE_MODE_EXPLAIN']; ?>
/> lang['YES']; ?>   /> lang['NO']; ?>
lang['FTP_USER']; ?>:
lang['FTP_PASS']; ?>:
  
0 ORDER BY cat_id"; $result = $db->sql_query($sql); $s_assigned_groups = array(); while ($row = $db->sql_fetchrow($result)) { $s_assigned_groups[$row['cat_id']][] = $row['group_name']; } $display_inlined_yes = ($new['img_display_inlined']) ? 'checked="checked"' : ''; $display_inlined_no = (!$new['img_display_inlined']) ? 'checked="checked"' : ''; $create_thumbnail_yes = ($new['img_create_thumbnail']) ? 'checked="checked"' : ''; $create_thumbnail_no = (!$new['img_create_thumbnail']) ? 'checked="checked"' : ''; ?>
lang['SETTINGS_CAT_IMAGES']; ?>
lang['ASSIGNED_GROUP']; ?>: lang['NONE']); ?>
lang['DISPLAY_INLINED']; ?>:
lang['DISPLAY_INLINED_EXPLAIN']; ?>
/> lang['YES']; ?>   /> lang['NO']; ?>
lang['CREATE_THUMBNAIL']; ?>:
lang['CREATE_THUMBNAIL_EXPLAIN']; ?>
/> lang['YES']; ?>   /> lang['NO']; ?>
lang['MIN_THUMB_FILESIZE']; ?>:
lang['MIN_THUMB_FILESIZE_EXPLAIN']; ?>
lang['BYTES']; ?>
lang['IMAGICK_PATH']; ?>:
lang['IMAGICK_PATH_EXPLAIN']; ?>
lang['MAX_IMAGE_SIZE']; ?>:
lang['MAX_IMAGE_SIZE_EXPLAIN']; ?>
x
lang['IMAGE_LINK_SIZE']; ?>:
lang['IMAGE_LINK_SIZE_EXPLAIN']; ?>
x
    
' . $img . ''; } $size = isset($_REQUEST['size']) ? intval($_REQUEST['size']) : 0; if (!$size && !$submit) { $max_add_filesize = intval($config['max_filesize']); $size = ($max_add_filesize >= 1048576) ? 'mb' : ( ($max_add_filesize >= 1024) ? 'kb' : 'b' ); } if ($max_add_filesize >= 1048576) { $max_add_filesize = round($max_add_filesize / 1048576 * 100) / 100; } else if ( $max_add_filesize >= 1024) { $max_add_filesize = round($max_add_filesize / 1024 * 100) / 100; } $viewgroup = (!empty($_REQUEST['g'])) ? $_REQUEST['g'] : -1; ?> sql_query($sql); while ($row = $db->sql_fetchrow($result)) { // Format the filesize if ($row['max_filesize'] == 0) { $row['max_filesize'] = intval($config['max_filesize']); } $size_format = ($row['max_filesize'] >= 1048576) ? 'mb' : ( ($row['max_filesize'] >= 1024) ? 'kb' : 'b' ); if ($row['max_filesize'] >= 1048576) { $row['max_filesize'] = round($row['max_filesize'] / 1048576 * 100) / 100; } else if($row['max_filesize'] >= 1024) { $row['max_filesize'] = round($row['max_filesize'] / 1024 * 100) / 100; } $s_allowed = ($row['allow_group'] == 1) ? 'checked="checked"' : ''; $edit_img = ($row['upload_icon'] != '') ? $row['upload_icon'] : ''; $filename_list = ''; $no_image_select = false; foreach ($imglist as $img) { $img = substr($img['path'], 1) . (($img['path'] != '') ? '/' : '') . $img['file']; if ($edit_img == '') { $no_image_select = true; $selected = ''; } else { $selected = ($edit_img == $img) ? ' selected="selected"' : ''; } $filename_list .= ''; } ?> sql_query($sql); while ($e_row = $db->sql_fetchrow($e_result)) { ?>
lang['EXTENSION_GROUPS_TITLE']; ?>
 lang['EXTENSION_GROUP']; ?>   lang['SPECIAL_CATEGORY']; ?>   lang['ALLOWED']; ?>   lang['DOWNLOAD_MODE']; ?>   lang['UPLOAD_ICON']; ?>   lang['MAX_EXTGROUP_FILESIZE']; ?>   lang['ADD']; ?> 
 
   
 lang['EXTENSION_GROUP']; ?>   lang['SPECIAL_CATEGORY']; ?>   lang['ALLOWED']; ?>   lang['DOWNLOAD_MODE']; ?>   lang['UPLOAD_ICON']; ?>   lang['MAX_EXTGROUP_FILESIZE']; ?>   lang['DELETE']; ?> 
" class="gen">
/>    
  

lang['DIRECTORY_DOES_NOT_EXIST'], $new['upload_dir']) . '
'; } if (!$error && !is_dir($upload_dir)) { $error = TRUE; $error_msg = sprintf($user->lang['DIRECTORY_IS_NOT_A_DIR'], $new['upload_dir']) . '
'; } if (!$error) { if ( !($fp = @fopen($upload_dir . '/0_000000.000', 'w')) ) { $error = TRUE; $error_msg = sprintf($user->lang['DIRECTORY_NOT_WRITEABLE'], $new['upload_dir']) . '
'; } else { @fclose($fp); @unlink($upload_dir . '/0_000000.000'); } } } else { // Check FTP Settings $server = ( empty($new['ftp_server']) ) ? 'localhost' : $new['ftp_server']; $conn_id = @ftp_connect($server); if (!$conn_id) { $error = TRUE; $error_msg = sprintf($user->lang['FTP_ERROR_CONNECT'], $server) . '
'; } $login_result = @ftp_login($conn_id, $new['ftp_user'], $new['ftp_pass']); if (!$login_result && !$error) { $error = TRUE; $error_msg = sprintf($user->lang['FTP_ERROR_LOGIN'], $new['ftp_user']) . '
'; } if (!@ftp_pasv($conn_id, intval($new['ftp_pasv_mode']))) { $error = TRUE; $error_msg = $user->lang['FTP_ERROR_PASV_MODE']; } if (!$error) { // Check Upload $tmpfname = @tempnam('/tmp', 't0000'); @unlink($tmpfname); // unlink for safety on php4.0.3+ $fp = @fopen($tmpfname, 'w'); @fwrite($fp, 'test'); @fclose($fp); if ($create_directory) { $result = @ftp_chdir($conn_id, $ftp_path); if (!$result) { @ftp_mkdir($conn_id, $ftp_path); } } $result = @ftp_chdir($conn_id, $ftp_path); if (!$result) { $error = TRUE; $error_msg = sprintf($user->lang['FTP_ERROR_PATH'], $ftp_path) . '
'; } else { $res = @ftp_put($conn_id, 't0000', $tmpfname, FTP_ASCII); if (!$res) { $error = TRUE; $error_msg = sprintf($user->lang['FTP_ERROR_UPLOAD'], $ftp_path) . '
'; } else { $res = @ftp_delete($conn_id, 't0000'); if (!$res) { $error = TRUE; $error_msg = sprintf($user->lang['FTP_ERROR_DELETE'], $ftp_path) . '
'; } } } @ftp_quit($conn_id); @unlink($tmpfname); } } } // Generate select form function size_select($select_name, $size_compare) { global $user; $size_types_text = array($user->lang['BYTES'], $user->lang['KB'], $user->lang['MB']); $size_types = array('b', 'kb', 'mb'); $select_field = ''; return ($select_field); } // Build Select for category items function category_select($select_name, $group_id = -1) { global $db, $user; $types = array( NONE_CAT => $user->lang['NONE'], IMAGE_CAT => $user->lang['CAT_IMAGES'], WM_CAT => $user->lang['CAT_WM_FILES'], RM_CAT => $user->lang['CAT_RM_FILES'] ); if ($group_id != -1) { $sql = "SELECT cat_id FROM " . EXTENSION_GROUPS_TABLE . " WHERE group_id = " . intval($group_id); $result = $db->sql_query($sql); if (!($row = $db->sql_fetchrow($result))) { $cat_type = NONE_CAT; } else { $cat_type = $row['cat_id']; } $db->sql_freeresult($result); } else { $cat_type = NONE_CAT; } $group_select = ''; return($group_select); } // Build select for download modes function download_select($select_name, $group_id = -1) { global $db, $user; $types = array( INLINE_LINK => $user->lang['MODE_INLINE'], PHYSICAL_LINK => $user->lang['MODE_PHYSICAL'] ); if ($group_id != -1) { $sql = "SELECT download_mode FROM " . EXTENSION_GROUPS_TABLE . " WHERE group_id = " . intval($group_id); $result = $db->sql_query($sql); if (!($row = $db->sql_fetchrow($result))) { $download_mode = INLINE_LINK; } else { $download_mode = $row['download_mode']; } $db->sql_freeresult($result); } else { $download_mode = INLINE_LINK; } $group_select = ''; return($group_select); } // Get supported Image types function get_supported_image_types() { $types = array(); if (@extension_loaded('gd')) { if (@function_exists('imagegif')) { $types[] = '1'; } if (@function_exists('imagejpeg')) { $types[] = '2'; } if (@function_exists('imagepng')) { $types[] = '3'; } } return ($types); } function filelist($rootdir, $dir = '', $type = 'gif|jpg|png') { static $images = array(); $dh = opendir($rootdir . $dir); while ($fname = readdir($dh)) { if (is_file($rootdir . $dir . '/' . $fname) && preg_match('#\.' . $type . '$#i', $fname) && filesize($rootdir . $dir . '/' . $fname)) { $images[] = array('path' => $dir, 'file' => $fname); } else if ($fname != '.' && $fname != '..' && !is_file($rootdir . $dir . '/' . $fname) && !is_link($rootdir . $dir . '/' . $fname)) { filelist($rootdir, $dir . '/'. $fname, $type); } } closedir($dh); return $images; } ?>