📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
firmarehberiscripti.demodesign.com.tr
/
application
/
helpers
📝
custom_helper.php
← Geri Dön
<?php date_default_timezone_set('Europe/Istanbul'); function active_user(){ $t = &get_instance(); $user = $t->session->userdata("kullanici"); if ($user) return $user; else return false; } function aktif_kullanici(){ $t = &get_instance(); $user = $t->session->userdata("aktifkullanici"); if ($user) return $user; else return false; } function kullanicicek(){ $t = &get_instance(); if ($t->session->userdata("aktifkullanici")) { $user = $t->session->userdata("aktifkullanici"); $kullanici = $t->yonetim_model->get(array( "kullanici_id" => $user->kullanici_id)); if ($kullanici) return $kullanici; else return false; } } if (!function_exists('ayarlar')) { function ayarlar() { $ci =& get_instance(); return $ci->home_model->ayarlar(); } } function zamanCevir ( $zaman ){ $zaman = strtotime($zaman); $zaman_farki = time() - $zaman; $saniye = $zaman_farki; $dakika = round($zaman_farki/60); $saat = round($zaman_farki/3600); $gun = round($zaman_farki/86400); $hafta = round($zaman_farki/604800); $ay = round($zaman_farki/2419200); $yil = round($zaman_farki/29030400); if( $saniye < 60 ){ if ($saniye == 0){ return "Az Önce"; } else { return $saniye .' Saniye Önce'; } } else if ( $dakika < 60 ){ return $dakika .' Dakika Önce'; } else if ( $saat < 24 ){ return $saat.' Saat Önce'; } else if ( $gun < 7 ){ return $gun .' Gün Önce'; } else if ( $hafta < 4 ){ return $hafta.' Hafta Önce'; } else if ( $ay < 12 ){ return $ay .' Ay Önce'; } else { return $yil.' Yıl Önce'; } } function seo($str, $options = array()) { $str = mb_convert_encoding((string)$str, 'UTF-8', mb_list_encodings()); $defaults = array( 'delimiter' => '-', 'limit' => null, 'lowercase' => true, 'replacements' => array(), 'transliterate' => true ); $options = array_merge($defaults, $options); $char_map = array( // Latin 'À' => 'A', 'Á' => 'A', 'Â' => 'A', 'Ã' => 'A', 'Ä' => 'A', 'Å' => 'A', 'Æ' => 'AE', 'Ç' => 'C', 'È' => 'E', 'É' => 'E', 'Ê' => 'E', 'Ë' => 'E', 'Ì' => 'I', 'Í' => 'I', 'Î' => 'I', 'Ï' => 'I', 'Ð' => 'D', 'Ñ' => 'N', 'Ò' => 'O', 'Ó' => 'O', 'Ô' => 'O', 'Õ' => 'O', 'Ö' => 'O', 'Ő' => 'O', 'Ø' => 'O', 'Ù' => 'U', 'Ú' => 'U', 'Û' => 'U', 'Ü' => 'U', 'Ű' => 'U', 'Ý' => 'Y', 'Þ' => 'TH', 'ß' => 'ss', 'à' => 'a', 'á' => 'a', 'â' => 'a', 'ã' => 'a', 'ä' => 'a', 'å' => 'a', 'æ' => 'ae', 'ç' => 'c', 'è' => 'e', 'é' => 'e', 'ê' => 'e', 'ë' => 'e', 'ì' => 'i', 'í' => 'i', 'î' => 'i', 'ï' => 'i', 'ð' => 'd', 'ñ' => 'n', 'ò' => 'o', 'ó' => 'o', 'ô' => 'o', 'õ' => 'o', 'ö' => 'o', 'ő' => 'o', 'ø' => 'o', 'ù' => 'u', 'ú' => 'u', 'û' => 'u', 'ü' => 'u', 'ű' => 'u', 'ý' => 'y', 'þ' => 'th', 'ÿ' => 'y', // Latin symbols '©' => '(c)', // Greek 'Α' => 'A', 'Β' => 'B', 'Γ' => 'G', 'Δ' => 'D', 'Ε' => 'E', 'Ζ' => 'Z', 'Η' => 'H', 'Θ' => '8', 'Ι' => 'I', 'Κ' => 'K', 'Λ' => 'L', 'Μ' => 'M', 'Ν' => 'N', 'Ξ' => '3', 'Ο' => 'O', 'Π' => 'P', 'Ρ' => 'R', 'Σ' => 'S', 'Τ' => 'T', 'Υ' => 'Y', 'Φ' => 'F', 'Χ' => 'X', 'Ψ' => 'PS', 'Ω' => 'W', 'Ά' => 'A', 'Έ' => 'E', 'Ί' => 'I', 'Ό' => 'O', 'Ύ' => 'Y', 'Ή' => 'H', 'Ώ' => 'W', 'Ϊ' => 'I', 'Ϋ' => 'Y', 'α' => 'a', 'β' => 'b', 'γ' => 'g', 'δ' => 'd', 'ε' => 'e', 'ζ' => 'z', 'η' => 'h', 'θ' => '8', 'ι' => 'i', 'κ' => 'k', 'λ' => 'l', 'μ' => 'm', 'ν' => 'n', 'ξ' => '3', 'ο' => 'o', 'π' => 'p', 'ρ' => 'r', 'σ' => 's', 'τ' => 't', 'υ' => 'y', 'φ' => 'f', 'χ' => 'x', 'ψ' => 'ps', 'ω' => 'w', 'ά' => 'a', 'έ' => 'e', 'ί' => 'i', 'ό' => 'o', 'ύ' => 'y', 'ή' => 'h', 'ώ' => 'w', 'ς' => 's', 'ϊ' => 'i', 'ΰ' => 'y', 'ϋ' => 'y', 'ΐ' => 'i', // Turkish 'Ş' => 'S', 'İ' => 'I', 'Ç' => 'C', 'Ü' => 'U', 'Ö' => 'O', 'Ğ' => 'G', 'ş' => 's', 'ı' => 'i', 'ç' => 'c', 'ü' => 'u', 'ö' => 'o', 'ğ' => 'g', // Russian 'А' => 'A', 'Б' => 'B', 'В' => 'V', 'Г' => 'G', 'Д' => 'D', 'Е' => 'E', 'Ё' => 'Yo', 'Ж' => 'Zh', 'З' => 'Z', 'И' => 'I', 'Й' => 'J', 'К' => 'K', 'Л' => 'L', 'М' => 'M', 'Н' => 'N', 'О' => 'O', 'П' => 'P', 'Р' => 'R', 'С' => 'S', 'Т' => 'T', 'У' => 'U', 'Ф' => 'F', 'Х' => 'H', 'Ц' => 'C', 'Ч' => 'Ch', 'Ш' => 'Sh', 'Щ' => 'Sh', 'Ъ' => '', 'Ы' => 'Y', 'Ь' => '', 'Э' => 'E', 'Ю' => 'Yu', 'Я' => 'Ya', 'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'g', 'д' => 'd', 'е' => 'e', 'ё' => 'yo', 'ж' => 'zh', 'з' => 'z', 'и' => 'i', 'й' => 'j', 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o', 'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'h', 'ц' => 'c', 'ч' => 'ch', 'ш' => 'sh', 'щ' => 'sh', 'ъ' => '', 'ы' => 'y', 'ь' => '', 'э' => 'e', 'ю' => 'yu', 'я' => 'ya', // Ukrainian 'Є' => 'Ye', 'І' => 'I', 'Ї' => 'Yi', 'Ґ' => 'G', 'є' => 'ye', 'і' => 'i', 'ї' => 'yi', 'ґ' => 'g', // Czech 'Č' => 'C', 'Ď' => 'D', 'Ě' => 'E', 'Ň' => 'N', 'Ř' => 'R', 'Š' => 'S', 'Ť' => 'T', 'Ů' => 'U', 'Ž' => 'Z', 'č' => 'c', 'ď' => 'd', 'ě' => 'e', 'ň' => 'n', 'ř' => 'r', 'š' => 's', 'ť' => 't', 'ů' => 'u', 'ž' => 'z', // Polish 'Ą' => 'A', 'Ć' => 'C', 'Ę' => 'e', 'Ł' => 'L', 'Ń' => 'N', 'Ó' => 'o', 'Ś' => 'S', 'Ź' => 'Z', 'Ż' => 'Z', 'ą' => 'a', 'ć' => 'c', 'ę' => 'e', 'ł' => 'l', 'ń' => 'n', 'ó' => 'o', 'ś' => 's', 'ź' => 'z', 'ż' => 'z', // Latvian 'Ā' => 'A', 'Č' => 'C', 'Ē' => 'E', 'Ģ' => 'G', 'Ī' => 'i', 'Ķ' => 'k', 'Ļ' => 'L', 'Ņ' => 'N', 'Š' => 'S', 'Ū' => 'u', 'Ž' => 'Z', 'ā' => 'a', 'č' => 'c', 'ē' => 'e', 'ģ' => 'g', 'ī' => 'i', 'ķ' => 'k', 'ļ' => 'l', 'ņ' => 'n', 'š' => 's', 'ū' => 'u', 'ž' => 'z' ); $str = preg_replace(array_keys($options['replacements']), $options['replacements'], $str); if ($options['transliterate']) { $str = str_replace(array_keys($char_map), $char_map, $str); } $str = preg_replace('/[^\p{L}\p{Nd}]+/u', $options['delimiter'], $str); $str = preg_replace('/(' . preg_quote($options['delimiter'], '/') . '){2,}/', '$1', $str); $str = mb_substr($str, 0, ($options['limit'] ? $options['limit'] : mb_strlen($str, 'UTF-8')), 'UTF-8'); $str = trim($str, $options['delimiter']); return $options['lowercase'] ? mb_strtolower($str, 'UTF-8') : $str; } function aylar($ay){ $aylar = array( 1=>"OCAK", 2=>"ŞUBAT", 3=>"MART", 4=>"NİSAN", 5=>"MAYIS", 6=>"HAZİRAN", 7=>"TEMMUZ", 8=>"AĞUSTOS", 9=>"EYLÜL", 10=>"EKİM", 11=>"KASIM", 12=>"ARALIK" ); return $aylar[$ay]; } function populerkategori($ayarlar){ $t = &get_instance(); $where = $t->home_model->kategoriler(array("kategori_durum" => 1, "kategori_populer" => 1),$ayarlar); return $where; } function populerfirma($ayarlar){ $t = &get_instance(); $where = $t->destek_model->firmalar(array("firma_durum" => 1, "firma_populer" => 1),$ayarlar); return $where; } function firmalar($ayarlar, $kullanici_id){ $t = &get_instance(); $where = $t->destek_model->firmalar2(array("kullanici_id" => $kullanici_id),$ayarlar); return $where; } function favorilerim($kullanici_id){ $t = &get_instance(); $where = $t->destek_model->favorilerim(array("favori.kullanici_id" => $kullanici_id)); return $where; } function kategoricek(){ $t = &get_instance(); $where = $t->home_model->kategoridetay(array("kategori_durum" => 1)); return $where; } function onekategori(){ $t = &get_instance(); $where = $t->home_model->kategoridetay(array("kategori_durum" => 1, "kategori_onecikart" => 1)); return $where; } function populerpaket($ayarlar){ $t = &get_instance(); $where = $t->home_model->populerpaket(array("paket_durum" => 1, "paket_populer" => 1),$ayarlar); return $where; } function slidercek($ayarlar){ $t = &get_instance(); $where = $t->home_model->slidercek(array(),$ayarlar); return $where; } function blogana(){ $t = &get_instance(); $where = $t->home_model->blogana(array()); return $where; } function yenipaket($ayarlar){ $t = &get_instance(); $where = $t->home_model->populerpaket(array("paket_durum" => 1),$ayarlar); return $where; } function menuler(){ $t = &get_instance(); $where = $t->destek_model->menucek(array("kategori_durum" => 1)); return $where; } function fmenuler(){ $t = &get_instance(); $where = $t->destek_model->fmenucek(array("kategori_durum" => 1)); return $where; } function sayfalar(){ $t = &get_instance(); $where = $t->destek_model->sayfacek(array("sayfa_durum" => 1, "sayfa_konum" => 1)); return $where; } function footersayfa(){ $t = &get_instance(); $where = $t->destek_model->fsayfacek(array("sayfa_durum" => 1, "sayfa_konum" => 0)); return $where; } function destek(){ $t = &get_instance(); $where = $t->destek_model->destekler(array("destek_durum" => 0)); return $where; } function kdestek(){ $t = &get_instance(); $where = $t->destek_model->destekler(array("destek_durum" => 1)); return $where; } function kategoriler(){ $t = &get_instance(); $where = $t->destek_model->menucek(array()); return $where; } function bloglar(){ $t = &get_instance(); $where = $t->destek_model->blogcek(array()); return $where; } function firmaadmin(){ $t = &get_instance(); $where = $t->destek_model->adminfirma(array()); return $where; } function firmaadminn(){ $t = &get_instance(); $where = $t->destek_model->adminfirma(array("firma_durum" => 0)); return $where; } function firmabyorumlar(){ $t = &get_instance(); $where = $t->destek_model->byorumlar(array()); return $where; } function firmaoyorumlar(){ $t = &get_instance(); $where = $t->destek_model->oyorumlar(array()); return $where; } function detaypaketler($id){ $t = &get_instance(); $where = $t->destek_model->paketler(array("paket_altkategori" => $id)); return $where; } function islempaket($id){ $t = &get_instance(); $where = $t->destek_model->paketler2(array("paket_id" => $id)); return $where; } function kuponuygula($kod){ $t = &get_instance(); $where = $t->home_model->kuponlar(array("kupon_kod" => $kod, "kupon_adet >" => 0)); return $where; } function konular(){ $t = &get_instance(); $where = $t->destek_model->konucek(array()); return $where; } function bekleyensiparis(){ $t = &get_instance(); $where = $t->destek_model->bekleyensiparis(array("siparis_durum" => 0)); return $where; } function tamamlanansiparis(){ $t = &get_instance(); $where = $t->destek_model->bekleyensiparis(array("siparis_durum" => 3)); return $where; } function islemdesiparis(){ $t = &get_instance(); $where = $t->destek_model->bekleyensiparis(array("siparis_durum" => 1)); return $where; } function iptalsiparis(){ $t = &get_instance(); $where = $t->destek_model->bekleyensiparis(array("siparis_durum" => 2)); return $where; } function lisans(){ preg_match("@^(?:http(?:s)?://)?([^/]+)@i", getenv("HTTP_HOST"), $dizi); preg_match("@^(?:www.)?(.*)@i", $dizi[0], $a); if($a[1] != "xmedya.net") die("Bu scripti kullanabilmeniz için lisans almalısınız. İletişim Whatsapp : 05469582099"); } function uretken($len) { $karaktersizler = strtoupper("abcdefghijklmnopqrstuvwxyz0123456789"); $xx= ""; $max = strlen($karaktersizler)-1; for ($i = 0; $i < $len; $i++) { $xx.= $karaktersizler[rand(0,$max)]; } return $xx; } function desteksay() { $t = &get_instance(); $say = $t->destek_model->desteksay(array("destek_durum" => 0)); return $say; } function altkategorisay($id) { $t = &get_instance(); $say = $t->destek_model->altkategorisay(array("kategori_ust" => $id)); return $say; } function firmasay($id) { $t = &get_instance(); $say = $t->destek_model->firmasay(array("kategori_id" => $id)); return $say; } function firmam($id) { $t = &get_instance(); $say = $t->destek_model->firmasay(array("kullanici_id" => $id)); return $say; } function firmamyorumlar($id) { $t = &get_instance(); $say = $t->destek_model->firmamyorumlar(array("kullanici_id" => $id)); return $say; } function blogsay() { $t = &get_instance(); $say = $t->destek_model->blogsay(array()); return $say; } function bekleyensay() { $t = &get_instance(); $say = $t->destek_model->siparissay(array("siparis_durum" => 0)); return $say; } function yorumsaydir($id) { $t = &get_instance(); $say = $t->destek_model->yorumsay(array("firma_id" => $id, "yorum_durum" => 1)); return $say; } function yorumsay($id, $kid) { $t = &get_instance(); $say = $t->destek_model->yorumsay(array("firma_id" => $id, 'kullanici_id' => $kid)); return $say; } function yorumpsay($id) { $t = &get_instance(); $say = $t->destek_model->yorumpuan(array("firma_id" => $id, "yorum_durum" => 1)); return $say; } function gunodemesay() { $t = &get_instance(); $zaman = date('Y-m-d'); $say = $t->destek_model->odemesay(array("siparis_durum" => 3, "siparis_zaman =" => $zaman)); if ($say) { return $say; }else{ $say = 0; return $say; } } function ayodemesay() { $t = &get_instance(); $ay = date('Y-m'); $say = $t->destek_model->odemesay(array("siparis_durum" => 3, "siparis_ay =" => $ay)); if ($say) { return $say; }else{ $say = 0; return $say; } } function tamamlanansay() { $t = &get_instance(); $say = $t->destek_model->siparissay(array("siparis_durum" => 3)); return $say; } function iptalsay() { $t = &get_instance(); $say = $t->destek_model->siparissay(array("siparis_durum" => 2)); return $say; } function islemdesay() { $t = &get_instance(); $say = $t->destek_model->siparissay(array("siparis_durum" => 1)); return $say; } function kuponlar(){ $t = &get_instance(); $where = $t->destek_model->kuponlar(array()); return $where; } function kuponlar2(){ $t = &get_instance(); $where = $t->destek_model->kuponlar2(array()); return $where; } function yorumget(){ $t = &get_instance(); $where = $t->destek_model->yorumget(); return $where; } function sayfalar2(){ $t = &get_instance(); $where = $t->destek_model->sayfalar(array()); return $where; } function kullanicilar(){ $t = &get_instance(); $where = $t->destek_model->kullanicilar(array()); return $where; } function slider(){ $t = &get_instance(); $where = $t->destek_model->slider(array()); return $where; } function paketler2($where){ $t = &get_instance(); $where = $t->destek_model->paketler2($where); return $where; } function detaykategori($id){ $t = &get_instance(); $where = $t->destek_model->detaykategori(array("kategori_id" => $id)); return $where; } function isletimsistemi() { $tespit=$_SERVER['HTTP_USER_AGENT']; if(stristr($tespit,"Windows 95")) { $os="Windows 95"; } elseif(stristr($tespit,"Windows 98")) { $os="Windows 98"; } elseif(stristr($tespit,"Windows NT 5.0")) { $os="Windows 2000"; } elseif(stristr($tespit,"Windows NT 5.1")) { $os="Windows XP"; } elseif(stristr($tespit,"Windows NT 6.0")) { $os="Windows Vista"; } elseif(stristr($tespit,"Windows NT 6.1")) { $os="Windows 7"; } elseif(stristr($tespit,"Windows NT 6.2")) { $os="Windows 8"; } elseif(stristr($tespit,"Windows NT 10.0")) { $os="Windows 10"; } elseif(stristr($tespit,"Mac")) { $os="Mac"; } elseif(stristr($tespit,"Linux")) { $os="Linux"; } else {$os="Bilinmiyor ?";} return $os; } function tarayici() { $tespit2=$_SERVER['HTTP_USER_AGENT']; if(stristr($tespit2,"MSIE")) { $tarayici="Internet Explorer"; } elseif(stristr($tespit2,"Firefox")) { $tarayici="Mozilla Firefox"; } elseif(stristr($tespit2,"YaBrowser")) { $tarayici="Yandex Browser"; } elseif(stristr($tespit2,"Chrome")) { $tarayici="Google Chrome"; } elseif(stristr($tespit2,"Safari")) { $tarayici="Safari"; } elseif(stristr($tespit2,"Opera")) { $tarayici="Opera"; } else {$tarayici="Bilinmiyor";} return $tarayici; } if (!function_exists('admin_url')) { function admin_url() { require APPPATH . "config/route_slugs.php"; return $custom_slug_array["admin"] . "/"; } } if (!function_exists('safadmin_url')) { function safadmin_url() { require APPPATH . "config/route_slugs.php"; return $custom_slug_array["admin"]; } } function generate_shopier_form($data){ $api_key = $data->apikey; $secret = $data->apisecret; $user_registered = date("Y.m.d"); $time_elapsed = time() - strtotime($user_registered); $buyer_account_age = (int)($time_elapsed/86400); $currency = 0; $productinfo = $data->item_name; $producttype = 1; $productinfo = str_replace('"','',$productinfo); $productinfo = str_replace('"','',$productinfo); $current_language=0; $current_lan=0; $modul_version=('1.0.4'); @srand(time(NULL)); $random_number=rand(1000000,9999999); $args = array( 'API_key' => $api_key, 'website_index' => 3, 'platform_order_id' => $data->order_id, 'product_name' => $productinfo, 'product_type' => $producttype, 'buyer_name' => $data->buyer_name, 'buyer_surname' => $data->buyer_surname, 'buyer_email' => $data->buyer_email, 'buyer_account_age' => $buyer_account_age, 'buyer_id_nr' => 0, 'buyer_phone' => $data->buyer_phone, 'billing_address' => $data->billing_address, 'billing_city' => $data->city, 'billing_country' => "TR", 'billing_postcode' => "", 'shipping_address' => $data->billing_address, 'shipping_city' => $data->city, 'shipping_country' => "TR", 'shipping_postcode' => "", 'total_order_value' => $data->ucret, 'currency' => $currency, 'platform' => 0, 'is_in_frame' => 1, 'current_language'=>$current_lan, 'modul_version'=>$modul_version, 'random_nr' => $random_number ); $data = $args["random_nr"].$args["platform_order_id"].$args["total_order_value"].$args["currency"]; $signature = hash_hmac("SHA256",$data,$secret,true); $signature = base64_encode($signature); $args['signature'] = $signature; $args_array = array(); foreach($args as $key => $value){ $args_array[] = "<input type='hidden' name='$key' value='$value'/>"; } return '<html> <!doctype html><head> <meta charset="UTF-8"> <meta content="True" name="HandheldFriendly"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="robots" content="noindex, nofollow, noarchive" /> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" /> <title lang="tr">Güvenli Ödeme Sayfası</title><body><head> <form action="https://www.shopier.com/ShowProduct/api_pay4.php" method="post" id="shopier_payment_form">' . implode('', $args_array) . '<script>document.getElementById("shopier_payment_form").submit();</script></form></body></html>'; } function getIPAddress() { if(getenv("HTTP_CLIENT_IP")) $ip = getenv("HTTP_CLIENT_IP"); else if(getenv("HTTP_X_FORWARDED_FOR")){ $ip = getenv("HTTP_X_FORWARDED_FOR"); if (strstr($ip, ',')){ $tmp = explode (',', $ip); $ip = trim($tmp[0]); }} else $ip = getenv("REMOTE_ADDR"); return $ip; } function kisalt($kelime, $str = 10) { if (strlen($kelime) > $str) { if (function_exists("mb_substr")) $kelime = mb_substr($kelime, 0, $str, "UTF-8").'..'; else $kelime = substr($kelime, 0, $str).'..'; } return $kelime; } if (!function_exists('favoriekle')) { function favoriekle($kullanici_id, $firma_id) { $ci =& get_instance(); return $ci->destek_model->favoriekle($kullanici_id, $firma_id); } } function firmayorumsay($kullanici){ $ci =& get_instance(); $firmalar = $ci->db->where(array('kullanici_id' => $kullanici))->get("firma")->result(); foreach ($firmalar as $key) { $query = $ci->db->where(array("firma_id" => $key->firma_id))->get("yorum"); return $query->num_rows(); } } function firmafavorisay($kullanici){ $ci =& get_instance(); $firmalar = $ci->db->where(array('kullanici_id' => $kullanici))->get("firma")->result(); foreach ($firmalar as $key) { $query = $ci->db->where(array("firma_id" => $key->firma_id))->get("favori"); return $query->num_rows(); } } function firmayorumlari($kullanici){ $ci =& get_instance(); $firmalar = $ci->db->where(array('kullanici_id' => $kullanici))->get("firma")->result(); foreach ($firmalar as $key) { $query = $ci->db->join('kullanici', 'kullanici.kullanici_id = yorum.kullanici_id')->join('firma', 'firma.firma_id = yorum.firma_id')->where(array("yorum.firma_id" => $key->firma_id))->get("yorum")->result(); return $query; } } ?>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula