PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Question By
Solved
Solved
cyberekklesia

Oct 3rd, 2022 12:03 PM

On a new Wave installation ("laravel/framework": "^9.11", "php": "^8.0.2"), the Wave Admin's Profile Settings isn't working properly - no errors shown - no code was added. It doesn't save profile changes, and doesn't shows the "Success" message at the top. Note: The only change made before Migration was 'engine' => 'InnoDB ROW_FORMAT=DYNAMIC' on database.php. Otherwise, Migration shows an error.

On the same environment, in another VirtualHost, I have an older Wave version ("laravel/framework": "^8.0", "php": "^7.3|^8.0") and works okay. It accept and saves Profile Settings changes. It shows the "Success" message at the top.

I'm using Wampserver 3.2.6 - 64bit, Apache 2.4.51, PHP 8.1, MySQL 5.7.36, MariaDB 10.6.5.

Any ideas?

P.S: I have tried new installation many times.

bobbyiliev

Oct 4th, 2022 01:45 AM

Best Answer

Hi there,

Thank you for reporting this problem!

To fix this update line 29 in the wave/src/Http/Controllers/SettingsController.php file and add nullable to the avatar validation, eg:

            'avatar' => 'nullable|base64image'

I will submit a PR with a fix for this.

Let me know if you notice any other problems.

Report
1
cyberekklesia

Oct 4th, 2022 08:31 AM

Thank you bobby!

That fixed the issue. Also, I copied my profile_fields and works too!

bobbyiliev

Oct 4th, 2022 08:35 AM

No problem at all! Happy to hear that it is all working!

Report
1