Bonjour,
je suis en local et je commence à tester Tinymce. J'ai suivi ce tuto : https://www.webtolosa.com/2017/09/22...n-mode-avance/ et ai créé un petit script :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
    <script src="https://cloud.tinymce.com/stable/tinymce.min.js"></script>
    <script>tinymce.init({ selector:'textarea' });</script>
</head>
<body>
<form action="traitement.php" method="post">
    <textarea name="CeQueVousVoulez"> </textarea>
    <input type="submit" value="envoyer">
</form>
</body>
</html>
Cette phrase s'affiche :
This domain is not registered with Tiny Cloud. Please see the quick start guide or create an account.
Pourtant, je croyais que en local, ce domaine était par défaut déclaré (sur le compte Tiny et approved domain, on a localhost). Comment éviter cela SVP ?