Migration
This commit is contained in:
73
0.8.0/module/divers/bridage.php
Executable file
73
0.8.0/module/divers/bridage.php
Executable file
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright (C) 2007 Mercier Benjamin
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
$ListBDD = $MySql->Select("*", "domaine", "Utilisateur='".$_SESSION['Utilisateur']."' AND Status='2'", "", "", "", "");
|
||||
|
||||
|
||||
?><h3>Bridage de vos sites Internet</h3><br />
|
||||
<p>Afin de favoriser les gens qui affichent notre publicit<69> sur leurs sites, un bridage est impos<6F> <20> tous les sites, sauf ceux dont notre pub est affich<63>e.<br />
|
||||
Une limite est fix<69>e uniquement pour le t<>lechargement de fichiers, celle-ci est de 50Ko/sec pour tout le site. <br />
|
||||
Cependant, si notre publicit<69> est affich<63>e au moins sur l'accueil, le site sera totalement d<>brid<69> et pourra ainsi b<>n<EFBFBD>ficier jusqu'<27> 12Mo/sec de bande passante (dans les limites de la charte).<br />
|
||||
Pour afficher notre publicit<69>, veuillez en g<>n<EFBFBD>rer-une sur la page <a href="Page-Divers-Contribuer.html">"Nous soutenir"</a>. (publicit<69>s adsense seulement).<br />
|
||||
Notre robot passe une fois toutes les 24 heures, ne vous <20>tonnez donc pas que le bridage soit toujours actif imm<6D>diatement apr<70>s l'affichage de la publicit<69>.<br />
|
||||
Notez que <?php echo $_SESSION['Utilisateur']; ?>.kelio.org ne peut <20>tre d<>brid<69>.<br /><br />
|
||||
Ci-dessous un r<>capitulatif de tous les bridages sur vos domaines.</p><br />
|
||||
|
||||
<div style="border:#006633 1px solid; width: 90%; margin: auto; margin-top: 15px;">
|
||||
<table style="width:100%">
|
||||
<tr>
|
||||
<td class="Tableau1" style="text-align: center; width: 80%;"><strong>Domaine</strong></td>
|
||||
<td class="Tableau1" style="text-align: center; width: 20%;"><strong>Bridage</strong></td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
$TotalBDD = count($ListBDD);
|
||||
|
||||
if ( $ListBDD == FALSE )
|
||||
{
|
||||
echo '
|
||||
<tr>
|
||||
<td class="Tableau1" colspan="2" style="text-align: center;"><strong>Vous n\'avez aucun domaine actif</strong></td>
|
||||
</tr>';
|
||||
}
|
||||
else
|
||||
{
|
||||
for ($i=0; $i < $TotalBDD; $i++)
|
||||
{
|
||||
if ( $ListBDD[$i]["Bridage"] == "Oui" )
|
||||
{
|
||||
$Bridage = "brid<69>";
|
||||
$Couleur = "#FF3333";
|
||||
}
|
||||
else
|
||||
{
|
||||
$Bridage = "d<>brid<69>";
|
||||
$Couleur = "#009933";
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr>
|
||||
<td class="Tableau1" style="text-align: center; width: 80%;">'.$ListBDD[$i]["Adresse"].'</td>
|
||||
<td class="Tableau1" style="text-align: center; width: 20%; color: '.$Couleur.';">'.$Bridage.'</td>
|
||||
</tr>';
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
102
0.8.0/module/divers/changelog.php
Executable file
102
0.8.0/module/divers/changelog.php
Executable file
@@ -0,0 +1,102 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright (C) 2007 Mercier Benjamin
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
?>
|
||||
<h3>Changelog Kelio Panel</h3><br />
|
||||
|
||||
<strong>Version : 0.8.0 (le 03 octobre 2009)</strong>
|
||||
<ul>
|
||||
<li class="Liste">Panel - Prise en charge des offres</li>
|
||||
<li class="Liste">Robot - Mise en place de quotas</li>
|
||||
<li class="Liste">Panel - Correction de diverses erreurs</li>
|
||||
</ul>
|
||||
<br /><br />
|
||||
|
||||
<strong>Version : 0.7.1 (le 10 novembre 2007)</strong>
|
||||
<ul>
|
||||
<li class="Liste">Panel - Correction de bugs mineurs</li>
|
||||
<li class="Liste">Panel - Suppression de l'affichage de la bande passante utilis<69></li>
|
||||
<li class="Liste">Robot - Correction du robot d'affichage des ressources utilis<69>s</li>
|
||||
</ul>
|
||||
<br /><br />
|
||||
|
||||
<strong>Version : 0.7 (le 24 octobre 2007)</strong>
|
||||
<ul>
|
||||
<li class="Liste">Panel - Ajout logos pour les rubriques et nouvelle page d'accueil</li>
|
||||
<li class="Liste">Panel - Affichage des ressources utilis<69>es (Bande passante et espace disque)</li>
|
||||
<li class="Liste">Panel - Modification majeure pour rendre le panel multi-serveurs</li>
|
||||
<li class="Liste">Panel - Ajout de la prise en charge des mails</li>
|
||||
<li class="Liste">Panel - Mode expert pour l'ajout d'un domaine</li>
|
||||
</ul>
|
||||
<br /><br />
|
||||
|
||||
<strong>Version : 0.6.5 (version abandonn<6E>e)</strong>
|
||||
<ul>
|
||||
<li class="Liste">Panel - Ajout logos pour les rubriques et nouvelle page d'accueil</li>
|
||||
<li class="Liste">Panel - Amelioration des coupures de chaines dans tous les modules ([...])</li>
|
||||
<li class="Liste">Panel - Ajout du dernier passage du robot sur l'accueil</li>
|
||||
<li class="Liste">Panel - Correction d'erreur de Validation Xhtml 1.0 Strict</li>
|
||||
<li class="Liste">Panel - Modification majeure pour rendre le panel multi-serveurs</li>
|
||||
<li class="Liste">Robot - Remplacement du module Compte->Creation</li>
|
||||
<li class="Liste">Robot - Remplacement du module MySql->Creation</li>
|
||||
<li class="Liste">Robot - Remplacement du module MySql->Suppression</li>
|
||||
<li class="Liste">Robot - Remplacement du module Domaine->Creation</li>
|
||||
<li class="Liste">Robot - Remplacement du module Domaine->Suppression</li>
|
||||
<li class="Liste">Robot - Remplacement du module Compte->Creation</li>
|
||||
</ul>
|
||||
|
||||
<br /><br />
|
||||
<strong>Version : 0.6 (le 29 mai 2007)</strong>
|
||||
<ul>
|
||||
<li class="Liste">Panel - Correction de la regex Commentaire du module Ftp->Ajouter</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Divers->Contribuer</li>
|
||||
<li class="Liste">Robot - Correction des droits des utilisateurs MySql</li>
|
||||
<li class="Liste">Robot - Correction des domaines (autoriser l'url rewriting)</li>
|
||||
<li class="Liste">Robot - Correction du changement de date dans la zone dns</li>
|
||||
<li class="Liste">Robot - Changement de la disposition dans la zone dns</li>
|
||||
<li class="Liste">Serveur - Changement de la disposition dans la zone dns</li>
|
||||
<li class="Liste">Serveur - Mise en place d'un systeme de backup rsync</li>
|
||||
</ul>
|
||||
|
||||
<br /><br />
|
||||
<strong>Version : 0.5a (le 17 mai 2007)</strong>
|
||||
<ul>
|
||||
<li class="Liste">Panel - Cr<43>ation du Kelio Panel</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Accueil</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module MySql->R<>capitulatif</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module MySql->Ajout</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module MySql->Suppression</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Ftp->R<>capitulatif</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Ftp->Ajout</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Ftp->Suppression</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Domaine->R<>capitulatif</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Domaine->Ajout</li>
|
||||
<li class="Liste">Panel - Cr<43>ation du module Domaine->Suppression</li>
|
||||
<li class="Liste">Admin - Cr<43>ation de l'admin Kelio Panel</li>
|
||||
<li class="Liste">Admin - Cr<43>ation du module ValidationCompte</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du robot global</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module Compte->Creation</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module MySql->Creation</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module MySql->Suppression</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module Ftp->Creation</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module Ftp->Suppression</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module Domaine->Creation</li>
|
||||
<li class="Liste">Robot - Cr<43>ation du module Domaine->Suppression</li>
|
||||
<li class="Liste">Serveur - Remplacement de PhpMyAdmin par Eskuel</li>
|
||||
</ul>
|
||||
154
0.8.0/module/divers/contribuer.php
Executable file
154
0.8.0/module/divers/contribuer.php
Executable file
@@ -0,0 +1,154 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright (C) 2007 Mercier Benjamin
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
?>
|
||||
<h3>Contribuer au projet Kelio.org</h3>
|
||||
<p>Contribuer au projet Kelio, permet sa survie.<br />
|
||||
Vous pouvez contribuer de diff<66>rente mani<6E>res : dons, bouche a oreilles, affichage de notre publicit<69>.
|
||||
</p>
|
||||
<h3>Faire un don</h3>
|
||||
<img src="image/icons/tick.png" alt="info" style="padding-right: 5px;" /><strong>Op<4F>ration 2009 - Kelio.org</strong><br />
|
||||
Nous nous sommes fix<69>s un objectif pour 2009 : une nouvelle infrastructure. Rendez-vous sur : <a href="http://www.kelio.org/2009">http://www.kelio.org/2009</a>
|
||||
<br /><br/>
|
||||
<h3>Afficher une publicit<69> sur votre site</h3>
|
||||
<small>Les publicit<69>s Adsense permettent de nous soutenir directement financi<63>rement.<br/>
|
||||
Code client Adsense : "pub-3624271267101348"</small>
|
||||
<br />
|
||||
<form action="<?php echo $PHP_SELF ?>#code" method="post">
|
||||
<table>
|
||||
<tr>
|
||||
<td><strong>Format des annonces</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>La taille des annonces</td>
|
||||
<td>
|
||||
|
||||
<select name="format">
|
||||
<option value="728x90">Horizontal 728 x 90</option>
|
||||
<option value="468x60">Horizontal 468 x 60</option>
|
||||
<option value="234x60">Horizontal 234 x 60</option>
|
||||
<option value="120x600">Vertical 120 x 600</option>
|
||||
<option value="160x600">Vertical 160 x 600</option>
|
||||
<option value="120x240">Vertical 120 x 240</option>
|
||||
<option value="336x280">Grand rectangle 336 x 280</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Couleurs</strong></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bordure</td>
|
||||
<td>#<input type="text" name="bordure" value="FFFFFF" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Titre</td>
|
||||
|
||||
<td>#<input type="text" name="titre" value="0000FF" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Fond</td>
|
||||
<td>#<input type="text" name="fond" value="FFFFFF" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<td>Texte</td>
|
||||
<td>#<input type="text" name="texte" value="000000" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>URL</td>
|
||||
<td>#<input type="text" name="url" value="008000" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
<div><input type="submit" value="Valider" /></div>
|
||||
</form>
|
||||
|
||||
<?php
|
||||
$format = $_POST["format"];
|
||||
$bordure = $_POST["bordure"];
|
||||
$titre = $_POST["titre"];
|
||||
$fond = $_POST["fond"];
|
||||
$texte = $_POST["texte"];
|
||||
$url = $_POST["url"];
|
||||
$format2 = explode("x", $format);
|
||||
$width = $format2[0];
|
||||
$height = $format2[1];
|
||||
$format = $format."_as";
|
||||
$code = "<strong>Code <20> ins<6E>rer sur votre site Internet :</strong><br/><br/>
|
||||
<textarea cols=\"50\" rows=\"15\" >
|
||||
<script type=\"text/javascript\"><!--
|
||||
google_ad_client = \"pub-3624271267101348\";
|
||||
google_ad_width = $width;
|
||||
google_ad_height = $height;
|
||||
google_ad_format = \"$format\";
|
||||
google_ad_type = \"text_image\";
|
||||
google_ad_channel = \"\";
|
||||
google_color_border = \"$bordure\";
|
||||
google_color_bg = \"$fond\";
|
||||
google_color_link = \"$url\";
|
||||
google_color_text = \"$texte\";
|
||||
google_color_url = \"$url\";
|
||||
//-->
|
||||
</script>
|
||||
<script type=\"text/javascript\"
|
||||
src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">
|
||||
</script>
|
||||
</textarea>
|
||||
<br/><br/>
|
||||
<strong>Aper<65>u visuel de la publicit<69> qui sera sur votre site Internet :</strong><br /><br />
|
||||
<script type=\"text/javascript\"><!--
|
||||
google_ad_client = \"pub-3624271267101348\";
|
||||
google_ad_width = $width;
|
||||
google_ad_height = $height;
|
||||
google_ad_format = \"$format\";
|
||||
google_ad_type = \"text_image\";
|
||||
google_ad_channel = \"\";
|
||||
google_color_border = \"$bordure\";
|
||||
google_color_bg = \"$fond\";
|
||||
google_color_link = \"$url\";
|
||||
google_color_text = \"$texte\";
|
||||
google_color_url = \"$url\";
|
||||
//-->
|
||||
</script>
|
||||
<script type=\"text/javascript\"
|
||||
src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">
|
||||
</script>"
|
||||
?>
|
||||
<?php
|
||||
if (isset($_POST["format"]))
|
||||
{ echo "<div id='code'>$code</div>"; }
|
||||
?>
|
||||
<h3>Afficher nos banni<6E>res de promotion sur votre site</h3>
|
||||
<p><img src="image/icons/em-plus.png" alt="info" style="padding-right: 5px;" /><a href="#JS_banniere" style="cursor:pointer" onclick="Cache('JS_banniere');">Voir nos banni<6E>res</a></p>
|
||||
<div id="JS_banniere" style="display: none">
|
||||
<br/>
|
||||
<strong>Banni<6E>re 1</strong> (468x60)<br/>
|
||||
<img src="http://www.kelio.org/image/logo/banniere46860-1.png" alt="Kelio.org - Faites vivre vos id<69>es avec un h<>bergeur ind<6E>pendant et alternatif" />
|
||||
<br/>Code <20> afficher<br/>
|
||||
<textarea style="width: 468px; height: 60px; border: 0; border: #006633 1px solid;" cols="" rows="">
|
||||
<a href="http://www.kelio.org"><img style="border: 0px;" src="http://kelio.org/image/logo/banniere46860-1.png" alt="Kelio.org - Faites vivre vos id<69>es avec un h<>bergeur ind<6E>pendant et alternatif" /> </a>
|
||||
</textarea><br/>
|
||||
<strong>Banni<6E>re 2</strong> (300x150)<br/>
|
||||
<img src="http://www.kelio.org/image/logo/banniere300150.png" alt="Kelio.org - Faites vivre vos id<69>es avec un h<>bergeur ind<6E>pendant et alternatif" />
|
||||
<br/>Code <20> afficher<br/>
|
||||
<textarea style="width: 468px; height: 60px; border: 0; border: #006633 1px solid;" cols="" rows="">
|
||||
<a href="http://www.kelio.org"><img style="border: 0px;" src="http://kelio.org/image/logo/banniere300150.png" alt="Kelio.org - Faites vivre vos id<69>es avec un h<>bergeur ind<6E>pendant et alternatif" /> </a>
|
||||
</textarea>
|
||||
</div>
|
||||
<br/>
|
||||
21
0.8.0/module/divers/stockage.php
Executable file
21
0.8.0/module/divers/stockage.php
Executable file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/*
|
||||
Copyright (C) 2007 Mercier Benjamin
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
?><h3>Stockage de fichiers</h3>
|
||||
<p>Le stockage massif de fichiers sur Kelio.org est interdit selon les conditions de la charte h<>bergement web.
|
||||
Cependant, vous pouvez souscrire <20> notre offre h<>bergement fichiers sur <a href="http://www.mes-fichiers.com">http://www.mes-fichiers.com</a> (actuellement en version b<>ta)</p>
|
||||
Reference in New Issue
Block a user