Skip to content

Commit 77c744f

Browse files
committed
first commit
0 parents  commit 77c744f

File tree

2,248 files changed

+143328
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,248 files changed

+143328
-0
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
C'est un site web communautaire dont j'étais développeur et un des administrateurs de 2009 à 2014 :
2+
C'est une copie du jeu chapatiz.com qui a été faite pour accueillir les joueurs qui n'aiment pas la nouvelle version.
3+
4+
Le site est un mélange de flash, html, php, css, javascript (+sql pour la base de données)
5+
6+
IL N'Y A PAS LES FICHIERS DU CLIENT DE CHAT ET PAS DE SWF
7+
8+
Tout élément graphique appartient à CHAPATIZ SA (www.chapatiz.com)

______debug/index.php

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
2+
<?php
3+
4+
define('IN_PHPBB', true);
5+
$phpbb_root_path = '../bbs/';
6+
include($phpbb_root_path . 'extension.inc');
7+
include($phpbb_root_path . 'common.'.$phpEx);
8+
9+
//
10+
// Start session management
11+
//
12+
$userdata = session_pagestart($user_ip, PAGE_PROFILE);
13+
init_userprefs($userdata);
14+
$title='Debug';
15+
$css='../css/style2.css';
16+
$include='../bbs/includes/';
17+
include($include.'config.php');//infos SQL, version, error etc...
18+
mysql_connect($serveur, $name, $password);
19+
mysql_select_db($db);
20+
21+
include($include.'haut.php'); //<DOCTYPE...
22+
include($include.'left.php'); // Header + menu
23+
?>
24+
25+
<!-- main content -->
26+
<td valign="top">
27+
28+
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
29+
30+
</table>
31+
32+
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="435" height="30" align="middle">
33+
<param name="allowScriptAccess" value="sameDomain" />
34+
<param name="movie" value="http://www.chapatiz.com/img/subtop2.swf" />
35+
<param name="wmode" value="transparent" />
36+
37+
<param name="menu" value="false" />
38+
<param name="quality" value="high" />
39+
<param name="FlashVars" value="title=Debug !" />
40+
<embed src="http://www.chapatiz.com/img/subtop2.swf"
41+
flashvars="title=Debug !"
42+
menu="false" wmode="transparent" quality="high" width="435" height="30" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
43+
</object>
44+
<table width="504" border="0" cellpadding="0" cellspacing="0">
45+
<tr>
46+
<td width="11" height="11"><img src="/img/beige_hg.gif" width="11" height="11" /></td>
47+
<td height="11" bgcolor="#FFF4D5"></td>
48+
<td width="11" height="11"><img src="/img/beige_hd.gif" width="11" height="11" /></td>
49+
50+
</tr>
51+
<tr>
52+
<td width="11" bgcolor="#FFF4D5"></td>
53+
<td bgcolor="#FFF4D5"><table border="0" cellpadding="3" cellspacing="1" width="100%">
54+
<tr>
55+
<td colspan="2" align="center">&nbsp;</td>
56+
</tr>
57+
<tr>
58+
<td width="45%" align="left"><span class="gen">
59+
<?php
60+
if (!isset($userdata['session_logged_in'])) {
61+
echo 'Il faut se connecter !';
62+
}
63+
else if($userdata['username'] == "Anonymous"){
64+
echo "Il faut être connecté !";
65+
}
66+
else
67+
{
68+
69+
$moncompte = mysql_query("SELECT * FROM phpbb_users WHERE username = '".$userdata['username']."'");
70+
$account2 = mysql_fetch_assoc($moncompte);
71+
$pseudo = $account2['username'];
72+
$online = $account2['online'];
73+
74+
mysql_query('UPDATE phpbb_users SET online = "0" WHERE username = "'.$pseudo.'"');
75+
echo 'Voila <b>'.$pseudo.'</b> tu ne bug plus !';
76+
77+
78+
}
79+
?>
80+
81+
</table></td>
82+
<br />
83+
<br />
84+
<div align="center"></div>
85+
<td width="11" bgcolor="#FFF4D5"></td>
86+
87+
</tr>
88+
<tr>
89+
<td width="11" height="11"><img src="/img/beige_bg.gif" width="11" height="11" /></td>
90+
<td height="11" bgcolor="#FFF4D5"></td>
91+
<td width="11" height="11"><img src="/img/beige_bd.gif" width="11" height="11" /></td>
92+
</tr>
93+
</table>
94+
</form>
95+
96+
<head>
97+
<style type="text/css">
98+
.style1 {
99+
color: #FF3399;
100+
}
101+
.style2 {
102+
color: #FFFFFF;
103+
}
104+
105+
106+
107+
</style>
108+
</head>
109+
<?php
110+
111+
include('../bbs/includes/bas.php');
112+
?>

0 commit comments

Comments
 (0)