i dont know why i cant change profile picture, show like this:

my php flarum info:

    luceos how to do that? btw i get notice to migrate to carbon 2

      maruco btw i get notice to migrate to carbon 2

      You can ignore that.

      maruco how to do that?

      Screen capture or copy paste what you see when you look at your flarum installation through FTP or SSH, with SSH use ls -la.

      Can you run ls -la public/assets?

      maruco there are too many character, cant post all in this

      The problem is that your flarum installation runs under the user www-data, but you have been running php flarum commands as akmal, as a result some files are owned by you and cannot be deleted by Flarum. Do the following:

      sudo rm -rf public/assets/*.css public/assets/*.js*
      ls -la public/assets

      List the output again.

      Yes but now we can at least see what is wrong 😁

      The issue is that the avatars, extensions, files and fonts folder is owned by you (probably due to the installation). Here's what you need to do:

      sudo chown -R www-data: public/assets

      Your forum should work again.

        3 months later