php ile webmail cpanel giriş alanını özelleştirme

1 Cevap php

Ben (onlara ben ev sahibi ve kendi sistemini kullanmak gibi görünüyor) ne hostgator benzer webmail kurulum var. Ben webmail giriş sayfasını özelleştirmek için çalışıyor, ama biraz şaşırıp ediyorum.

Aşağıda webmail sayfa / noktasına gittiğinizde, bir popup giriş formunu değil, bir web giriş formu olsun. Eğer iptal vurursanız, sonunda web giriş formu yükler.

http://www.hostgator.com/webmail/

Note that I'm using hostgator's webmail link just as an example because they use the same script.

Açılan giriş formunu önlemek ve web giriş forma düz gitmek php (veya herhangi başka bir şekilde) bir çıkış yolu var mı? Bir sonraki adım bu tema, vs vs bu komut nasıl çalıştığı hakkında herhangi bir fikir ya da eğitimlerini olurdu?

1 Cevap

Eğer oturum açma formunu içeren bir HTML sayfası oluşturun.

Şeklinde size followig GİRİŞ alanları eklemeniz gerekir:

<form action="http://yourdomain:2095/login" method="POST">
   <input id="user" name="user" type="text" value="Write your mail here">
   <input id="pass" name="pass" type="password">
   <input type="submit" value="ENTER">
</form>

You must use the name provided: ('user' and 'pass')

Ben form action "/ login" olmadan "http://yourdomain:2095" basit olmalıdır eğer, hem deneyebilirsiniz emin değilim.

Istediğiniz gibi Sonra HTML sayfası stilize.

In case you have a reseller account (I mean you can access WHM), on cPanel forum they say you can customize your webmail login page by using a functionality in WHM menu: "Server Configuration -> Tweak Settings". I have never tried this, because they are disabled on my hosting, plz let me know if on your hosting they work. If it works this is probably th ebest way to go, because it would let you customize also the logout page.