Merhaba Arkadaşlar Bir Zamanlar WHMCS Bildiğiniz Üzere Web Hosting Satış Scriptdir.
1.Kurulum Videosu
2.Tema Kurulum
3.Tema Editleme
4.Tema Sayfa Aktif Etme
5.WHMCA Modülleri
6.WHMCS Temaları
Videoları Tek Tek Yeniden Hazırlıyıp Bu Konuda Paylaşacam
Sormak istediğiniz soru varsa Sorun Destek Sınır Tanımam
Referans İsterseniz Referans'da Verebilirim ve + WHMCS Resmi Websitesi Girib Sorgulaya Bilirsiniz Lisanslı WHMCS Kullanıyorum
ve Lisanslı Sitelere Yardım Ederim.. Lisanssız Site İle Karşıma Gelmeyin
WHMCS Sayfa Aktif Etme Kodu :
Kod:
[/B]define("CLIENTAREA",true);
//define("FORCESSL",true); # Uncomment to force the page to use https://
require("dbconnect.php");
require("includes/functions.php");
require("includes/clientareafunctions.php");
$pagetitle = $_LANG['clientareatitle'];
$breadcrumbnav = '<a href="index.php">'.$_LANG['globalsystemname'].'[/url]';
$breadcrumbnav .= ' > <a href="mypage.php">My Page[/url]';
initialiseClientArea($pagetitle,'',$breadcrumbnav);
# To assign variables to the template system use the following syntax.
# These can then be referenced using {$variablename} in the template.
$smartyvalues["variablename"] = $value;
# Check login status
if ($_SESSION['uid']) {
# User is logged in - put any code you like here
# Here's an example to get the currently logged in clients first name
$result = mysql_query("SELECT firstname FROM tblclients WHERE id=".(int)$_SESSION['uid']);
$data = mysql_fetch_array($result);
$clientname = $data[0];
$smartyvalues["clientname"] = $clientname;
} else {
# User is not logged in
}
# Define the template filename to be used without the .tpl extension
$templatefile = "radyo";
outputClientArea($templatefile);
?> [B]
Kodlamada Hata Yoktur Test Edilip Onaylandı ve Bu Kod ile Temadaki Sayfaları Aktif Edebilirsiniz Anlatım geliyor