Register for your free account! | Forgot your password?

You last visited: Today at 20:12

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Ancestra]DefCMS v.4.2.0!

Discussion on [Ancestra]DefCMS v.4.2.0! within the Private Server forum part of the General Gaming Discussion category.

Reply
 
Old   #1
 
elite*gold: 10
Join Date: Nov 2009
Posts: 1,929
Received Thanks: 471
[Ancestra]DefCMS v.4.2.0!

Halihallo Community,

Hier ist ein CMS (Webseite) von mir erstellt, leider ist es noch in der Entwicklung vom Code her, aber vom Design her bin ich zufrieden! :P

Changelog:
Code:
-Hizugefügt: MouseHover Effekt.
-Hizugefügt: Registrieren
-Hizugefügt: Page Download
-Hizugefügt: Page Shop(0%, Page Design complete)
-Hizugefügt: Eine "Login"-Form. (Nur das Bild)
-Hizugefügt: Portal (mit PSD)
Galery Screens:

Download:


Um mir bei der Entwicklung zuhelfen : Skype: sahinoo

Lg,
Defura.
.Dêvile- is offline  
Thanks
2 Users
Old 07/20/2011, 15:44   #2
 
Otomay's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 79
Received Thanks: 12
Sieht gut aus

Weiter so Defura =)
Otomay is offline  
Old 07/20/2011, 21:18   #3
 
Black_Beserker's Avatar
 
elite*gold: 0
Join Date: Dec 2010
Posts: 265
Received Thanks: 30
warum ist das den anders sprachig ? o.O

aber sieht gut aus!
Black_Beserker is offline  
Old 07/20/2011, 22:44   #4
 
elite*gold: 10
Join Date: Nov 2009
Posts: 1,929
Received Thanks: 471
Weil ich es mehr Sprachig erstellt habe (Englisch - Französisch - Deutsch)

Da ich es in 4 verschiedene Französischen Foren gepostet hab, habe ich die Screens verstädnlich auf Französisch gemacht.

Aber der Download ist auf Deutsch!
.Dêvile- is offline  
Old 07/26/2011, 12:55   #5
 
elite*gold: 0
Join Date: Feb 2009
Posts: 11
Received Thanks: 1
Wie wäre es, wenn du sagst, dass die register.php von dem zu 90% übernommen hast.

Deine:
PHP Code:
<?php  
include "../inc/config.php";
include 
"../inc/header.php";
include 
"../inc/menu.php";
?>  
                        <div id="content_main">
                
