Bonjour à tous
Je viens d'installer un script PHP avec base de données MySQL sur mon site. Le voici:
http://www.gentlesource.com/comment-script/
Il s'agit d'un script permettant de laisser des commentaires sur une page
L'installation s'est bien déroulée. J'en suis donc à l'intégration du PHP sur ma page
Dans la documentation qui va avec, et écrite en anglais (ce qui n'est pas mon fort ), il est écrit ceci:
Je pensais que j'avais tout fait comme dit, mais ça ne marche pasInclude into a PHP File
You can include the script anywhere on your web server.
Step-by-Step:
1. Copy the file include.php into the folder where your files reside you want to
implement with Comment Script.
2. Add the PHP include statement at the very top of your existing PHP file. It is important that no output is made before the include statement.
include './include.php';
In case you have HTML code in your PHP file, it would have to look like this:
<?php include './include.php'; ?>
<html>
<head>[...]</head>
<body>[...]</body>
</html>
3. Move the variable $c5t_output from the new include.php file to the place in
your existing PHP file where you want the Comment Script content to appear.
echo $c5t_output;
It is important that you delete the variable $c5t_output from include.php
once you have moved $c5t_output to your existing web page.
Je vous dis donc ce que j'ai fait:
-Déjà dans ce que j'ai téléchargé, le fichier ne s'appele pas include.php mais include.php.tpl
-J'ai mis ce fichier (include.php.tpl) à la racine de mon site
-J'ai mis l'instruction echo $c5t_output; dans ma page actu.htm que j'ai renommée en actu.php
-Et j'ai enlevé cette instruction de mon fichier include.php.tpl, dont je vous mets le contenu:
AVANT:
Et APRES
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 <?php /** * GentleSource Comment Script * * (C) Ralf Stadtaus http://www.gentlesource.com/ */ define('C5T_ROOT', '{$server_script_path}'); include C5T_ROOT . 'comment.php'; echo $c5t_output; ?>
-Voici le contenu de ma page actu.htm, sur laquelle je veux que les gens laissent des commentaires:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 <?php /** * GentleSource Comment Script * * (C) Ralf Stadtaus http://www.gentlesource.com/ */ define('C5T_ROOT', '{$server_script_path}'); include C5T_ROOT . 'comment.php'; ?>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19<?php include './include.php.tpl'; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <br /> Contenu de mon article <br /> echo $c5t_output; </body> </html>
Si vous pouviez m'aider, je vous en remercie 100 fois par avance
Partager