Migrate from others

You can migrate from other environments to Laragon easily:

Copy code

Copy all of your folders in your former Document Root to C:\laragon\www

Copy databases:

Dump all databases:

  1. Start your current environment
  2. Run:

    mysqldump.exe --all-databases > C:\laragon\tmp\alldb.sql
  3. Stop your current environment

Restore all databases to Laragon:

  1. Start Laragon
  2. Run:
    mysql -u root -p < C:\laragon\tmp\alldb.sql