<img src="../images/content_registrieren_header_bg.jpg" alt="Content_download_header_bg.fr" /><div class="largebox">
<br><div class="register_bg">
<?php 
mysql_select_db
$dbNAME$dbLOG );
mysql_set_charset "utf8" $dbLOG );
$connect=mysql_connect$dbIP$dbUSER$dbPSWD );
if(isset(
$_POST['ok']))
{
$login mysql_real_escape_string(htmlspecialchars(trim($_POST['name']) ) );
$pass_conf mysql_real_escape_string(htmlspecialchars(trim($_POST['pass2']) ) );
$pass mysql_real_escape_string(htmlspecialchars(trim($_POST['pass']) ) );
$mails mysql_real_escape_string(htmlspecialchars(trim($_POST['mail']) ) );
$reponse mysql_real_escape_string(htmlspecialchars(trim($_POST['secretanswer']) ) );
$question mysql_real_escape_string(htmlspecialchars(trim($_POST['secretquestion']) ) );
$pseudo mysql_real_escape_string(htmlspecialchars(trim($_POST['pseudo']) ) );
if(
$login 1)
{
echo 
'<div class="verifNO">Vous ne pouvez utiliser de chiffres dans votre nom de compte !</div><br>' ;
$er1 '<span style="color:red"><b>X</b></span>' ;
$sql1 'SELECT * FROM accounts WHERE account="'.$login.'"';
$req1 mysql_query($sql1) or die('SQL Error !<br>'.$sql1.'<br>'.mysql_error());
$data1 mysql_fetch_array($req1);
}
else
{
if (
$pass != $pass_conf){
echo 
"<div class='verifNO'><img class='devtoolIcon' src='style/img/devtool/error.png'> Les deux mots de passe sont différents !</div>";
$er2 '<span style="color:red"><b>X</b></span>' ;
}else{
if(
$login=="" || $pass=="" || $mails=="" || $reponse=="" || $question=="" || $pseudo=="")
{
echo 
'<div class="verifNO"><img class="devtoolIcon" src="style/img/devtool/error.png"> Veuillez remplir tous les champs !</div>';
}else{
$sql1 'SELECT * FROM accounts WHERE account="'.$login.'"';
$req1 mysql_query($sql1) or die('SQL Error !<br>'.$sql1.'<br>'.mysql_error());
$data1 mysql_fetch_array($req1);
if(
$data1['account'] == $login)
{
echo 
'<div class="verifNO"><img class="devtoolIcon" src="style/img/devtool/error.png"> Le nom de compte soumis est déjà utilisé.</div>';
$er3 '<span style="color:red"><b>X</b></span>' ;
}else{
$sql2 'SELECT * FROM accounts WHERE pseudo="'.$pseudo.'"';
$req2 mysql_query($sql2) or die('SQL Error '.$sql2.''.mysql_error());
$data2 mysql_fetch_array($req2);
if(
$data2['pseudo'] == $pseudo)
{
echo 
'<div class="verifNO"><img class="devtoolIcon" src="style/img/devtool/error.png"> Le pseudo soumis est déjà utilisé.</div>';
$er4 '<span style="color:red"><b>X</b></span>' ;
}
else
{
mysql_query("INSERT INTO accounts (guid,account,pass,level,email,lastIP,lastConnectionDate,question,reponse,pseudo,banned,reload_needed,bankKamas,bank,friends,stable) VALUES ('','".$login."','".$pass."','0','".$mails."','0','0','".$question."','".$reponse."','".$pseudo."','0','0','0','0','0','0')")or die(mysql_error());
echo (
"<div class='verifOK'><img class='devtoolIcon' src='style/img/devtool/infos.png'><center> <b>Yeah</b> ! Dein Account wurde Erfolgreich erstellt!</center></div>");
$er5 '<span style="color:green"><b>√</b></span>' ;
}
}
}}}} 
?>

<table style="margin:auto;"><br><br>
<form method="post" action="#" name="inscription">
<tr><td> Accountname :</td><td>
<input class="input" name="name" type="text"></td>
<tr><td> Passwort :</td><td>
<input class="input" name="pass" type="password"></td>
<tr><td> Bestätigen :</td><td>
<input class="input" name="pass2" type="password"></td>
<tr><td> Nickname :</td><td>
<input class="input" name="pseudo" type="text"></td>
<tr><td> Email :</td><td>
<input class="input" name="mail" type="text"></td>
<tr><td> Geheimfrage :</td><td>
<input class="input" name="secretquestion" type="text"></td>
<tr><td> Geheimantwort :</td><td>
<input class="input" name="secretanswer" type="password"> </td>
</table>
<br>
<center><input class="input" src='../images/button_bg_register.png' onmouseover="this.src = '../images/button_bg_register_h.png';" onmouseout="this.src = '../images/button_bg_register.png';" name="ok" value="Account erstellen" type="image"></center>
    </div><br><br><br><br>        
</div>    </div>        </div>
        </div>

    <?php 
    
include "../inc/footer.php";
    
?>

Seine:
PHP Code:
<?php
/**********************************

# Byxx'CMS v1.02! 
# AUTEUR: Nicow
# DESIGN & CSS: Nicow
# CODE & PHP: Nicow
# AIDEMU: www.aidemu.fr
# CONTACT: 

**********************************/


/*if(isset($_SESSION['login']) OR isset($_SESSION['level']))
{
header('location:../index.php');
}*/
?>
<center><img src="<?php echo $ban_inscription ?>"></center>
    
    <img style="background-color:#2f2f2f" src="style/img/topContent.png">
        <div id="bgContent">
            <div id="textContent">        
    
    
