Jump to content

Hongis_3

Üye
  • Posts

    44
  • Joined

  • Last visited

Profile Information

  • Male
  • Sürmene

Recent Profile Visitors

1715 profile views

Hongis_3's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Birde şunu denermisin. Windowsun kurulu olduğu sürücüde "genelde c: sürücüsü olur" sağ tıklayıp. özelliklere tıkla. genel sekmesinde  altta iki onay kutucuğu var.  orda altta olan   "Bu sürücüdeki dosyaların, dosya özelliklerine ek olarak içeriklerininde dizin haline getirilmesine izinver"  in işaretini kaldırıp tamam de. işlem süresi bilgisayarının hızına  bağlı olarak değişebilir.
  2. disk yönetiminden sürücü harfini değiştirmeyi  deneyin.  bende  birkaçkez karşılaştım. harf değişince  düzelmişti
  3. bunu bir denermisin   set ISOFILE=/iso dosyası   burdaki iso yolunu kendi dosyanın konumuna göre  ayarlayıp  
  4. mesajı şimdi gördüm    evet  haklısınız.  düzelttim problemi bu yeni hali.   [spoiler] <?php ini_set("memory_limit", "200000000"); // for large images so that we do not get "Allowed memory exhausted"?> <?php // upload the file if ((isset($_POST["submitted_form"])) && ($_POST["submitted_form"] == "image_upload_form")) { // file needs to be jpg,gif,bmp,x-png and 4 MB max if (($_FILES["image_upload_box"]["type"] == "image/jpeg" || $_FILES["image_upload_box"]["type"] == "image/pjpeg" || $_FILES["image_upload_box"]["type"] == "image/gif" || $_FILES["image_upload_box"]["type"] == "image/png") && ($_FILES["image_upload_box"]["size"] < 4000000)) { // some settings $max_upload_width = 2592; $max_upload_height = 1944; // if user chosed properly then scale down the image according to user preferances if(isset($_REQUEST['max_width_box']) and $_REQUEST['max_width_box']!='' and $_REQUEST['max_width_box']<=$max_upload_width){ $max_upload_width = $_REQUEST['max_width_box']; } if(isset($_REQUEST['max_height_box']) and $_REQUEST['max_height_box']!='' and $_REQUEST['max_height_box']<=$max_upload_height){ $max_upload_height = $_REQUEST['max_height_box']; } // if uploaded image was JPG/JPEG if($_FILES["image_upload_box"]["type"] == "image/jpeg" || $_FILES["image_upload_box"]["type"] == "image/pjpeg"){ $image_source = imagecreatefromjpeg($_FILES["image_upload_box"]["tmp_name"]); } // if uploaded image was GIF if($_FILES["image_upload_box"]["type"] == "image/gif"){ $image_source = imagecreatefromgif($_FILES["image_upload_box"]["tmp_name"]); } // BMP doesn't seem to be supported so remove it form above image type test (reject bmps) // if uploaded image was BMP if($_FILES["image_upload_box"]["type"] == "image/bmp"){ $image_source = imagecreatefromwbmp($_FILES["image_upload_box"]["tmp_name"]); } // if uploaded image was PNG if($_FILES["image_upload_box"]["type"] == "image/png"){ $image_source = imagecreatefrompng($_FILES["image_upload_box"]["tmp_name"]); } ///////////// burası yeniden düzenlendi ///////////////////////// // dosya için yeni isim üretilmesi $benzersiz_isim= md5(uniqid(rand())); // dosyanın uzantısının alınması $dosya_uzantisi=end(explode(".",$_FILES["image_upload_box"]["name"])); // yeni dosya adı ve uzantısının birleştirilmesi $yeni_isim=$benzersiz_isim.".".$dosya_uzantisi; $remote_file = "img/post/".$yeni_isim; imagejpeg($image_source,$remote_file,100); chmod($remote_file,0644); ///////////// burası yeniden düzenlendi ///////////////////////// // get width and height of original image list($image_width, $image_height) = getimagesize($remote_file); if($image_width>$max_upload_width || $image_height >$max_upload_height){ $proportions = $image_width/$image_height; if($image_width>$image_height){ $new_width = $max_upload_width; $new_height = round($max_upload_width/$proportions); } else{ $new_height = $max_upload_height; $new_width = round($max_upload_height*$proportions); } $new_image = imagecreatetruecolor($new_width , $new_height); $image_source = imagecreatefromjpeg($remote_file); imagecopyresampled($new_image, $image_source, 0, 0, 0, 0, $new_width, $new_height, $image_width, $image_height); imagejpeg($new_image,$remote_file,100); imagedestroy($new_image); } imagedestroy($image_source); header("Location: img_upload.php?upload_message=image uploaded&upload_message_type=success&show_image=".$yeni_isim); exit; } else{ header("Location: img_upload.php?upload_message=make sure the file is jpg, gif or png and that is smaller than 4MB&upload_message_type=error"); exit; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Hızlı Resim Yükle</title> <style type="text/css"> <!-- body,td,th { font-family: Arial, Helvetica, sans-serif; color: #333333; font-size: 12px; background-color: #FFF; } .upload_message_success { padding:4px; background-color:#009900; border:1px solid #006600; color:#FFFFFF; margin-top:10px; margin-bottom:10px; } .upload_message_error { padding:4px; background-color:#CE0000; border:1px solid #990000; color:#FFFFFF; margin-top:10px; margin-bottom:10px; } .hide_input { visibility: hidden; } .upload_buton { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 18px; color: #FFF; background-color: #62C5C5; height: 30px; width: 150px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; } .upload_buton:hover { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 18px; color: #FFF; background-color: #F03; height: 30px; width: 150px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; } .reg_input { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 14px; color: #666; height: 25px; width: 250px; border: 1px solid #62C5C5; } .reg_input_two { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 14px; color: #666; height: 25px; width: 400px; border: 1px solid #62C5C5; } --> </style> </head> <body> <form action="img_upload.php" method="post" enctype="multipart/form-data" name="image_upload_form" id="image_upload_form" style="margin-bottom:0px;"> <label></label> <input name="image_upload_box" type="file" class="reg_input" id="image_upload_box" size="40" /> <input name="submit" type="submit" class="upload_buton" value="Resmi Yükle" /> <label></label> <input name="max_width_box" type="text" class="hide_input" id="max_width_box" value="420" size="4"> <input name="max_height_box" type="text" class="hide_input" id="max_height_box" value="" size="4"> <br /> <input name="submitted_form" type="hidden" id="submitted_form" value="image_upload_form" /> <noscript></noscript> </form> <br /> Resim yüklendi !. Aşağıdaki link ile resmi paylaşabilirsiniz ! <?php if(isset($_REQUEST['show_image']) and $_REQUEST['show_image']!=''){?> <p> <label> <input name="up_img_show" type="text" class="reg_input_two" id="up_img_show" value="/img/post/<?php echo $_REQUEST['show_image'];?>" /> </label> </p> <?php }?> </body> </html> [/spoiler]
  5. birazcık eklemeyle kodunuzun yeni hali   açıklamalar eklenmiştir   [spoiler] <?php ini_set("memory_limit", "200000000"); // for large images so that we do not get "Allowed memory exhausted"?> <?php // upload the file if ((isset($_POST["submitted_form"])) && ($_POST["submitted_form"] == "image_upload_form")) { // file needs to be jpg,gif,bmp,x-png and 4 MB max if (($_FILES["image_upload_box"]["type"] == "image/jpeg" || $_FILES["image_upload_box"]["type"] == "image/pjpeg" || $_FILES["image_upload_box"]["type"] == "image/gif" || $_FILES["image_upload_box"]["type"] == "image/png") && ($_FILES["image_upload_box"]["size"] < 4000000)) { // some settings $max_upload_width = 2592; $max_upload_height = 1944; // if user chosed properly then scale down the image according to user preferances if(isset($_REQUEST['max_width_box']) and $_REQUEST['max_width_box']!='' and $_REQUEST['max_width_box']<=$max_upload_width){ $max_upload_width = $_REQUEST['max_width_box']; } if(isset($_REQUEST['max_height_box']) and $_REQUEST['max_height_box']!='' and $_REQUEST['max_height_box']<=$max_upload_height){ $max_upload_height = $_REQUEST['max_height_box']; } // if uploaded image was JPG/JPEG if($_FILES["image_upload_box"]["type"] == "image/jpeg" || $_FILES["image_upload_box"]["type"] == "image/pjpeg"){ $image_source = imagecreatefromjpeg($_FILES["image_upload_box"]["tmp_name"]); } // if uploaded image was GIF if($_FILES["image_upload_box"]["type"] == "image/gif"){ $image_source = imagecreatefromgif($_FILES["image_upload_box"]["tmp_name"]); } // BMP doesn't seem to be supported so remove it form above image type test (reject bmps) // if uploaded image was BMP if($_FILES["image_upload_box"]["type"] == "image/bmp"){ $image_source = imagecreatefromwbmp($_FILES["image_upload_box"]["tmp_name"]); } // if uploaded image was PNG if($_FILES["image_upload_box"]["type"] == "image/png"){ $image_source = imagecreatefrompng($_FILES["image_upload_box"]["tmp_name"]); } ///////////// burası yeniden düzenlendi ///////////////////////// // dosya için yeni isim üretilmesi $benzersiz_isim= md5(uniqid(rand())); // dosyanın uzantısının alınması $dosya_uzantisi=end(explode(".",$_FILES["image_upload_box"]["name"])); // yeni dosya adı ve uzantısının birleştirilmesi $yeni_isim=$benzersiz_isim.".".$dosya_uzantisi; $remote_file = "img/post/".$yeni_isim; imagejpeg($image_source,$remote_file,100); chmod($remote_file,0644); ///////////// burası yeniden düzenlendi ///////////////////////// // get width and height of original image list($image_width, $image_height) = getimagesize($remote_file); if($image_width>$max_upload_width || $image_height >$max_upload_height){ $proportions = $image_width/$image_height; if($image_width>$image_height){ $new_width = $max_upload_width; $new_height = round($max_upload_width/$proportions); } else{ $new_height = $max_upload_height; $new_width = round($max_upload_height*$proportions); } $new_image = imagecreatetruecolor($new_width , $new_height); $image_source = imagecreatefromjpeg($remote_file); imagecopyresampled($new_image, $image_source, 0, 0, 0, 0, $new_width, $new_height, $image_width, $image_height); imagejpeg($new_image,$remote_file,100); imagedestroy($new_image); } imagedestroy($image_source); header("Location: img_upload.php?upload_message=image uploaded&upload_message_type=success&show_image=".$_FILES["image_upload_box"]["name"]); exit; } else{ header("Location: img_upload.php?upload_message=make sure the file is jpg, gif or png and that is smaller than 4MB&upload_message_type=error"); exit; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Hızlı Resim Yükle</title> <style type="text/css"> <!-- body,td,th { font-family: Arial, Helvetica, sans-serif; color: #333333; font-size: 12px; background-color: #FFF; } .upload_message_success { padding:4px; background-color:#009900; border:1px solid #006600; color:#FFFFFF; margin-top:10px; margin-bottom:10px; } .upload_message_error { padding:4px; background-color:#CE0000; border:1px solid #990000; color:#FFFFFF; margin-top:10px; margin-bottom:10px; } .hide_input { visibility: hidden; } .upload_buton { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 18px; color: #FFF; background-color: #62C5C5; height: 30px; width: 150px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; } .upload_buton:hover { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 18px; color: #FFF; background-color: #F03; height: 30px; width: 150px; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; } .reg_input { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 14px; color: #666; height: 25px; width: 250px; border: 1px solid #62C5C5; } .reg_input_two { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 14px; color: #666; height: 25px; width: 400px; border: 1px solid #62C5C5; } --> </style> </head> <body> <form action="img_upload.php" method="post" enctype="multipart/form-data" name="image_upload_form" id="image_upload_form" style="margin-bottom:0px;"> <label></label> <input name="image_upload_box" type="file" class="reg_input" id="image_upload_box" size="40" /> <input name="submit" type="submit" class="upload_buton" value="Resmi Yükle" /> <label></label> <input name="max_width_box" type="text" class="hide_input" id="max_width_box" value="420" size="4"> <input name="max_height_box" type="text" class="hide_input" id="max_height_box" value="" size="4"> <br /> <input name="submitted_form" type="hidden" id="submitted_form" value="image_upload_form" /> <noscript></noscript> </form> <br /> Resim yüklendi !. Aşağıdaki link ile resmi paylaşabilirsiniz ! <?php if(isset($_REQUEST['show_image']) and $_REQUEST['show_image']!=''){?> <p> <label> <input name="up_img_show" type="text" class="reg_input_two" id="up_img_show" value="/img/post/<?php echo $_REQUEST['show_image'];?>" /> </label> </p> <?php }?> </body> </html>  [/spoiler]
  6. geçmiş olsun  sayın sere   işe yaradığına  sevindim. korktuğunuz kadar olmamış bakın  kendiniz  tamir edebildiniz..
  7. sayın sere notebook garantisi devam etmiyorsa.  ekranı sökün  web cama giden kablo jaktan çıkmış olabilir.yada ekran kapağını açıp kapatmadan dolayı kasadan ( notebook ) gelen kabloda kesilme yada çıkma. hemen ekran menteşelerinin yanında.  usb aygıtlarını kontrol ettiniz mi? usb aygıtlarını devredışı brakıp tekrar etkinleştirin. acer marka bir noteebokta  karşılaşmıştım. Fn + Fxx tuşlarından sonuç alamadığınızı söylemenize ve yeni sistem kurduğunuzu söylemenize binayen üstteki    yöntemleri yazdım.
  8. [img]http://i3.lulzimg.com/949c0b6971.png[/img] Çok yakından tanıdığım bilgisayarlar sayesinde baya bir geçmişim olan TornadoEffect arkadaşımızın bugün doğum günü.Buradan kendisinin doğum gününü kutlayarak sizlerle paylaşmak istedim.Nice mutlu yıllara paylaşım devi
  9. [quote name='blue_life' date='31 May 2012 - 06:34 ' timestamp='1338446057' post='1206928'] @Hongis_3 Paylaşım için teşekkürler. Gerçekten güzel görünüyorlar. Yalnız ilk paylaştığın gfxmenüyü denemek için indirdim ve qemu ile wmvarede çalışmadı malesef Siyah ekranda takıldı. [/quote] Sayın blue_life sizin hazırlamış olduğunuz Multi Boot ta bulunan Qemu da ve değişik bilgisayarlarda test ettim herhangibir sorun yaşamadım. ama Wmvarede denemedim.
  10. geç yanıt verdiğim için kusura bakmayın. mesajınızı şimdi gördüm.

    buraya mesajınızı yazacaksınız

    umarım yardımcı olmuşumdur.

  11. abim sa bişey soracaktımda

    forumda paylaşılan xp ler var

    resimler fazla olunca

    hani snow diye bi buton var ona tıklayınca açılıorya resimler

    yanında spoiler yazıor onu nasıl yapıorlar abim bi cvp yazarmsn ne olr

  12. Hazırladığım birkaçtane Boot menüyü sizlerle paylaşmak istedim... [spoiler] ANAMENU_800X600 [img]http://www.mediafire.com/conv/273021347dab078ffb20b7da4dfde65e343900b7f591d7d97f22635e82d900816g.jpg[/img] http://www.mediafire.com/?gdri5npy0tspcwu WIN7_800X600 [img]http://www.mediafire.com/conv/70dbb2b2934fe6ecfc15b3e763ced60a3c73d743669543d88b9509908a40e4ca6g.jpg[/img] http://www.mediafire.com/?1yf94gbifjbg41p WINXP_800X600 [img]http://www.mediafire.com/conv/d81ee505c0f5314bd585e12036e690c371c50b3a28faa1cd9b85435d69428a2b6g.jpg[/img] http://www.mediafire.com/?355ppot6859kcfl UBUNTU_800X600 [img]http://www.mediafire.com/conv/35e1763ac24b52879be8761d5236574ad8acb00dcd8da90704cbceef6a788cf56g.jpg[/img] http://www.mediafire.com/?wv9gbnjrmlnqtcu ARACLAR_800X600 [img]http://www.mediafire.com/conv/b031cda6c98a01bea1ee8c67af03d887e6c9825a952d1d3ad95d76dddad794d36g.jpg[/img] http://www.mediafire.com/?2fig4f3ufbvhhsf [/spoiler]
  13. kesme işlemi yaptığınız konum nedir acaba?
  14. [quote name='VirtualTeam' date='20 April 2012 - 19:17 ' timestamp='1334949461' post='1189731'] benim dizüstünde numlock hep açık böyle bir sorun yok bu casper kendini birkere daha gösterdi [/quote] birşey demeyeyim demeyeyim diyorum ama sabredemedim. çünkü senin dizüstü bilgisayarın da şayet yazdığın mesajdaki doğruysa "Lenovo g560a" kullanıyorsun. numerik tuşları olan bir model. ek numerik tuşları olmayanlarda durum benim söylediğim gibi. [img]http://www.bilgex.com/wp-content/uploads/Lenovo-G560-G560A-59-033776-Notebook-4.jpg[/img] sanırım artık başkalarının basit gözüksede cevaplarına saygılı olmayı öğrenirsin.
  15. [quote name='VirtualTeam' date='20 April 2012 - 18:18 ' timestamp='1334945936' post='1189699'] olasılıkları kendi klavyemde deniyorum ama hiçbiri sizin arkadaşa yardımcı olma cevaplarından değil ve sanki kafadan atma gibi o yüzden bu alaycı tavrım [/quote] Haklısınız siz kendi klavyenizde deniyorsunuz. Ben ise dede den kalma daktilo ile deniyorum.
×
×
  • Create New...