# I can't save my project in builder landing page!

**URL:** https://forum.mautic.org/t/i-cant-save-my-project-in-builder-landing-page/10336
**Category:** Product Support
**Created:** [March 12, 2018, 4:32am UTC](https://forum.mautic.org/t/i-cant-save-my-project-in-builder-landing-page/10336 "2018-03-12T04:32:18Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![bill](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/bill/32/694_2.png) [@bill](https://forum.mautic.org/u/bill)
#### Post date: [March 12, 2018, 4:32am UTC](https://forum.mautic.org/t/i-cant-save-my-project-in-builder-landing-page/10336/1 "2018-03-12T04:32:18Z")

</div>

Good morning, I have a problem when I create a new landing page \> Code \> Builder i write html code. Τhen I store my job and sticks it shows that it loads storage while nothing is done. Τhe same happens when I’m doing and I’m trying to save it. Let me point out that this is not always the case, but now it happens.  
Thank you for your valuable help

---

<div class="post-metadata">

### Author: ![bill](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/bill/32/694_2.png) [@bill](https://forum.mautic.org/u/bill)
#### Post date: [March 12, 2018, 4:35am UTC](https://forum.mautic.org/t/i-cant-save-my-project-in-builder-landing-page/10336/2 "2018-03-12T04:35:52Z")

</div>

it loads apply but not save it

---

<div class="post-metadata">

### Author: ![ninjoan](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/ninjoan/32/1005_2.png) [@ninjoan](https://forum.mautic.org/u/ninjoan)
#### Post date: [March 12, 2018, 10:27am UTC](https://forum.mautic.org/t/i-cant-save-my-project-in-builder-landing-page/10336/3 "2018-03-12T10:27:32Z")

</div>

the builder is known to have some problems if you code using javascript. try to save the HTML but get rid of all the javascript.

---

<div class="post-metadata">

### Author: ![mchojrin](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/mchojrin/32/10159_2.png) [@mchojrin](https://forum.mautic.org/u/mchojrin)
#### Post date: [July 18, 2023, 3:35pm UTC](https://forum.mautic.org/t/i-cant-save-my-project-in-builder-landing-page/10336/4 "2023-07-18T15:35:34Z")

</div>

Hi there:

I was having this exact same issue with my v4.4.9 installation and, after poking around I found that the problem was a misconfiguration of MySQL: the value of `max-allowed-packet` system variable was too small (2048).

I changed it to 67108864 and everything started working fine.

In my case, since I’m using a docker installation, the way to fix it was to supply an extra parameter to the command to start the database:

```auto
#!/bin/sh

docker run --name database \
        -d \
        --restart=always \
        -p 3306:3306 \
        -e MYSQL_ROOT_PASSWORD=mypassword \
        -v mysql_data:/var/lib/mysql \
        --net=mauticnet \
        percona/percona-server:5.7 \
        --character-set-server=utf8mb4 \
        --collation-server=utf8mb4_general_ci \
        --max-allowed-packet=67108864

```
