unknown error about a file that doesn't even exist in Laravel logs..

Hello, i'm remaking my blueprint extention and i'm completelly stuck on what seem to be a no sensical error from laravel, here take a look: production.ERROR: View [blueprint.admin.wrappers.soundx] not found. (View: /var/www/pterodactyl/resources/views/blueprint/admin/admin.blade.php) (View: /var/www/pterodactyl/resources/views/blueprint/admin/admin.blade.php) (View: /var/www/pterodactyl/resources/views/blueprint/admin/admin.blade.php) {"userId":1,"exception":"[object] (Illuminate\View\ViewException(code: 0): View [blueprint.admin.wrappers.soundx] not found. (View: /var/www/pterodactyl/resources/views/blueprint/admin/admin.blade.php) (View: /var/www/pterodactyl/resources/views/blueprint/admin/admin.blade.php) (View: /var/www/pterodactyl/resources/views/blueprint/admin/admin.blade.php) at /var/www/pterodactyl/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137) I have absolutely no wrapper in the config nor anywhere else, and no files or string like blueprint.admin.wrappers.soundx can be found anywhere in my codebase, what do i do, thx
7 Replies
DarkDeception
DarkDeceptionOP2mo ago
And as i do not know if i need to give any more info or anything, just ask me for them and i'll provide if required
Lara
Lara2mo ago
It's failing to find the php wrapper for the soundx extension I'm thinking it's a fucked up symlink probably
DarkDeception
DarkDeceptionOP2mo ago
yeahh, ik, but the thing is that i cannot find anything related to it anywhere most probably because i changed the codebase but now the problem is how do i even fix this
Lara
Lara2mo ago
Remove the symlink should be the only thing you have to do
DarkDeception
DarkDeceptionOP2mo ago
yeah, but how do i even find it
Lara
Lara2mo ago
It's hard to explain as usually I fix blueprint issues by pure guesswork
DarkDeception
DarkDeceptionOP2mo ago
i did a find command with the name soundx and nothing like that game up already i finally found the symlink after running this command (thanks termius autocomplete, once again a life saver) find / -type l \( -name "*wrapper*" -o -name "*soundx*" \) 2>/dev/null

Did you find this page helpful?