---
title: "Installation de Drupal avec Laragon on Windows"
date: 'Fri, 03 Jul 2026 16:44:59 -0400'
author: jmcouillard
image: https://jmcouillard.com/sites/default/files/styles/fixed_width_1200/public/articles/105/elephant.jpg.webp?itok=KpH9FpRN
published: true
type: blog
url: https://jmcouillard.com/en/blog/installation-de-drupal-avec-laragon-windows
language: en
id: 105
---

There is an issue with installing Drupal on a Laragon development environment on Windows.

The installation fails to complete correctly, and some database tables are not created.

The error message in the console is:

```
An AJAX HTTP request terminated abnormally.  
Debugging information follows.  
Path: /core/install.php?rewrite=ok&langcode=en&profile=standard&id=1&op=do_nojs&op=do  
StatusText: error  
ReadyState: 0
```

## Solution 

Remove (or comment out) the line `php_value assert.active` from the default Drupal `.htaccess` file:

```
php
<IfModule mod_php.c>
#  php_value assert.active                   0
</IfModule>
```

[Source on Drupal.org](https://www.drupal.org/project/drupal/issues/3466539)
