stanwarri
stanwarri
FFilament
Created by abdullafahem on 2/4/2024 in #❓┊help
The POST method is not supported for route login. Supported methods: GET, HEAD.
It was my Nginx configuration that was causing the issue. You may start by looking into that first
21 replies
FFilament
Created by abdullafahem on 2/4/2024 in #❓┊help
The POST method is not supported for route login. Supported methods: GET, HEAD.
I'm actually using DO via Laravel Forge for deployment. I believe Forge handles all that, and this isn't actually my first deployment
21 replies
FFilament
Created by abdullafahem on 2/4/2024 in #❓┊help
The POST method is not supported for route login. Supported methods: GET, HEAD.
@Abdulla Fahem Did you find a solution?
21 replies
FFilament
Created by abdullafahem on 2/4/2024 in #❓┊help
The POST method is not supported for route login. Supported methods: GET, HEAD.
I'm currently experiencing this problem after I updated to the latest version of Filament today. Have tried route:cache & route:clear, still no positive outcome. Has anyone been able to find a solution to this? BTW, this only happens in production
21 replies
FFilament
Created by stanwarri on 1/18/2024 in #❓┊help
Conditional Redirect for Resource Pages
I was able to hook into the beforeFill() for the createRecord page. However, I don't know where to hook into for ListingPage
3 replies
FFilament
Created by stanwarri on 8/6/2023 in #❓┊help
Using Custom Login Route for all Panels
No, I haven't been able to find a solution to this. What have you tried?
17 replies
FFilament
Created by stanwarri on 1/3/2024 in #❓┊help
resetPage does not exist on custom page
Thanks for the heads up. Now I see why you're asking if I was using table
11 replies
FFilament
Created by stanwarri on 1/3/2024 in #❓┊help
resetPage does not exist on custom page
Thanks for your support. I was able to figure it out. resetPage() method is only available in the Livewire\WithPagination trait.
11 replies
FFilament
Created by stanwarri on 1/3/2024 in #❓┊help
resetPage does not exist on custom page
I have custom filters, and I when a filter is selected, I want to update the results shown on the page.
11 replies
FFilament
Created by stanwarri on 1/3/2024 in #❓┊help
resetPage does not exist on custom page
No, I’m not using table but forms
11 replies
FFilament
Created by stanwarri on 12/28/2023 in #❓┊help
Auth guard [] is not defined.
Thanks @DrByte and @Dennis Koch for your contribution. I have found the issue. When I was in v2, I have Horizon and Telescope setup locally, and in their service provider, I have this block of code which was referencing the old filament config
protected function authorization()
{
Auth::setDefaultDriver(config('filament.auth.guard'));

parent::authorization();
}
protected function authorization()
{
Auth::setDefaultDriver(config('filament.auth.guard'));

parent::authorization();
}
Removing it solved the issue
7 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
Still didn't work. For context, I'm implementing this on a subdomain. I'm beginning to think the issue has to do with session configuration
17 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
Thanks for sending this. I will give it a try and let you know how it goes. It is similar to my existing implimentation already, but I might be missing one or two things
17 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
No description
17 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
I actually did this dd(Filament::auth()->login($user, true)). Also it returns null Also dd(session()->regenerate()) returns true
17 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
I already have the controller that handles the link.
public function __invoke(string $key, bool $remember = false): LoginResponse
{
$user = app(Passwordless::class)->getUserById($key);

Filament::login($user, true);

session()->regenerate();

return app(LoginResponse::class);
}
public function __invoke(string $key, bool $remember = false): LoginResponse
{
$user = app(Passwordless::class)->getUserById($key);

Filament::login($user, true);

session()->regenerate();

return app(LoginResponse::class);
}
Instead of redirecting to the dashboard from here, it takes me back to the login page
17 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
I'm currently doing the same but running into an issue when I'm redirected back to the login page after clicking on the sent link. Will you be able to share with me some of your processes?
17 replies
FFilament
Created by DrByte on 9/30/2023 in #❓┊help
Password-less login via email link ... in v3
Were you able to get this working @DrByte ?
17 replies
FFilament
Created by stanwarri on 11/30/2023 in #❓┊help
Filament Upgrade Composer Error
@DrByte Thanks for your response. I actually tried a fresh install of Laravel yesterday and got the same error. Not sure if it's a composer global thing
9 replies
FFilament
Created by stanwarri on 11/30/2023 in #❓┊help
Filament Upgrade Composer Error
This is the error I'm currently having with my project
Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.2.0". You are running 8.1.18. in /Users/myprojects/code/lifebank/vendor/composer/platform_check.php on line 24
Fatal error: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.2.0". You are running 8.1.18. in /Users/myprojects/code/lifebank/vendor/composer/platform_check.php on line 24
9 replies