Hey Jede !
Vraiment sympa cette petite page ! Beau taff j'aime beaucoup !
Merci à toi pour le partage !
Vraiment sympa cette petite page ! Beau taff j'aime beaucoup !

Merci à toi pour le partage !
Si tu as le dépôt à jour, il y a déjà une page d admin, que j avais pusher il y a quelques semaines, qui permet de modifier simplement les icônes liens et texteGhostfly wrote:Un p'tit tuto pour modifier la page plus en profondeur serait pas mal, mais bon ça revient à faire un tuto de HTML / CSS / PHP en plus "basique" car compréhensible par quelqu'un qui n'en a jamais fait de base.. Bref, pas très utile je pense..
Pour moi la grosse fonction qui va manquer à un débutant, c'est l'ajout / suppression de lignes depuis l'admin, dès que j'ai un peu de temps j'essaie de commit un admin avec ces ajouts, ça facilitera l'adoption
Peut être aussi la possibilité de changer le logo "Tardis", même si ça se fait assez simplement par remplacement de fichiers..
<div class="CLOUD">
<div class="link2">
ADMIN<br>
<img src="./assets/img/link.png">
</div>
<a href="lien" TITLE="Postfixadmin">
<span class="fa fa-rss-square"></span>
<div id="lien">Postfix</div>
</a>
<a href="lien" TITLE="Rainloop">
<span class="fa fa-envelope"></span>
<div id="lien">Rainloop</div>
</a>
<a href="lien" TITLE="Webmin">
<span class="fa fa-cloud"></span>
<div id="lien">Webmin</div>
</a>
</div>
De mémoire, j'avais modifié dans le fichier style.css, la valeur de "height" en mettant un + grand nombre :.center .content {
margin: auto; overflow: auto; width: 700px; height: 650px;
position: absolute; left: 0; top: 0; right: 0; bottom: -50px;
text-align: center; opacity: 1; transition: .3s ease-out;
z-index:2;
}
Je parle d'une fonction sur l'admin déjà en place pour supprimer / ajouter des icônes. J'ai bien vu l'admin actuel, mais pas possible de supprimer/désafficher des icônes sans aller directement dans le code.arckosfr wrote:Si tu as le dépôt à jour, il y a déjà une page d admin, que j avais pusher il y a quelques semaines, qui permet de modifier simplement les icônes liens et texteau vue du dépôt je dirais que c est http://tonurl/admin ou /tardisstart/admin a adapter quoi
location ^~ /tardistart {
root /var/www;
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
satisfy any;
allow all;
location ~ admin {
auth_basic "TARDIStart Admin Page";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_user";
deny all;
}
}
il faut utiliser :location ^~ / {
à la place de location ^~ /tardistart {
location /
perso je l'ai mis sur location /mondedie
/var/www/tardistart/les fichiers ?
parce que si tu as mis root /var/www/tardistart
il cherche dans /var/www/tardistart/tardistart
include /etc/nginx/conf.d/php;
include /etc/nginx/conf.d/cache;
J'ai rajouter .conf :
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
Un restart nginx, un ctrl+f5 pour reload la page et tout est nickel.<div class="SEEDBOX">
<div class="link1">
SEEDBOX<br>
<img src="./assets/img/link.png">
</div>
<a href="<?= $data[0][lien] ?>" TITLE="<?= $data[0][titre] ?>">
<span class="fa <?= $data[0][icone] ?>"></span>
<div id="lien"><?= $data[0][titre] ?></div>
</a>
<a href="<?= $data[1][lien] ?>" TITLE="<?= $data[1][titre] ?>">
<span class="fa <?= $data[1][icone] ?>"></span>
<div id="lien"><?= $data[1][titre] ?></div>
</a>
<a href="<?= $data[2][lien] ?>/" TITLE="<?= $data[2][titre] ?>">
<span class="fa <?= $data[2][icone] ?>"></span>
<div id="lien"><?= $data[2][titre] ?></div>
</a>
</div>
<div class="CLOUD">
<div class="link2">
CLOUD<br>
<img src="./assets/img/link.png">
</div>
<a href="<?= $data[3][lien] ?>" TITLE="<?= $data[3][titre] ?>">
<span class="fa <?= $data[3][icone] ?>"></span>
<div id="lien"><?= $data[3][titre] ?></div>
</a>
<a href="<?= $data[4][lien] ?>" TITLE="<?= $data[4][titre] ?>">
<span class="fa <?= $data[4][icone] ?>"></span>
<a href="<?= $data[5][lien] ?>" TITLE="<?= $data[5][titre] ?>">
<span class="fa <?= $data[5][icone] ?>"></span>
<div id="lien"><?= $data[5][titre] ?></div>
</a>
</div>
</div>
</div>
</div>
</div>
server {
listen 80;
server_name welcome.xxx.ovh;
#rewrite ^ https://$http_host$request_uri? permanent;
}
server {
listen 443 ssl;
server_name welcome.xxx.ovh;
# The location of our project's public directory.
root /var/www/tardistart;
index index.php;
location / {
# URLs to attempt, including pretty ones.
try_files $uri $uri/ /index.php?$query_string;
}
# Remove trailing slash to please routing system.
if (!-d $request_filename) {
rewrite ^/(.+)/$ /$1 permanent;
}
#SSL
ssl on; #enlever le # après avoir installé votre certificat ssl
ssl_certificate /etc/letsencrypt/live/welcome.xxx.ovh/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/welcome.xxx.ovh/privkey.pem;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Des idées ? # The location of our project's public directory.
root /var/www/tardistart;
Perso je l'ai mis en
/var/www/base
Si cela peut t'aiderOppenheimer wrote:Bonjour,
Je rencontre actuellement un soucis avec mon second serveur.
Sur le premier, plus de soucis, tout fonctionne correctement.
Sur le second, qui a la même base, à savoir le rutorrent script de Ex_Rat sous Nginx, impossible d'accéder en nom de domaine à Tardis.
J'y accède bien par l'ip du serveur, ce qui tend à prouver que le rutorrent.conf est correct.
Cependant, quand je tente de passer par welcome.xxx.ovh, j'ai soit un 404, soit un 502.
Je vous c/c ici le contenu du welcome.conf :
Des idées ?
server { listen 80; server_name welcome.xxx.ovh; #rewrite ^ https://$http_host$request_uri? permanent; } server { listen 443 ssl; server_name welcome.xxx.ovh; # The location of our project's public directory. root /var/www/tardistart; index index.php; location / { # URLs to attempt, including pretty ones. try_files $uri $uri/ /index.php?$query_string; } # Remove trailing slash to please routing system. if (!-d $request_filename) { rewrite ^/(.+)/$ /$1 permanent; } #SSL ssl on; #enlever le # après avoir installé votre certificat ssl ssl_certificate /etc/letsencrypt/live/welcome.xxx.ovh/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/welcome.xxx.ovh/privkey.pem; # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; # # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini # # With php5-fpm: fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } }
Merci d'avance
# Remove trailing slash to please routing system.
if (!-d $request_filename) {
rewrite ^/(.+)/$ /$1 permanent;
}
Le wiki de nginx, dis clairement qu'il faut clairement bannir les if . ta configuration est bonne a part ça.chown -R www-data:www-data /var/www/tardistart
Et le problème persiste; j'avoue ne pas comprendre ce que je rate lanano /etc/nginx/sites-enabled/site.conf
## début config site ##
location ^~ / {
root /var/www/tardistart;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
allow all;
location ~ admin {
auth_basic "TARDIStart Admin Page";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_cocolabombe0";
deny all;
}
}
## fin config site ##
J'ai bien eu la demande de connection et cela à bien fonctionné. 2016/07/01 11:56:23 [error] 1472#1472: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Undefined offset: 1 in /var/www/tardistart/statsServ.php on line 11
PHP message: PHP Notice: Undefined offset: 1 in /var/www/tardistart/statsServ.php on line 11
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant lien - assumed 'lien' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant lien - assumed 'lien' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52
PHP message: PHP Notice: Use of undefined constant id - assumed 'id
2016/07/01 11:56:23 [error] 1472#1472: *1 FastCGI sent in stderr: "tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant lien - assumed 'lien' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant lien - assumed 'lien' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart
2016/07/01 11:56:23 [error] 1472#1472: *1 FastCGI sent in stderr: "ne 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant lien - assumed 'lien' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant lien - assumed 'lien' in /var/www/tardistart/admin/index.php on line 49
PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 50
PHP message: PHP Notice: Use of undefined constant titre - assumed 'titre' in /var/www/tardistart/admin/index.php on line 50" whi
2016/07/01 11:56:23 [error] 1472#1472: *1 FastCGI sent in stderr: "PHP message: PHP Notice: Use of undefined constant id - assumed 'id' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 51
PHP message: PHP Notice: Use of undefined constant icone - assumed 'icone' in /var/www/tardistart/admin/index.php on line 52" while reading upstream, client: xxx.xxx.xxx.xxx, server: xxx.fr, request: "GET /admin/ HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "xxx.fr", referrer: "https:/xxx.fr/admin/"
Peut être bien aussi de regrouper le nom des 4 catégories sur la page admin voir même de pouvoir augmenter les catégories.<i class="fa fa-wpforms" aria-hidden="true"></i>
Sauf que rien n'apparait même en retirant la balise aria-hidden, quelqu'un aurait une idée?...
## début config tardistart ##
location ^~ / {
root /var/www/tardistart;
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
satisfy any;
allow all;
location ~ admin {
auth_basic "TARDIStart Admin Page";
auth_basic_user_file "/etc/nginx/passwd/rutorrent_passwd_khobal";
deny all;
}
}
## fin config tardistart ##
...
1 - Je tombe bien sur la page Tardistrat quand je vais à l'adresse mondomaine.tld mais je n'ai aucun fond d'écran.Last login: Mon Sep 5 09:18:47 on ttys000
Air-de-Sabrina:~ Sabi$ ssh root@**.***.**.**
root@91.121.84.60's password:
Last login: Mon Sep 5 09:25:06 2016 from 245.12.23.109.rev.sfr.net
root@KS-4C:~# cd /var/www
root@KS-4C:/var/www# git clone https://github.com/Jedediah04/TARDIStart.git tardistart
root@KS-4C:/var/www# cd tardistart
root@KS-4C:/var/www/tardistart# bower install --allow-root
bower invalid-meta The "name" is recommended to be lowercase, can contain digits, dots, dashes
bower not-cached https://github.com/VincentGarreau/particles.js.git#^2.0.0
bower resolve https://github.com/VincentGarreau/particles.js.git#^2.0.0
bower not-cached https://github.com/tuupola/jquery_jeditable.git#^1.7.3
bower resolve https://github.com/tuupola/jquery_jeditable.git#^1.7.3
bower not-cached https://github.com/FortAwesome/Font-Awesome.git#^4.5.0
bower resolve https://github.com/FortAwesome/Font-Awesome.git#^4.5.0
bower cached https://github.com/jquery/jquery-dist.git#2.2.4
bower validate 2.2.4 against https://github.com/jquery/jquery-dist.git#^2.2.1
bower checkout jeditable#1.7.3
bower checkout particles.js#2.0.0
bower checkout font-awesome#v4.6.3
bower resolved https://github.com/VincentGarreau/particles.js.git#2.0.0
bower resolved https://github.com/tuupola/jquery_jeditable.git#1.7.3
bower resolved https://github.com/FortAwesome/Font-Awesome.git#4.6.3
bower install jquery#2.2.4
bower install particles.js#2.0.0
bower install jeditable#1.7.3
bower install font-awesome#4.6.3
jquery#2.2.4 assets/bower/jquery
particles.js#2.0.0 assets/bower/particles.js
jeditable#1.7.3 assets/bower/jeditable
font-awesome#4.6.3 assets/bower/font-awesome
root@KS-4C:/var/www/tardistart# chown -R www-data:www-data /var/www/tardistart
root@KS-4C:/var/www/tardistart# service nginx restart
Job for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details.
root@KS-4C:/var/www/tardistart# /etc/init.d/nginx restart
[....] Restarting nginx (via systemctl): nginx.serviceJob for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details.
failed!
root@KS-4C:/var/www/tardistart# systemctl status nginx.service
● nginx.service - LSB: Stop/start nginx
Loaded: loaded (/etc/init.d/nginx)
Active: failed (Result: exit-code) since lun. 2016-09-05 09:45:47 CEST; 2min 31s ago
Process: 25632 ExecStop=/etc/init.d/nginx stop (code=exited, status=0/SUCCESS)
Process: 26631 ExecStart=/etc/init.d/nginx start (code=exited, status=1/FAILURE)
sept. 05 09:45:47 KS-4C nginx[26631]: nginx: [emerg] open() "/etc/nginx/conf.d/php" fa...:45
sept. 05 09:45:47 KS-4C systemd[1]: nginx.service: control process exited, code=exited...s=1
sept. 05 09:45:47 KS-4C systemd[1]: Failed to start LSB: Stop/start nginx.
sept. 05 09:45:47 KS-4C systemd[1]: Unit nginx.service entered failed state.
Hint: Some lines were ellipsized, use -l to show in full.
root@KS-4C:/var/www/tardistart#
Une idee svp ?sept. 05 09:45:47 KS-4C nginx[26631]: nginx: [emerg] open() "/etc/nginx/conf.d/php" fa...:45
Non ?