updated old domain remnants

Cette révision appartient à :
Albirew 2022-05-28 17:41:17 +02:00
Parent 72c425bbd0
révision 8026b1ace6
15 fichiers modifiés avec 35 ajouts et 29 suppressions

Voir le fichier

@ -2,7 +2,7 @@
===
[![LICENSE](https://img.shields.io/badge/license-CC0-blue.svg)](LICENSE)
**[Site web de la HHH (NSFW)](https://hhh-world.com/)**
**[Site web de la HHH (NSFW)](https://anesis.tk/)**
Documentation
===

Voir le fichier

@ -1,3 +1,3 @@
<?php
header('Location: http://err.hhh-world.com/403');
header('Location: http://err.anesis.tk/403');
?>

Voir le fichier

@ -17,7 +17,7 @@ include 'include/head.php';
<div id="contenunews">
</div>
<div class="newspermalien"><a href="http://hhh-world.com/V3/lirenews.php?idnews=240&titre=un-titre-de-news" data-link="news">Permalien</a></div>
<div class="newspermalien"><a href="http://<?php echo $domaine; ?>/lirenews.php?idnews=240&titre=un-titre-de-news" data-link="news">Permalien</a></div>
</article>
</div>
<div id="newspreviewclose">FERMER</div>

Voir le fichier

@ -1,3 +1,4 @@
<?php $domaine = "anesis.tk"; ?>
<!DOCTYPE html>
<html lang="fr">
<head>

Voir le fichier

@ -3,7 +3,6 @@ header("Pragma: no-cache");
ini_set('display_errors', '1');
ini_set('error_reporting', E_ALL);
include dirname(__FILE__).'/../include/connexionBdd.php';
include 'include/head.php';
?>
<div id="main">
@ -21,7 +20,7 @@ include 'include/head.php';
<div id="contenunews">
</div>
<div class="newspermalien"><a href="http://hhh-world.com/V3/lirenews.php?idnews=240&titre=un-titre-de-news" data-link="news">Permalien</a></div>
<div class="newspermalien"><a href="http://<?php echo $domaine; ?>/lirenews.php?idnews=240&titre=un-titre-de-news" data-link="news">Permalien</a></div>
</article>
</div>
<div id="newspreviewclose">FERMER</div>

Voir le fichier

@ -3,6 +3,7 @@ ini_set('display_errors', '1');
ini_set('error_reporting', E_ALL);
setlocale (LC_ALL, 'fr_FR.utf8');
date_default_timezone_set('Europe/Paris');
$domaine = "anesis.tk";
/**
* Cette classe gère les news du site web de la HHH.
*
@ -133,8 +134,6 @@ class NewsManager
$paramTitre = str_replace(' ', '-', $affiche['titre']);
//TECHNIQUE DU CASTOR D'ALBIREW POUR ENELVER LES ACCENTS, cherche pas, tu peux pas test. En fait il convertit la string en iso américain...
$paramTitre = iconv('UTF-8', 'US-ASCII//TRANSLIT', $paramTitre);
//echo '<div class="newspermalien"><a href="http://hhh-world.com/V3/lireNews.php?idnews='.$affiche['id'].'&amp;titre='.$paramTitre.'" data-link="news">Permalien</a></div>
//</article>';
echo '</article><div class="newspermalien"><a href="lireNews.php?idnews='.$affiche['id'].'&amp;titre='.$paramTitre.'" data-link="news" data-newsid="'.$affiche['id'].'">Permalien</a></div><div class="deploynews" data-newsid="'.$affiche['id'].'">Deployer la news &#8595;</div>
';
$ask->closeCursor();
@ -459,9 +458,9 @@ class NewsManager
$imageurl = str_replace("src='","",$imageurl); //single quote
$imageurl = stristr($imageurl, '"', true); //double quote
$imageurl = stristr($imageurl, "'", true); //single quote
if (strpos($imageurl,'://') === FALSE){$imageurl = 'http://hhh-world.com'.$imageurl;}
if (strpos($imageurl,'://') === FALSE){$imageurl = 'http://'.$domaine.$imageurl;}
$texte = substr($titre,0,85); // limite twitter 140 caractères - 22 pour l'URL - 23 pour l'image -4 pour les espaces et la flèche entre texte et lien -6 pour [news]
$url = 'http://hhh-world.com/lireNews.php?idnews='.$monidbordel;
$url = 'http://'.$domaine.'/lireNews.php?idnews='.$monidbordel;
// require codebird
require_once(dirname(__FILE__).'/../twitter-api/codebird.php');
include dirname(__FILE__).'/../include/connexionTwitter.php';

Voir le fichier

@ -3,6 +3,9 @@
//Reglage du fuseau horaire
date_default_timezone_set('Europe/Paris');
// Domaine d'envoi
$domaine = "anesis.tk";
require 'phpmailer/PHPMailerAutoload.php';
//Appel PHP Mailer
@ -23,22 +26,22 @@ $mail->SMTPDebug = 2;
$mail->Debugoutput = 'html';
//Adresse SMTP
$mail->Host = "smtp.hhh-world.com";
$mail->Host = "mail.".$domaine;
//Port SMTP (25, 465 ou 587)
$mail->Port = 25;
//Authentification activé ?
$mail->SMTPAuth = true;
//Login SMTP
$mail->Username = "contact@hhh-world.com";
$mail->Username = "contact@".$domaine;
//Password SMTP
$mail->Password = "tiramisu";
//EXPEDITEUR
$mail->setFrom('contact@hhh-world.com', 'Contact HHH');
$mail->setFrom('contact@'.$domaine, 'Contact HHH');
//ADRESSE DE REPONSE
// $mail->addReplyTo($email,$nom);
//DESTINATAIRE
$mail->addAddress('contact@hhh-world.com', 'Contact HHH');
$mail->addAddress('contact@'.$domaine, 'Contact HHH');
//SUJET DU MAIL
$mail->Subject = "Nouvelle erreur sur HHH";

Voir le fichier

@ -3,6 +3,9 @@
//Reglage du fuseau horaire
date_default_timezone_set('Europe/Paris');
// Domaine d'envoi
$domaine = "anesis.tk";
require 'phpmailer/PHPMailerAutoload.php';
//Appel PHP Mailer
@ -23,22 +26,22 @@ $mail->SMTPDebug = 2;
$mail->Debugoutput = 'html';
//Adresse SMTP
$mail->Host = "smtp.hhh-world.com";
$mail->Host = "mail.".$domaine;
//Port SMTP (25, 465 ou 587)
$mail->Port = 25;
//Authentification activé ?
$mail->SMTPAuth = true;
//Login SMTP
$mail->Username = "contact@hhh-world.com";
$mail->Username = "contact@".$domaine;
//Password SMTP
$mail->Password = "tiramisu";
//EXPEDITEUR
$mail->setFrom('contact@hhh-world.com', 'Contact HHH');
$mail->setFrom('contact@'.$domaine, 'Contact HHH');
//ADRESSE DE REPONSE
$mail->addReplyTo($email,$nom);
//DESTINATAIRE
$mail->addAddress('contact@hhh-world.com', 'Contact HHH');
$mail->addAddress('contact@'.$domaine, 'Contact HHH');
//SUJET DU MAIL
$mail->Subject = "Nouveau message sur HHH";

Voir le fichier

@ -96,7 +96,7 @@ include 'include/head.php';
</p>
<p>
<span id="luxuriadl" class="titlebox center abloc">ÉTAPE 3 : Télécharger les releases de la team.</span>
La liste des releases de HHH est disponible sur le lien suivant : <a href="http://xdcclist.hhh-world.com/" target="_blank" title="liste xdcc">http://xdcclist.hhh-world.com/</a>.
La liste des releases de HHH est disponible sur le lien suivant : <a href="http://xdcclist.<?php echo $domaine; ?>/" target="_blank" title="liste xdcc">http://xdcclist.<?php echo $domaine; ?>/</a>.
Vous avez alors accès à la liste des téléchargements disponibles sur le chan.
<img src="design/img/irc/listexdcc.jpg" alt="client KVIRC luxuria">

Voir le fichier

@ -1,7 +1,7 @@
/**
All animations and features scripted by :
Lukia
contact@hhh-world.com
contact@anesis.tk
Free to use and fork and anything you want !
**/
$(document).ready( function () {

Voir le fichier

@ -13,7 +13,7 @@ include 'include/head.php';
Le serveur et le nom de domaine sont intégralement payés par Lukia et les frais annuels s'élèvent à 226. Nous ne dépendons pas de la pub pour rembourser ces frais.
<img src="design/img/dons.jpg">
Vous pouvez aider la team à subvenir à ses besoins en donnant un peu, beaucoup, à la folie en suivant
<a href="http://anesis-server.infos.st/" class="titre big center" target="_blank">CE LIEN !</a>
<a href="https://dons.<?php echo $domaine; ?>/" class="titre big center" target="_blank">CE LIEN !</a>
</p>
</div>

Voir le fichier

@ -1,6 +1,7 @@
<?php
$urisite = 'https://anesis.tk';
$urilel = 'https://lel.anesis.tk';
$domaine = "anesis.tk";
$urisite = 'https://'.$domaine;
$urilel = 'https://lel.'.$domaine;
?>
<!DOCTYPE html>
<html lang="fr">

Voir le fichier

@ -10,7 +10,7 @@ include 'include/head.php';
<div id="wrapper">
<div id="pagesstatiques">
<p>
<span class="big gras center titre">Vous retrouverez la liste des chapitres téléchargeable via IRC sur la liste XDCC à cette adresse : <a href="http://xdcclist.hhh-world.com/" target="_blank" title="liste xdcc" class="titre">http://xdcclist.hhh-world.com/</a></span>
<span class="big gras center titre">Vous retrouverez la liste des chapitres téléchargeable via IRC sur la liste XDCC à cette adresse : <a href="http://xdcclist.<?php echo $domaine; ?>/" target="_blank" title="liste xdcc" class="titre">http://xdcclist.<?php echo $domaine; ?>/</a></span>
<span class="big center titre">Bon téléchargement !</span>

Voir le fichier

@ -1,4 +1,4 @@
Sitemap: http://hhh-world.com/sitemap.xml
Sitemap: http://anesis.tk/sitemap.xml
User-Agent: T-1000
User-Agent: T-800

Voir le fichier

@ -13,12 +13,12 @@ header("Content-type: application/rss+xml");
</link>
<title><![CDATA[Hardcore Hentai Headquarter, Hentai français depuis 2004]]</title>
<item>
<title>BIENTÔT !</title>
<title>JAMAIS !</title>
<link>
http://anesis.tk/
</link>
<description>
<![CDATA[BIENTÔT !!!]]
<![CDATA[JAMAIS !!!]]
</description>
<comments>
http://anesis.tk/
@ -27,13 +27,13 @@ header("Content-type: application/rss+xml");
Albirew
</author>
<pubDate>
Wed, 30 Apr 2014 00:42:42 +0200
Wed, 30 Apr 2022 00:42:42 +0200
</pubDate>
<guid>
bientot
Jamais
</guid>
<source>
http://hhh-world.com
http://anesis.tk
</source>
</item>
</channel>