hey guys, i'm having a little problem. I'm working on a wordpress template which lists all files on my ftp. Therefore i ask for the the password and pass it straight along to the ftp_connect.
Yani yapısı bu gibi görünüyor. Ben şifre soruyorum, ve (ve gönderir) girdiyse ben bütün dosyaları listeler hangi ftp_include.php adında bir dosya ekleriz. O kadar iyi çalışıyor.
Ben tek sorun ben Ajax (jQuery) ile bu inlcude yenileme / yeniden olmasıdır. Bununla birlikte, yalnızca içerir. Ve ben bu içerir yenilemek everyime (başında girilen şifre ile) tekrar sunucuya bağlanmak zorundadır.
Birkaç adamlar zaten Şifremi saklamak PHP OTURUMLARIN, ve benim ben tekrar almak ediyorum dahil içinde çalışmak gerektiğini burada söyledi.
Somehow i can't figure out why my SESSION cookie wont work. I guess it's getting stored properly with this:
session_start ();
session_start ();
if(!isset($_SESSION['ftp-password']) ) {
$_SESSION['ftp-password'] = $_POST['password'];
}
var_dump(ini_get_all('session')); //shows both times
//this result:http://cl.ly/1hzA ->
//so it seems it doesn't get stored properly, does it?
Ben bu hatları ile şunlardır içindeki şifreyi almak ediyorum çünkü ben öyle düşünüyorum:
if(isset($_SESSION['ftp-password']) ) {
$ftp_user_pass = $_SESSION['ftp-password'];
echo "Password: " . $ftp_user_pass;
} else {
print "can't find cookie!";
}
and it even CONNECTS to the server for the first time. However as soon as i refresh the include with Ajax somehoe it always says "can't find cookie". Any idea why that happens. I even tried with set_cookie() but the same result.
senin keyif için teşekkür ederim