![]() |
Закачка файлов.
Здравствуйте добрые люди. Мне сказали вы добрые и можете помочь.
Вот как бы сама функция заливки. Код:
if($_FILES ['thumb_a'] ['name'] != "") { $file_prefix = time() + rand( 1, 100 ); $file_prefix .= "_"; if( ! is_dir( ROOT_DIR . "/uploads/dop2_files/" ) ) { @mkdir( ROOT_DIR . "/uploads/dop2_files/", 0777 ); @chmod( ROOT_DIR . "/uploads/dop2_files/", 0777 ); } if( ! is_dir( ROOT_DIR . "/uploads/dop2_files/" ) ) { msg( "error", "Directory Error", "/uploads/dop2_files/ cannot created." ); } ##==========================================Создание и сохранение скриншота======================================## if (! empty ( $_FILES ['thumb_a'] ['name'] )) { $config_path_image_upload = ROOT_DIR . "/uploads/dop2_files/"; $allowed_extensions = array ("gif", "jpg", "png", "jpe", "jpeg" ); $imageurl = trim ( htmlspecialchars ( strip_tags ( $_POST ['imageurl'] ) ) ); $urlcopy_img = ""; $current_image = "thumb_a"; $image = $_FILES [$current_image] ['tmp_name']; $image_name = $_FILES [$current_image] ['name']; $image_size = $_FILES [$current_image] ['size']; $img_name_arr = explode ( ".", $image_name ); $type = totranslit ( end ( $img_name_arr ) ); if ($image_name != "") { $curr_key = key ( $img_name_arr ); unset ( $img_name_arr [$curr_key] ); $image_name = totranslit ( implode ( ".", $img_name_arr ) ) . "." . $type; } if ($image_name == "") $error .= "<div><font color=red>$current_image -> $lang[images_uperr]</font></div>"; elseif (! (in_array ( $type, $allowed_extensions ) or in_array ( strtolower ( $type ), $allowed_extensions ))) $error .= "<div><font color=red>$current_image -> $lang[images_uperr_2]</font></div>"; elseif ($image_size > ($config ['max_up_size'] * 1024) and ! $config ['max_up_side']) $error .= "<div><font color=red>$current_image -> $lang[images_big]</font></div>"; else { $image_name = $file_prefix . $image_name; @move_uploaded_file( $image, $config_path_image_upload . $image_name ) or $img_result = "<div><font color=red>$lang[images_uperr_3]</font></div>"; if (@file_exists ( $config_path_image_upload . $file_prefix . $image_name )) { @chmod ( $config_path_image_upload . $file_prefix . $image_name, 0666 ); $error .= "<div><font color=green>$image_name -> $lang[images_upok]</font></div>"; } } $file_name_thumb = $image_name; } } ##==========================================Конец Создание и сохранение скриншота======================================##Код:
enctype=\"multipart/form-data\"Код:
screenshot[IMG] Код:
{$file_name_thumb}Нужно как то вот это запихать вот в этот Код:
<?php @session_start(); @error_reporting( 7 ); @ini_set( 'display_errors', true ); @ini_set( 'html_errors', false ); define( 'DATALIFEENGINE', true ); define( 'ROOT_DIR', '../..' ); define( 'ENGINE_DIR', '..' ); include ENGINE_DIR . '/data/config.php'; if( $config['http_home_url'] == "" ) { $config['http_home_url'] = explode( "engine/ajax/editnews.php", $_SERVER['PHP_SELF'] ); $config['http_home_url'] = reset( $config['http_home_url'] ); $config['http_home_url'] = "http://" . $_SERVER['HTTP_HOST'] . $config['http_home_url']; } require_once ENGINE_DIR . '/classes/mysql.php'; require_once ENGINE_DIR . '/data/dbconfig.php'; if( $_COOKIE['dle_skin'] ) { if( @is_dir( ROOT_DIR . '/templates/' . $_COOKIE['dle_skin'] ) ) { $config['skin'] = $_COOKIE['dle_skin']; } } if( $config["lang_" . $config['skin']] ) { include_once ROOT_DIR . '/language/' . $config["lang_" . $config['skin']] . '/website.lng'; } else { include_once ROOT_DIR . '/language/' . $config['langs'] . '/website.lng'; } $config['charset'] = ($lang['charset'] != '') ? $lang['charset'] : $config['charset']; require_once ENGINE_DIR . '/modules/functions.php'; require_once ENGINE_DIR . '/classes/parse.class.php'; require_once ENGINE_DIR . '/modules/sitelogin.php'; $parse = new ParseFilter( Array (), Array (), 1, 1 ); if( ! $is_logged ) die( "error" ); $id = intval( $_REQUEST['id'] ); if( ! $id ) die( "error" ); //################# Определение групп пользователей $user_group = get_vars( "usergroup" ); if( ! $user_group ) { $user_group = array (); $db->query( "SELECT * FROM " . USERPREFIX . "_usergroups ORDER BY id ASC" ); while ( $row = $db->get_row() ) { $user_group[$row['id']] = array (); foreach ( $row as $key => $value ) { $user_group[$row['id']][$key] = $value; } } set_vars( "usergroup", $user_group ); $db->free(); } if( $_REQUEST['action'] == "edit" ) { $row = $db->super_query( "SELECT id, title, category, short_story, full_story, autor, allow_br, reason FROM " . PREFIX . "_post where id = '$id'" ); if( $id != $row['id'] ) die( "error" ); $cat_list = explode( ',', $row['category'] ); $have_perm = 0; if( $user_group[$member_id['user_group']]['allow_all_edit'] ) { $have_perm = 1; $allow_list = explode( ',', $user_group[$member_id['user_group']]['cat_add'] ); foreach ( $cat_list as $selected ) { if( $allow_list[0] != "all" and ! in_array( $selected, $allow_list ) ) $have_perm = 0; } } if( $user_group[$member_id['user_group']]['allow_edit'] and $row['autor'] == $member_id['name'] ) { $have_perm = 1; } if( ($member_id['user_group'] == 1) ) { $have_perm = 1; } if( ! $have_perm ) die( "error" ); if( $_REQUEST['field'] == "short" ) $news_txt = $row['short_story']; elseif( $_REQUEST['field'] == "full" and (strlen( $row['full_story'] ) > 13) ) $news_txt = $row['full_story']; else $news_txt = $row['short_story']; if( $row['allow_br'] and ! $config['allow_quick_wysiwyg'] ) { $news_txt = $parse->decodeBBCodes( $news_txt, false ); $fix_br = "checked"; } else { if( $config['allow_quick_wysiwyg'] ) $news_txt = $parse->decodeBBCodes( $news_txt, true, "yes" ); else $news_txt = $parse->decodeBBCodes( $news_txt, true, "no" ); $fix_br = ""; } $row['title'] = $parse->decodeBBCodes( $row['title'], false ); $addtype = "addnews"; if( ! $config['allow_quick_wysiwyg'] ) { include_once ENGINE_DIR . '/ajax/bbcode.php'; } else { $bb_code = <<<HTML <script type="text/javascript"> tinyMCE.init({ // General options mode : "exact", theme : "advanced", elements : "dleeditnews{$id}", language : "{$lang['wysiwyg_language']}", width : "99%", height : "350", plugins : "safari,emotions,inlinepopups", relative_urls : false, convert_urls : false, force_br_newlines : true, forced_root_block : '', force_p_newlines : false, dialog_type : 'window', extended_valid_elements : "div[align|class|style|id|title]", // Theme options theme_advanced_buttons1 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,dle_leech,image,dle_mp,dle_mp3,emotions,|,dle_hide,dle_quote,dle_code,dle_spoiler,|,sub,sup,|,charmap,advhr,|,dle_break,dle_page", theme_advanced_buttons2 : "formatselect,fontselect,fontsizeselect,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,forecolor,backcolor,|,removeformat,cleanup,|,code", theme_advanced_buttons3 : "", theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_statusbar_location : "bottom", theme_advanced_resizing : true, // Example content CSS (should be your site CSS) content_css : "{$config['http_home_url']}engine/editor/css/content.css", setup : function(ed) { // Add a custom button ed.addButton('dle_quote', { title : '{$lang['bb_t_quote']}', image : '{$config['http_home_url']}engine/editor/jscripts/tiny_mce/themes/advanced/img/dle_quote.gif', onclick : function() { // Add you own code to execute something on click ed.execCommand('mceReplaceContent',false,' |
приведи тему в нормальный вид и люди потянутся ;)
|
toxx http://idvl.ru/files/download.php?file=1c5124df24f5b7c2180756f0e16d46f5
возьми за пример |
Мне вот всегда интересно было, а весь код одной строчкой пишут только для того, что бы его читать сложнее было? Тогда зачем его выкладывать где то? оО
|
| Время: 05:15 |