<?php 
mysql_select_db
$db_OTHER$db_LOG );
mysql_set_charset "utf8" $db_LOG );
$connect=mysql_connect$db_IP$db_USER$db_PASS );
if(isset(
$_POST['ok']))
{
$login mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['name']) ) ));
$pass_conf mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['pass2'])) ) );
$pass mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['pass']) ) ));
$mails mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['mail']) ) ));
$reponse mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['secretanswer']) ) ));
$question mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['secretquestion'])) ) );
$pseudo mysql_real_escape_string(htmlspecialchars(trim(secu($_POST['pseudo'])) ) );
if(
$login 1)
{
echo 
'<div class="verifNO">Vous ne pouvez utiliser de chiffres dans votre nom de compte !</div><br>' ;
$er1 '<span style="color:red"><b>X</b></span>' ;
$sql1 'SELECT * FROM accounts WHERE account="'.$login.'"';
$req1 mysql_query($sql1) or die('SQL Error !<br>'.$sql1.'<br>'.mysql_error());
$data1 mysql_fetch_array($req1);
}
else
{
if (
$pass != $pass_conf){
echo 
"<div class='verifNO'><img class='devtoolIcon' src='style/img/devtool/error.png'> Les deux mots de passe sont différents !</div>";
$er2 '<span style="color:red"><b>X</b></span>' ;
}else{
if(
$login=="" || $pass=="" || $mails=="" || $reponse=="" || $question=="" || $pseudo=="")
{
echo 
'<div class="verifNO"><img class="devtoolIcon" src="style/img/devtool/error.png"> Veuillez remplir tous les champs !</div>';
}else{
$sql1 'SELECT * FROM accounts WHERE account="'.$login.'"';
$req1 mysql_query($sql1) or die('SQL Error !<br>'.$sql1.'<br>'.mysql_error());
$data1 mysql_fetch_array($req1);
if(
$data1['account'] == $login)
{
echo 
'<div class="verifNO"><img class="devtoolIcon" src="style/img/devtool/error.png"> Le nom de compte soumis est déjà utilisé.</div>';
$er3 '<span style="color:red"><b>X</b></span>' ;
}else{
$sql2 'SELECT * FROM accounts WHERE pseudo="'.$pseudo.'"';
$req2 mysql_query($sql2) or die('SQL Error '.$sql2.''.mysql_error());
$data2 mysql_fetch_array($req2);
if(
$data2['pseudo'] == $pseudo)
{
echo 
'<div class="verifNO"><img class="devtoolIcon" src="style/img/devtool/error.png"> Le pseudo soumis est déjà utilisé.</div>';
$er4 '<span style="color:red"><b>X</b></span>' ;
}
else
{
mysql_query("INSERT INTO accounts (guid,account,pass,level,email,lastIP,lastConnectionDate,question,reponse,pseudo,banned,reload_needed,bankKamas,bank,friends,stable) VALUES ('','".$login."','".$pass."','0','".$mails."','0','0','".$question."','".$reponse."','".$pseudo."','0','0','0','0','0','0')")or die(mysql_error());
echo (
"<div class='verifOK'><img class='devtoolIcon' src='style/img/devtool/infos.png'> <b>Bravo</b> ! Vous êtes maitenant inscrit sur <b>".$title_Site."</b> !</div>");
$er5 '<span style="color:green"><b>√</b></span>' ;
}
}
}}}} 
?>
</fieldset>
<br />
<table style="margin:auto;">
<form method="post" action="#" name="inscription">
<tr><td> Nom de Compte :</td><td>
<input class="input" name="name" type="text"></td>
<tr><td> Mot de passe :</td><td>
<input class="input" name="pass" type="password"></td>
<tr><td>Confirmez le mot de passe :</td><td>
<input class="input" name="pass2" type="password"></td>
<tr><td>Votre Pseudo :</td><td>
<input class="input" name="pseudo" type="text"></td>
<tr><td>Votre Email :</td><td>
<input class="input" name="mail" type="text"></td>
<tr><td>Question Secrète :</td><td>
<input class="input" name="secretquestion" type="text"></td>
<tr><td>Réponse Secrète :</td><td>
<input class="input" name="secretanswer" type="password"> </td>
</table>
<br>
<span style="color:red"><center>En vous inscrivant sur nos serveurs vous prenez donc en compte le <b><a style="color:red" href="<?php echo $lien_reglement ;?>">réglement</a></span></b> déposé par <?php echo $title_Site ;?> !</center></span>
<br>
<center><input class="input" name="ok" value="S'inscrire sur <?php echo $title_Site ;?>" type="submit"></center>
        
    
            </div>
        </div>
    <img style="background-color:#2f2f2f" src="style/img/bottomContent.png">
