Problèmes courants

    From Ianseo
    Revision as of 08:04, 12 July 2026 by Apernot (talk | contribs) (Created page with "==== Solution 2 ==== Si le problème persiste, des utilisateurs ont signalé que la procédure suivante permettait de le résoudre.")
    Other languages:

    Erreur MySQL sous Windows 11

    Windows Defender considère XAMPP comme un virus et supprime ou corrompt ainsi des tables et des fichiers essentiels au fonctionnement d'i@nseo. Si cela se produit, voici trois solutions susceptibles de résoudre ce problème. Veuillez également configurer Windows Defender comme indiqué dans Install i@nseo.

    Réparer Mysql Database

    Solution 1

    • Quittez XAMPP.
    • Lancez XAMPP en tant qu'administrateur.
    • Démarrez uniquement Apache.
    • Accédez à l'adresse http://localhost/RepairXAMPP.php (ou http://localhost/Ianseo/RepairXAMPP.php).
    • Une page devrait s'afficher et tenter de réparer les autorisations.

    Solution 2

    Si le problème persiste, des utilisateurs ont signalé que la procédure suivante permettait de le résoudre.

    1. Close the Xampp application (preferably using task Manager)
    2. Open C:\ianseo\mysql folder (or where your ianseo installation is)
    3. Rename the data folder to data_old
    4. Copy and paste the backup folder named backup_copy
    5. Rename the backup_copy folder to data
    6. Open data_old folder, copy all folders except mysql folder, performance_schema folder and phpmyadmin folder.
    7. Go to the newly renamed data folder, paste the folders from step 6 inside.
    8. Open the data_old folder, copy ibdata1
    9. Paste it in the data folder
    10. Start Xampp
    11. navigate to http://localhost/phpmyadmin
    12. click on the "SQL" tab in the top menu
    13. provided you kept the original values upon installation, type the following 2 lines create user ianseo@localhost identified by 'ianseo'; grant all privileges on ianseo.* to ianseo@localhost;then press "execute"

    NOTE: the original values are

    • user: ianseo
    • password: ianseo
    • database: ianseo

    Avoid Issues with XAMPP and Windows 11

    Set as a Service

    Users in internet reported that the issue seems to disappear if Apache and Mysql are run as services. To activate the services, you need to run XAMPP_control as administrator and flag the checkbox on the left of Apache and Mysql.

    If the checkboxes are disabled and xampp_control is running as administrator, you need to activate them: in the XAMPP folder search for xampp_control.ini file, edit  it (click with right button and choose edit), find the block that says "[EnableServices]" and replace "0" with "1" in front of Apache and Mysql. Save, restart XAMPP as admin and the checkboxes should be enabled.

    Once the 2 checkboxes have a green flag all is set: start apache and mysql and from now on you can forget XAMPP: each time you switch on your computer the 2 programs will start automatically.

    Train Defender to protect XAMPP and related servers

    To avoid interferences between Windows Defender and XAMPP follow these steps[Win11 1]

    Step 1: Open Windows Security and go in "Protection against virus and malware"

    Step 1

    Step 2: At the bottom of the page click on Manage Exclusion

    Step 2

    Step 3: Insert which elements to exclude from the scan paying attention to upper and lower case:

    • Select folder to exclude:
      • C:\ianseo
    • File Types to exclude:
      • .mysql
      • .php
    • Processes to exclude (type exactly as written):
      • Apache HTTP Server
      • mysqld
      • xampp-control
    Step 3
    1. Arnaud Chalmel, Archers de Saint Loup