Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Humhub
  3. Install errors

Install errors

Scheduled Pinned Locked Moved Humhub
22 Posts 3 Posters 84 Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • jamesJ Offline
    jamesJ Offline
    james
    Staff
    wrote last edited by james
    #13

    Hello @stoccafisso
    I already have 2x fresh humhubs installed.
    1x OIDC version and 1x local user management version

    I am just trying to gather as many details as possible to get this sorted out asap.

    @stoccafisso said in Install errors:

    That does not indicate that the problem is related to the cloudrons or DO-droplets themselves, so that leave it to the app (and its installation script/procedure) to be investigated. IMHO.

    I never stated this is a problem just for you, and I am already trying to figure out where this is going wrong in the Cloudron app.

    S 1 Reply Last reply
    1
    • jamesJ james

      Hello @stoccafisso
      I already have 2x fresh humhubs installed.
      1x OIDC version and 1x local user management version

      I am just trying to gather as many details as possible to get this sorted out asap.

      @stoccafisso said in Install errors:

      That does not indicate that the problem is related to the cloudrons or DO-droplets themselves, so that leave it to the app (and its installation script/procedure) to be investigated. IMHO.

      I never stated this is a problem just for you, and I am already trying to figure out where this is going wrong in the Cloudron app.

      S Offline
      S Offline
      stoccafisso
      wrote last edited by
      #14

      @james thank you. And I am not complaining, I just try to help problem solving brainstorming 😊

      1 Reply Last reply
      0
      • scookeS Offline
        scookeS Offline
        scooke
        wrote last edited by scooke
        #15

        I'll give it a shot. EDIT: Yep, something is wrong. I used this a few months ago and had tons of profile options. This one gives no options.
        Screenshot 2025-11-06 at 21.20.37.png
        Trying to add profile tags with the auto-complete doesn't work.
        Screenshot 2025-11-06 at 21.21.12.png
        This screen looks like there should be Information available to choose... but there is nothing.
        Screenshot 2025-11-06 at 21.22.50.png

        I archived that previous HumHub install, but I'll try to restore it and see how it looks different.

        Let me add that on the very first attempt on this new install there was a brief moment after the Install page when a list of mysql db tables and info were shown and there was a yellow ! indicating a problem with the unicode encoding... but I didn't get a screen shot and subsequent installs to try to get that brief window haven't worked, it goes by to quick. This is a screenshot just before the list of db info:
        Screenshot 2025-11-06 at 21.18.59.png

        A life lived in fear is a life half-lived

        S 1 Reply Last reply
        2
        • jamesJ Offline
          jamesJ Offline
          james
          Staff
          wrote last edited by
          #16

          The issue is somewhere in the first startup.
          It tries to load the demo data but does not install any module's or loads the demo data.
          Already on it to figure out why this is not happening.

          1 Reply Last reply
          3
          • scookeS scooke

            I'll give it a shot. EDIT: Yep, something is wrong. I used this a few months ago and had tons of profile options. This one gives no options.
            Screenshot 2025-11-06 at 21.20.37.png
            Trying to add profile tags with the auto-complete doesn't work.
            Screenshot 2025-11-06 at 21.21.12.png
            This screen looks like there should be Information available to choose... but there is nothing.
            Screenshot 2025-11-06 at 21.22.50.png

            I archived that previous HumHub install, but I'll try to restore it and see how it looks different.

            Let me add that on the very first attempt on this new install there was a brief moment after the Install page when a list of mysql db tables and info were shown and there was a yellow ! indicating a problem with the unicode encoding... but I didn't get a screen shot and subsequent installs to try to get that brief window haven't worked, it goes by to quick. This is a screenshot just before the list of db info:
            Screenshot 2025-11-06 at 21.18.59.png

            S Offline
            S Offline
            stoccafisso
            wrote last edited by stoccafisso
            #17

            @scooke said in Install errors:

            Screenshot 2025-11-06 at 21.18.59.png

            Yes, I also saw the same as in this screenshot a couple of times during my many attempts at installing, and reinstalling this thing.

            And thank you very much for helping and contributing to problem solving 🙏

            1 Reply Last reply
            1
            • jamesJ Offline
              jamesJ Offline
              james
              Staff
              wrote last edited by
              #18

              ⚠ The following guide will delete all existing data

              If you want a quick fix right now - after the installation, put your app into recovery mode.

              Open the web terminal and delete all data in /app/data/*

              rm -r /app/data/*
              

              In the web terminal drop all tables from the database:

              mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -Nse 'show tables' | while read table; do mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -e "SET FOREIGN_KEY_CHECKS = 0; drop table \`$table\`"; done
              

              Edit the /app/pkg/start.sh and find this section:

                  echo "==> Finish configuration"
                  $curl http://localhost:8000/installer/config/finish
                  $curl http://localhost:8000/installer/config/finished
              

              Comment out the two curl statements, it should look like this:

                  echo "==> Finish configuration"
                  # $curl http://localhost:8000/installer/config/finish
                  # $curl http://localhost:8000/installer/config/finished
              

              Save and exit the file.

              Run the start.sh manually with:

              /app/pkg/start.sh
              

              It will run once and exit, after that, run the same command again.

              /app/pkg/start.sh
              

              Now that it is running, visit your Humhub url.
              You will see the manual setup process:

              ae13a3df-d71e-446a-a3bc-b9b029c1a6db-image.png

              After finishing this guided initial setup you can login with admin and changeme and will have all the demo data including the user profile fields.
              You can turn off the recovery mode now and the app will work as intended.
              0cc62263-e82d-42f5-944e-4fbe8ef5e70d-image.png

              S 2 Replies Last reply
              3
              • scookeS Offline
                scookeS Offline
                scooke
                wrote last edited by
                #19

                Cool solution. You know what, my previous install was App Title and Version HumHub 1.17.2, and Package Version com.humhub.cloudronapp@1.8.1... and when I logged back in there were no Profile fields either!!! So I guess I didn't even notice!! So now I want to actually install again and see what I missed before!

                A life lived in fear is a life half-lived

                1 Reply Last reply
                1
                • jamesJ james

                  ⚠ The following guide will delete all existing data

                  If you want a quick fix right now - after the installation, put your app into recovery mode.

                  Open the web terminal and delete all data in /app/data/*

                  rm -r /app/data/*
                  

                  In the web terminal drop all tables from the database:

                  mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -Nse 'show tables' | while read table; do mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -e "SET FOREIGN_KEY_CHECKS = 0; drop table \`$table\`"; done
                  

                  Edit the /app/pkg/start.sh and find this section:

                      echo "==> Finish configuration"
                      $curl http://localhost:8000/installer/config/finish
                      $curl http://localhost:8000/installer/config/finished
                  

                  Comment out the two curl statements, it should look like this:

                      echo "==> Finish configuration"
                      # $curl http://localhost:8000/installer/config/finish
                      # $curl http://localhost:8000/installer/config/finished
                  

                  Save and exit the file.

                  Run the start.sh manually with:

                  /app/pkg/start.sh
                  

                  It will run once and exit, after that, run the same command again.

                  /app/pkg/start.sh
                  

                  Now that it is running, visit your Humhub url.
                  You will see the manual setup process:

                  ae13a3df-d71e-446a-a3bc-b9b029c1a6db-image.png

                  After finishing this guided initial setup you can login with admin and changeme and will have all the demo data including the user profile fields.
                  You can turn off the recovery mode now and the app will work as intended.
                  0cc62263-e82d-42f5-944e-4fbe8ef5e70d-image.png

                  S Offline
                  S Offline
                  stoccafisso
                  wrote last edited by
                  #20

                  @james fantastic, thank you. I will try that.

                  Just one question. Will this work well for later updates of the app?

                  jamesJ 1 Reply Last reply
                  1
                  • S stoccafisso

                    @james fantastic, thank you. I will try that.

                    Just one question. Will this work well for later updates of the app?

                    jamesJ Offline
                    jamesJ Offline
                    james
                    Staff
                    wrote last edited by
                    #21

                    @stoccafisso said in Install errors:

                    Will this work well for later updates of the app?

                    I am trying to fix this issue without this dirty hands-on fix.
                    So, if I get this fixed, my quickfix guide is not needed.

                    1 Reply Last reply
                    3
                    • jamesJ james

                      ⚠ The following guide will delete all existing data

                      If you want a quick fix right now - after the installation, put your app into recovery mode.

                      Open the web terminal and delete all data in /app/data/*

                      rm -r /app/data/*
                      

                      In the web terminal drop all tables from the database:

                      mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -Nse 'show tables' | while read table; do mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE} -e "SET FOREIGN_KEY_CHECKS = 0; drop table \`$table\`"; done
                      

                      Edit the /app/pkg/start.sh and find this section:

                          echo "==> Finish configuration"
                          $curl http://localhost:8000/installer/config/finish
                          $curl http://localhost:8000/installer/config/finished
                      

                      Comment out the two curl statements, it should look like this:

                          echo "==> Finish configuration"
                          # $curl http://localhost:8000/installer/config/finish
                          # $curl http://localhost:8000/installer/config/finished
                      

                      Save and exit the file.

                      Run the start.sh manually with:

                      /app/pkg/start.sh
                      

                      It will run once and exit, after that, run the same command again.

                      /app/pkg/start.sh
                      

                      Now that it is running, visit your Humhub url.
                      You will see the manual setup process:

                      ae13a3df-d71e-446a-a3bc-b9b029c1a6db-image.png

                      After finishing this guided initial setup you can login with admin and changeme and will have all the demo data including the user profile fields.
                      You can turn off the recovery mode now and the app will work as intended.
                      0cc62263-e82d-42f5-944e-4fbe8ef5e70d-image.png

                      S Offline
                      S Offline
                      stoccafisso
                      wrote last edited by stoccafisso
                      #22
                      This post is deleted!
                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • Bookmarks
                      • Search