Sonst sind die Grafiken ganz nett und kommen mir auch nicht bekannt vor, dafür bekommste ein Lob. Den Dofus und das Logo im Header würde ich nochmal überarbeiten

Dein (x)HTML, CSS und PHP würde ich nochmal überarbeiten, wenn du einzelne Hinweise willst, dann sag bescheid
Eltroth is offline  
Old 07/26/2011, 16:47   #6
 
elite*gold: 10
Join Date: Nov 2009
Posts: 1,929
Received Thanks: 471
^^ Da is wohl Dofus experte da

Ja ich hab das Registrieren aus Byxx CMS übernommen

Da, ich kein Experte in sachen PHP, HTML und CSS bin.

Dies sollte lediglich ein "Template" (Kit Grafique like) sein.

Lg, Defura.
.Dêvile- is offline  
Old 07/26/2011, 16:53   #7
 
elite*gold: 0
Join Date: Feb 2009
Posts: 11
Received Thanks: 1
Quote:
Originally Posted by Defura View Post
^^ Da is wohl Dofus experte da

Ja ich hab das Registrieren aus Byxx CMS übernommen

Da, ich kein Experte in sachen PHP, HTML und CSS bin.

Dies sollte lediglich ein "Template" (Kit Grafique like) sein.

Lg, Defura.
Sollte auch nicht böse gemeint sein ;P

Wenn ich mit meinem jetzigen Projekt durch bin ( oder grade keine Lust hab, weiter zu machen :P) könnte ich dir eventuell helfen, wenn Interesse besteht.

Außerdem würde ich mich sowie wieder mehr mit den Privat Servern beschäftigen, wenn hier ne Dofus Sektion entsteht

...also Daumen drücken :P
Eltroth is offline  
Reply


Similar Threads Similar Threads
Dofus Emulator Ancestra 4.1 Verry rare!!!
05/13/2013 - elite*gold Trading - 11 Replies
Hey Guys im trading Dofus Emulator Ancestra 4.1 a verry rare dofus emulator every one will tell me its already out but no it aint the project stoped and they've posted a link for it the day after they've finished the Emulator but after they cleaned all links alive but i got chance and found one. Here what it contains: -Paddocks. -Alignements. -Guildes!! -Dungeon's .-NPC with answears. Almost everything debuged except for the housing system. if you guys want to make your Dofus server...
Dofus Private Server Ancestra Problem
07/03/2012 - Private Server Advertising - 2 Replies
Hey Guys, I made a private Server with Ancestra and i can create Accounts etc etc... BUT when i logg in, i get to choose the server and take Jiva (The only possible one), so i choose Jiva and come to the screen: Connection To Server... Now after about 1 Minute i come back to login Screen, where stands that Login failed/Server not found..Could some1 please help me with this? :confused: German: Hey Leute, hab n privaten Server gemacht mit Ancestra und kann auch Accounts und so...
[DefCMS]Dofus Homepage
06/18/2011 - Private Server - 4 Replies
Hallo :), ich habe mich mal ran gesetzt und versucht ein Original getreues CMS zuerstellen für Dofus! Hier mal Infos: --------- -Registrieren: 100% -News: 100% -Kontakt: 10% -Video Seite! -Login: 100%
Ancestra 4.1[Dofus Source]
06/11/2011 - Private Server - 6 Replies
Multiupload.com - upload your files to multiple file hosting sites! a Couple major functions aren't working as well as stability issues. I found several people charging for this source this is an OPEN SOURCE project. Ancestras was taken down due to inactivity not because they didn't want people to get this source. The source is all over french forums and such people who say that its rare are false. This source is everywhere. ~Thanks
[Request] How do i add shops to a Dofus ancestra Source?!
09/13/2010 - Private Server - 1 Replies
Title Says it all folks, I'm a bit newbish to dofus server editing, Help would be much appritiated! ~MarijuGanja~



All times are GMT +2. The time now is 20:12.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.