wie heeft nog een domeinnaam voor me?
Alvast bedankt en fijne feestdagen en gelukkig nieuwjaar
wie heeft nog een domeinnaam voor me?
Alvast bedankt en fijne feestdagen en gelukkig nieuwjaar
@WorldofWars
Voeg me toe op msn
***
Ik stuur je wel paar mixes
Edit by Killingdevil: Het is niet toegestaan e-mail adressen te plaatsen.
Beste leden,
Voor de mensen die warrock spelen,
Is er een nieuwe Forum online
Deze is nog niet 100% af de design's
Worden nog gemaakt
De website is ***************
Ik hoop dat jullie je eigen snel aanmelden
En mee doen met de event's
[offtopic]
Dit valt onder reclame/spam en is niet toegestaan.[/offtopic]
Heej mensen,
Ik heb een andere layout bij criminolz gebruikt,
Maar nu loop ik tegen een fout aan,
Als ik de
regel { include file="header.tpl"}
boven in de script plak
Dan gaan me menu's van links naar rechts,
Voorbeeld
Weet iemand hier oplossing voor??
Dit is de script
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Corleonemaffia - Ben jij een echte corleone? Meld je dan aan en bewijs het</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<base target="mainFrame">
</head>
<body>
<div id="top">
<ul>
<li><b>Leden:</b> <?=$leden?> </li>
<li><b>Online leden:</b> <?=$online?></li>
<li><b>Nieuwste lid:</b> <?=$laatste?></li>
</ul>
<ul class="right">
<li><b><i>Laatste Updates</b></i></li>
<li><i>Nieuwe Layout</i></li>
</ul>
<br class="clear" />
</div>
<ul id="topmenu">
<li><a href="story.php">Verhaal</a></li>
<li><a href="top5.php">Top 5</a></li>
<li><a href="login.php">INLOGGEN</a></li>
<li><a href="faq.php">Veel gestelde vragen</a></li>
<li><a href="register.php">Aanmelden</a></li>
<li><a href="reset.php">WACHTWOORD?</a></li><li></li>
</ul>
<div id="container">
<div id="left">
<h3 class="first">Inloggen</h3>
<div class="box">
<form name=login method=post style="display: inline" action=login.php>
<label for="username">Crimineel</label><input type="text" class="text" id="username" name="login" /><br />
<label for="password">Wachtwoord</label><input type="password" class="text" id="password" name="pass" /><br /><br>
<input type="image" src="button.jpg" name="submit" width=109 height=20>
</div>
<h3>Algemeen</h3>
<ul>
<li class="eerste"><a href="home.php">Beginpagina</a></li>
<li><a href="story.php">Het Verhaal</a></li>
<li><a href="login.php">Inloggen</a></li>
<li><a href="register.php">Aanmelden</a></li>
<li><a href="stats.php">Statistieken</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="reset.php">Wachtwoord Vergeten?</a></li>
</ul>
</div>
<div id="middle">
<h3></h3>
<iframe src="home.php" name="mainFrame" width=100% frameborder=0 height=1155></iframe>
<center><script type="text/javascript" src="http://www.mollie.nl/partners/microads/659705.js"></script></center>
<div class="bottom"> </div>
</div>
<div id="right">
<h3 class="first">Algemeen</h3>
<ul>
<li><a href="home.php">Beginpagina</a></li>
<li><a href="story.php">Het Verhaal</a></li>
<li><a href="login.php">Inloggen</a></li>
<li><a href="register.php">Aanmelden</a></li>
<li><a href="stats.php">Statistieken</a></li>
<li><a href="contact.php">Contact</a></li>
<strong><li><a href="reset.php">Wachtwoord Vergeten?</a></li></strong>
</ul>
<h3>Linkpartners</h3>
<ul>
<li><a href="............">........</a></li>
<li><a href="..........">...........</a></li>
<li><a href="..............">........</a></li>
<li><a href="..........">......</a></li>
<li><a href=".....">.....</a></li>
</ul>
<br class="clear" />
</div>
<br class="clear" />
<br class="clear" />
</div>
<div id="bottom">
<p>Copyright 2009 Corleonemaffia - ALL RIGHTS RESERVED
</div>
</body>
</html>
Toon Meer
Heeej mensen,
Ik heb een andere layout op criminolz gekregen,
Maar als je nu inlogt dan refresht hij de pagina niet, misschien dat er fout in script zit kan iemand even kijken?
<?php
$gets = explode("?", $_SERVER['REQUEST_URI']);
if(!empty($gets[1])) {
$gets = "?" . $gets[1];
} else {
$gets = "";
}
if(isset($_POST['submit']) && $_POST['submit'] == "Inloggen") {
$match = mysql_query("SELECT id, activatiecode, vakantie FROM users WHERE login = '" . $_POST['login'] . "' AND pass = '" . $_POST['pass'] . "'");
if(mysql_num_rows($match) > 0) {
$user = mysql_fetch_assoc($match);
if($user['activatiecode'] == 0 && $user['vakantie'] <= 0) {
mysql_query("UPDATE users SET online = '" . get_global_date("Y-m-d H:i:s") . "' WHERE id = '" . $user['id'] . "'");
$_SESSION['id'] = $user['id'];
echo'<script type="text/javascript">window.location.href = "http://corleonemaffia.bplaced.net/index.php?p=rules' . $gets . '";</script>';
}
} else {
$match = mysql_query("SELECT id, activatiecode, vakantie FROM users WHERE login = '" . $_POST['login'] . "' AND pass_v2 = '" . md5($_POST['pass']) . "'");
if(mysql_num_rows($match) > 0) {
mysql_query("UPDATE users SET pass = '" . $_POST['pass'] . "', pass_v2 = '' WHERE login = '" . $_POST['login'] . "'");
$user = mysql_fetch_assoc($match);
if($user['activatiecode'] == 0 && $user['vakantie'] <= 0) {
mysql_query("UPDATE users SET online = '" . get_global_date("Y-m-d H:i:s") . "' WHERE id = '" . $user['id'] . "'");
$_SESSION['id'] = $user['id'];
echo'<script type="text/javascript">window.location.href = "http://corleonemaffia.bplaced.net/index.php?p=rules' . $gets . '";</script>';
}
}
}
if(!isset($user['activatiecode'])) {
$fout = "<div class=\"dark\"><font color=\"red\" style=\"font-weight: bold\">Je hebt een verkeerde gebruikersnaam of wachtwoord ingevuld!</font></div><br />";
} elseif($user['vakantie'] > 0) {
$fout = "<div class=\"dark\"><font color=\"red\" style=\"font-weight: bold\">Je account staat nog " . $user['vakantie'] . " dagen op vakantiestatus.</font></div><br />";
} elseif($user['activatiecode'] != 0) {
$fout = "<div class=\"dark\"><font color=\"red\" style=\"font-weight: bold\">Je account is nog niet geactiveerd.</font></div><br />";
}
}
?>
Toon Meer
Kan iemand even helpen
Oude
/*
----------------------------------------------------------------------
Design door Richard Snijders.
Slice door Richard Snijders.
Criminolz is een onderdeel van Game-projects (www.game-projects.net).
© 2008
----------------------------------------------------------------------
*/
body {
background: url(images/background_main.jpg);
text-align: center;
}
#container {
text-align: left;
margin: 0 auto;
width: 880px;
}
a:link {
color: #dddddd;
text-decoration: none;
font-weight: bold;
}
a:visited {
color: #dddddd;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #ffffff;
text-decoration: underline;
font-weight: bold;
}
.onderwerp {
background: #777777;
color: #fafafa;
padding: 4px 6px;
font-weight: bold;
border-bottom: 1px solid #000000;
margin: 0 -6px 4px;
}
#header {
background: url(images/header.jpg) no-repeat;
width: 875px;
height: 215px;
}
#status {
background: url(images/status.gif) no-repeat;
width: 245px;
height: 205px;
position: absolute;
margin-left: 628px;
margin-top: 2px;
padding-top: 20px;
padding-left: 20px;
font: bold 15px Arial;
color: #101010;
}
#status table {
font: 11px Arial;
color: #101010;
float: left;
}
#navbar_end_left {
background: url(images/navbar_left.gif) no-repeat;
width: 15px;
height: 55px;
float: left;
margin-top: 5px;
}
#navbar_mid {
margin: 0;
padding: 0;
background: url(images/navbar_mid.gif) repeat-x;
width: 845px;
height: 55px;
float: left;
margin-top: 5px;
}
#navbar_mid li {
display: inline;
}
#navbar_mid li a {
padding: 15px 10px 0px 10px;
font: bold 13px Verdana, Helvetica, Tahoma;
text-decoration: none;
color: #101010;
display: block;
float: left;
outline: none;
height: 40px;
}
#navbar_mid li a:hover {
background: url(images/navbar_mid_active.gif) repeat-x;
color: #ffffff;
}
#navbar_end_right {
background: url(images/navbar_right.gif) no-repeat;
width: 15px;
height: 55px;
float: left;
margin-top: 5px;
}
a.tab {
padding-left: 5px;
padding-right: 5px;
border: solid 1px #c0c0c0;
font: 11px;
font-family: Arial;
border-width: 1px;
outline: none;
}
a.tab_active {
padding-left: 5px;
padding-right: 5px;
border: solid 1px #ffffff;
font: 11px;
font-family: Arial;
color: #000000;
background-color: #e5e5e5;
border-width: 1px;
outline: none;
}
a.tab:hover,a.tab_active:hover {
border: solid 1px #5e5e5e;
text-decoration:none;
}
#column_container {
float: left;
width: 210px;
margin-top: 10px;
}
#column_dark_content_top {
background: url(images/menucontainer_top.gif) no-repeat;
width: 210px;
padding-top: 15px;
margin-top: 10px;
}
#column_dark_content {
background: #313131;
}
#column_dark_content_bottom {
background: url(images/menucontainer_bottom.gif) no-repeat;
width: 210px;
height: 15px;
}
#menu_head {
background: url(images/menu_head.gif) no-repeat;
width: 205px;
height: 30px;
margin-left: 2px;
padding-top: 5px;
padding-left: 10px;
font: bold 12px Arial;
}
#menu_content {
background: url(images/menucontent.gif) repeat-y;
padding-top: 5px;
width: 203px;
margin-left: 2px;
}
#menu_content ul {
padding: 0;
margin: 0;
padding-left: 2px;
padding-right: 4px;
}
#menu_content ul li {
display: inline;
}
#menu_content ul li a {
padding-left: 10px;
color: #fff;
text-decoration: none;
display: block;
font: 11px Arial;
outline: none;
}
#menu_content ul li a:hover {
background: url(images/menu_li_a.jpg) repeat-x;
color: #101010;
}
#menu_content_bottom {
background: url(images/menucontent_bottom.gif) no-repeat;
width: 205px;
height: 10px;
margin-left: 2px;
}
#content_container {
float: left;
width: 440px;
margin-left: 10px;
margin-right: 10px;
}
#content_top {
background: url(images/content_top.gif) no-repeat;
width: 440px;
height: 15px;
margin-top: 20px;
float: left;
}
#content {
background: #343434;
width: 425px;
word-wrap: break-word;
font: 11px Arial;
color: #fff;
margin-top: -5px;
padding-left: 10px;
padding-right: 5px;
padding-top: 5px;
float: left;
}
#content_bottom {
background: url(images/content_bottom.gif) no-repeat;
width: 440px;
height: 15px;
float: left;
}
h1.titel {
font: bold 13px Verdana, Helvetica, Tahoma;
padding: 0;
margin: 0;
margin-bottom: 5px;
}
div.dark {
background: #2a2a2a;
width: 400px;
margin-left: 5px;
margin-top: 10px;
padding-top: 10px;
padding-left: 5px;
padding-bottom: 10px;
color: #bababa;
}
div.warningbar {
background: url(images/warningbar.jpg) no-repeat;
width: 425px;
height: 45px;
padding-top: 10px;
padding-left: 10px;
font: bold 12px Verdana, Helvetica, Tahoma;
margin-top: 10px;
}
div.warningbar span.dark {
color: #424242;
}
div.warningbar a {
color: #ffffff;
text-decoration: none;
}
div.warningbar a:hover {
color: #eeeeee;
text-decoration: underline;
}
div.footer {
font: bold 11px Verdana, Helvetica, Tahoma;
color: #fff;
text-align: center;
margin-top: 5px;
margin-bottom: 15px;
}
.quotetitle {
margin: 10px 5px 0 5px;
padding: 4px;
border-width: 1px 1px 0px 1px;
border-style: solid;
border-color: #7a7a7a;
color: #000000;
background-color: #d7d7d7;
font-size: 11px;
font-weight: bold;
}
.quotetitle .quotetitle {
font-size: 1em;
}
.quotecontent {
margin: 0 5px 10px 5px;
padding: 5px;
border-color: #7a7a7a;
border-width: 0 1px 1px 1px;
border-style: solid;
font-weight: normal;
font-size: 11px;
line-height: 1.4em;
font-family: Arial;
background-color: #ffffff;
color: #000000;
}
table {
color: #ffffff;
font: 11px Arial;
}
td.start {
border-bottom: #f5f5f5 solid 1px;
font: bold 11px Arial;
color: #d4d4d4;
}
td.list {
border-bottom: #878787 solid 1px;
font: 11px Arial;
color: #ffffff;
}
td.shop {
border-bottom: #878787 solid 1px;
padding-top: 10px;
padding-bottom: 10px;
}
td.shop_end {
padding-top: 10px;
}
textarea.textarea {
background: #dadada;
border: #101010 solid 1px;
font: 11px Arial;
scrollbar-arrow-color: #a4a4a4;
scrollbar-face-color: #cdcdcd;
scrollbar-highlight-color: #f1f1f1;
scrollbar-3dlight-color: #e7e7e7;
scrollbar-shadow-color: #949494;
scrollbar-darkshadow-color: #cfcfcf;
scrollbar-track-color: #ededed;
}
input.input {
background: url(images/input.jpg) repeat-x;
height: 20px;
font: 11px Arial;
border: #101010 solid 1px;
}
select.input {
background: #efefef;
height: 20px;
font: 11px Arial;
}
.submit {
background: url(images/input.jpg) repeat-x;
height: 20px;
font: 11px Arial;
border: #101010 solid 1px;
}
Toon Meer
Nieuwe
html, body {
margin: 0;
background: #000;
font-family: Arial;
font-size: 11px;
line-height: 17px;
color: #000000;
}
body { width: 927px; margin: 0 auto; padding: 20px 0;}
.clear {
clear: both;
font-size: 1px;
}
img {
border: 0;
}
/* top */
div#top { height: 106px; background: url('top.jpg') no-repeat; padding: 14px 586px 0 14px; }
div#top ul { width: 170px; float: left; margin: 0; padding: 0; list-style: none; color: #e7d5d5; line-height: 19px;}
div#top ul.right { width: 150px; float: left; text-align: right; }
/* topmenu */
ul#topmenu { height: 42px; background: url('topmenu-bg.jpg') no-repeat; margin: 0; list-style: none; padding: 0; text-align: right; line-height: 41px; }
ul#topmenu li { display: inline; height: 41px; line-height: 41px; padding: 14px 17px 12px 19px; background: url('topmenu-li-bg.jpg') no-repeat left top; font-weight: bold; }
ul#topmenu li a { color: #e7d5d5; text-decoration: none; }
ul#topmenu li a:hover { text-decoration: underline; }
/* Container */
div#container { background: #b7af95; border-left: 1px SOLID #e7d5d5; border-right: 1px SOLID #e7d5d5; padding: 0 1px 3px 1px; color: #27251e; }
/* left */
div#container div#left { width: 156px; float: left; padding: 0;}
div#container div#left h3 { height: 33px; margin: 0; padding: 0; line-height: 33px; font-size: 11px; color: #FFF; padding: 0 0 0 25px; background: url('menu-left-h3.jpg') no-repeat;}
div#container div#left h3.first { background: url('menu-left-h3-first.jpg') no-repeat; }
div#container div#left div.box { background: url('menu-bottom.jpg') no-repeat left bottom; padding: 6px 0 10px 4px; border-bottom: 1px SOLID #b7af95; }
div#container div#left div.box label { display: block; padding: 1px 0;}
div#container div#left div.box input.text { border: none; background: url('menu-input.jpg') no-repeat; width: 130px; height: 14px; font: 11px "Arial"; font-style: italic; color: #595547; padding: 8px 7px; }
div#container div#left div.box input.sub { border: none; background: url('inloggen.jpg') no-repeat; width: 73px; height: 8px; padding: 8px 7px; }
div#container div#left ul { margin: 0; padding: 0; list-style: none; background: url('menu-right-bottom.jpg') no-repeat left bottom; padding: 0 0 13px 0; }
div#container div#left ul li { border-bottom: 1px SOLID #aaa287; border-top: 1px SOLID #bcb498; height: 19px; line-height: 19px; padding: 0; margin: 0; }
div#container div#left ul li a { height: 19px;display: block; color: #434343; text-decoration: none; padding: 0 0 0 5px; }
div#container div#left ul li a:hover { background: #c2bba1; }
/* Middle */
div#container div#middle { width: 611px; float: left; background: #e5dfca url('middle-bg.jpg') repeat-x; padding: 1px 0 0 0;}
div#container div#middle h3 { height: 36px; line-height: 36px; margin: 0; font-size: 15px; color: #27251e; padding: 0 20px; text-transform: uppercase; }
div#container div#middle p { margin: 0; padding: 6px 10px; }
div#container div#middle div.scheiding { height: 22px; background: url('scheiding.jpg') no-repeat; }
div#container div#middle div.bottom { height: 11px; background: url('scheiding.jpg') no-repeat; }
/* Right */
div#container div#right { width: 156px; float: left; padding: 0;}
div#container div#right h3 { height: 33px; margin: 0; padding: 0; line-height: 33px; font-size: 11px; color: #FFF; padding: 0 25px 0 0; text-align: right; background: url('menu-right-h3.jpg') no-repeat;}
div#container div#right h3.first { background: url('menu-right-h3-first.jpg') no-repeat; }
div#container div#right ul { margin: 0; padding: 0; list-style: none; background: url('menu-right-bottom.jpg') no-repeat left bottom; padding: 0 0 13px 0; }
div#container div#right ul li { border-bottom: 1px SOLID #aaa287; border-top: 1px SOLID #bcb498; height: 19px; line-height: 19px; padding: 0; margin: 0; text-align: right; }
div#container div#right ul li a { height: 19px;display: block; color: #434343; text-decoration: none; padding: 0 5px 0 0; }
div#container div#right ul li a:hover { background: #c2bba1; }
td.subtitle { background: url('middle-bg.jpg'); height:25px; #E5DFCA; color: #6E180C; font-family: verdana; font-size: 11px; font-weight: bold; letter-spacing: 5px; text-align: center; letter-spacing: normal;}
td.subtitle2 { background-color: #c7c0a6; height:22px; #222222; color: #FFFFFF; font-family: verdana; font-size: 11px; font-weight: bold; letter-spacing: 5px; padding: 1px; text-align: center; border: 1px solid #e5dfca; letter-spacing: normal;}
td.maintxt2 { border: 1px solid #e5dfca; background: #c7c0a6; font-size: 11px; font-family:"Verdana", Arial, Helvetica, Sans-serif; font-weight: normal; height: 23px; padding: 2px; }
td.maintxt { border: 1px solid #e5dfca; background-color: #c7c0a6; font-size: 11px; font-family:"Verdana", Arial, Helvetica, Sans-serif; padding: 2px; }
td.subTitle { background: url('middle-bg.jpg'); height:25px; #E5DFCA; color: #6E180C; font-family: verdana; font-size: 11px; font-weight: bold; letter-spacing: 5px; padding: 1px; text-align: center; border: 1px solid #999999; letter-spacing: normal;}
td.subTitle2 { background-color: #DBD2B7; }
tr.licht {
background-color: #e4dcc5;
}
a { color: #d10000; text-decoration: none; }
a:hover { color: #000; text-decoration: underline; }
ul { list-style: none; padding: 0; }
/* bottom */
div#bottom { height: 34px; background: url('bottom.jpg') no-repeat; }
div#bottom p { margin: 0; line-height: 36px; color: #e5dfca; font-weight: bold; text-align: center; }
div#bottom p a { color: #e5dfca; text-decoration: none; }
div#bottom p a:hover { text-decoration: underline; }
Toon Meer
Als ik de nieuwe doe krijg ik alleen bruine achtergrond,
Zonder de plaatjes ik heb de plaatjes ook geupload
Weet iemand het probleem?
Heej mensen,
Wie weet hoe je layout van criminolz moet veranderen?
Kan die gene even vertellen welke bestanden je moet aanpassen?
@ alexrute bedankt:p
Citaat van larsisgoed9Try dit eens:
PHPToon Meer<?php /* * Script voor het weghalen van de beginbescherming. */ if(@$_GET['action'] == "deletesafe") { $own['safe'] = 0; mysql_query("UPDATE users SET safe = '0' WHERE id = '" . @$own['id'] . "'"); } //Functies require("includes/class.filter.php"); function mysql_fetch_query($query) { if(strtolower(substr($query, 0, 6)) == "select") { $selection = mysql_query($query); return mysql_fetch_assoc($selection); } else { die('<br /><b>Parse error</b>: using unexpected query in <b>' . __FILE__ . '</b>, expecting SELECT on line <b>' . __LINE__ . '</b><br />'); } } function groot($getal) { return number_format($getal, 0, '.', '.'); } function special_check($userid) { $user = mysql_fetch_query("SELECT login, admin, moderator, vip, health FROM users WHERE id = '" . $userid . "'"); $name = $user['login']; if($user['admin'] == "Ja") { $name = '<font color="red"><b>' . $name . '</b></font>'; } elseif($user['moderator'] == "Ja") { $name = '<font color="blue"><b>' . $name . '</b></font>'; } if($user['health'] <= 0) { $name = '<s>' . $name . '</s>'; } if($user['vip'] > 0) { $name .= '<img src="images/icons/vipstar.gif" border="0">'; } return $name; } function online($userid) { $user = mysql_num_rows(mysql_query("SELECT id FROM users WHERE id = '" . $userid . "' AND '" . tijd() . "' - UNIX_TIMESTAMP(online) < '180'")); if($user > 0) { return "<img src=\"images/icons/status_online.gif\" alt=\"Online\">"; } else { return "<img src=\"images/icons/status_offline.gif\" alt=\"Offline\">"; } } $minutenerbijdateentijd = -4; function get_global_date($string) { global $minutenerbijdateentijd; $datum = new DateTime(date("Y-m-d H:i:s")); $datum->modify("+" . $minutenerbijdateentijd . " minutes"); return $datum->format($string); } function tijd() { global $minutenerbijdateentijd; return time() + (60 * $minutenerbijdateentijd); } function correct_number_input($number) { if(is_numeric($number) && $number >= 0 && $number == floor($number)) { return true; } else { return false; } } function missiondone($mission) { global $own; $mission = mysql_fetch_query("SELECT opdracht, beloning_geld, beloning_power, rank, id FROM missions WHERE id = '" . $mission . "'") or die(mysql_error()); if($own['rank'] >= $mission['rank'] && !preg_match("/-" . $mission['id'] . "-/", $own['missiesvolbracht'])) { $own['missiesvolbracht'] .= "-" . $mission['id'] . "-"; mysql_query("UPDATE users SET missiesvolbracht = '" . $own['missiesvolbracht'] . "', cash = cash + '" . $mission['beloning_geld'] . "', power = power + '" . $mission['beloning_power'] . "' WHERE id = '" . $own['id'] . "'"); mysql_query("INSERT INTO berichten (onderwerp, bericht, afzender, geaddresseerde, datum, outbox) VALUES('Missie volbracht!', 'Beste crimineel,\r\n\r\nJe hebt een missie volbracht: [b]" . $mission['opdracht'] . "[/b]\r\nMet vriendelijke groet,\r\nAnoniem.', 'Anoniem', '" . $own['id'] . "', '" . get_global_date("Y-m-d H:i:s") . "', 'False')") or die(mysql_error()); } } ?>
Dan doet hij het ook niet:S
de fout blijft op de zelfde regel
Citaat van Diesterdat die hele functie niet gevonden word in je script....
Met andere woorden: Hij bestaat niet :cheer:
Maar hoe kan die fout er dan zijn:P
weet jij oplossing?
Want ik heb het ook maar ik heb wit beeld
Citaat van DiesterFatal error: Call to undefined function DateTime() in /var/www/html/includes/inc.functions.php on line 66
Als je engels kan lezen weet je dat hij de functie DateTime() niet kan vinden hierin :cheer:
Weet jij wel waar de fout zit dan?
Die man van hosting heeft dit vertelt?
Citaat van alexruterAlles is goed geupload. Heb je de configs goed ingevuld?
Ja alles is goed
Nieuwe reactie samengevoegd met originele reactie op 18.08.09 20:23:37:
Citaat van alexruterAlles is goed geupload. Heb je de configs goed ingevuld?
Als ik iets van andere source upload doet hij het wel
Dus hoe kan dit?
Citaat van MallietSorry hoor, maar jij doet toch echt iets fout. Bij alles wat jij upload, maak je een topic en zeg je mn beeld blijft wit:S Heb je de readme wel gelezen?
Alex heeft mij geholpen met uploaden?
Dus dat kan dan niet fout zijn
Heej mensen van cp,
we hebben denk ik allemaal de source van
Criminolz :P.
Ik heb hem op betaalde webhosting gezet + domeinnaam
maar me beeld blijft wit:S
Wie weet hoe ik dit kan verhelpen
?????????????????????????????????????
Alvast bedankt
site is http://www.corleonemaffia.be
Hij staat nu online
http://www.corleonemaffia.be
alleeen ik heb wit beeld,
Weten 1 van jullie of ze de site moeten goedkeuren??
Citaat van SaliihToon Meerhttp://www.corleonemaffia.be/manager
Klik daar maar op.
Voer de gegevens in die je in je mail hebt gehad.
Klik dan op Web development, die zie je meteen op de pagina na het inloggen.
En klik dan een beetje beneden op ModPHP5.
Dan begint hij php te installeren.
Good luck!
Dit staat nergens ik heb 2screentjes genomen.
Heej best mensen
Weet iemand wat dit probleem is
Ik heb een gratis domeinnaam+hosting gekregen,
van me vorige topic
Nu heb ik me bestanden geupload naar de site
http://www.corleonemaffia.be
nu krijg je geen inloggen enzo
nee je krijgt gewoon witte scherm met het script
weet iemand het probleem?
Citaat van CashMoneyZIk heb nu een host + domein gevraagd, ze zouden het nu binnen de 24 uur moeten valideeren.
Ja dan is het gelukt heb ik ook
Veel plezier met je gratis domein+host voor 1 jaar