📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv1.demodesign.com.tr
/
includes
/
config
📝
session.php
← Geri Dön
<?php ob_start(); session_start(); $_SESSION['session']=session_id(); error_reporting(0); header('Content-Type: text/html; charset=utf-8'); ini_set('error_reporting', E_ALL^E_NOTICE); define("GUVENLIK",true); date_default_timezone_set( 'Europe/Istanbul' ); include "includes/config/config.php"; include "includes/config/language.php"; include "includes/config/functions.php"; include "includes/config/hit.php"; total_online(); //** Ayar SQL */ $settings=$db->prepare("SELECT * from ayarlar where id='1'"); $settings->execute(array(0)); $ayar=$settings->fetch(PDO::FETCH_ASSOC); $siteurl = $ayar['site_url']; $site_adi = $ayar['site_baslik']; $odemesettings=$db->prepare("SELECT * from odeme_ayar where id='1'"); $odemesettings->execute(array(0)); $odemeayar=$odemesettings->fetch(PDO::FETCH_ASSOC); $smssettings=$db->prepare("SELECT * from sms where id='1'"); $smssettings->execute(array(0)); $smsayar=$smssettings->fetch(PDO::FETCH_ASSOC); $BakimDurum = $db->prepare("select * from bakim where id='1' and durum='1' order by id"); $BakimDurum->execute(); $bakim = $BakimDurum->fetch(PDO::FETCH_ASSOC); ?> <?php $userSorgusu = $db->prepare("select * from uyeler where eposta=:eposta order by id"); $userSorgusu->execute(array( 'eposta' => $_SESSION['user_email_address'] )); $userCek = $userSorgusu->fetch(PDO::FETCH_ASSOC); if ($userSorgusu->rowCount()<=0){ unset($_SESSION['user_email_address']); } ?> <?php $uyelikAyar = $db->prepare("select * from uyeler_ayar where id=:id "); $uyelikAyar->execute(array( 'id' => '1' ) ); $uyeayar = $uyelikAyar->fetch(PDO::FETCH_ASSOC); $dilMevcut = $db->prepare("select * from dil where kisa_ad=:kisa_ad order by id"); $dilMevcut->execute(array( 'kisa_ad' => $_SESSION['dil'], )); $current_lang = $dilMevcut->fetch(PDO::FETCH_ASSOC); ?>
💾 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