40 questions from the last 7 days
-3
votes
0
answers
17
views
I need this audio plsyer . what player is this [closed]
site :https://onlineradiofm.in/stations/vividh-bharati
I need this audio player for my fm radio site . What is this player script and name . Where do i get it? Thank you for your help
if only Euuph ...
0
votes
0
answers
56
views
Bug with @foreach loop in Laravel 12.x + Livewire 3.6
I am using Laravel v12 with Filament v4 and TailwindCSS v4.
I wanted to build a site with tabs, witch are a Livewire component inside filament/Page. In this Livewire components I have 3 tabs, where ...
-2
votes
0
answers
81
views
How to remove unused JavaScript and CSS files from my website? [closed]
I’m trying to improve my website performance and Google PageSpeed Insights shows that many JavaScript and CSS files are unused or partially unused.
I want to remove or disable these unnecessary files, ...
0
votes
0
answers
27
views
Deploying a localized Laravel app using Dokku
I am using the laravel-localization package to localize my Laravel app. It works perfectly normal on local enviroment (using php artisan serve) and on shared hosting with Apache.
I've just deployed it ...
1
vote
0
answers
23
views
Show a success message after deletion from nova resource
<?php
namespace App\Nova;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use Laravel\Nova\Actions\Action;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Http\Requests\NovaRequest;
...
1
vote
1
answer
40
views
Impact of PHP_FCGI_MAX_REQUESTS with lighttpd 1.4.80 and php-cgi
I’m running lighttpd 1.4.80 with PHP via FastCGI (php-cgi, not php-fpm).
The page Optimizing FastCGI performance says:
there is a potential race condition during the PHP cleanup code in which PHP can ...
-1
votes
0
answers
43
views
VS code treats the address C://php.exe as h:/web/c:/php.exe
I installed the PHP Server extension for VS Code and added two lines to settings.json:
"php.validate.executablePath": "С://php-server//php.exe",
"phpserver.phpPath": &...
0
votes
0
answers
47
views
Wordpress capabilities - give Editor the ability to replace the Site Logo?
I've created a custom Wordpress role to extend the capabilities of the Editor role. I want to give users the ability to change the site appearance as needed without providing full admin rights.
The ...
0
votes
0
answers
57
views
Vue/Laravel - CSRF token mismatch
on Vue-Laravel-based environment,CSRF token is initialized server-side -non-sanctum, one token per run-:
routes/web.php
Route::get('csrf-token' , function(){
$token = csrf_token();
return response()-...
-3
votes
0
answers
44
views
Why isn't my custom font working with mPDF? [closed]
I already know the solution, but I thought I'd post it here in case anyone else has the same issue.
My marketing department asked me to embed a custom font into my PDFs generated with mPDF. I followed ...
5
votes
1
answer
68
views
CloudKit Web Services Server-to-server Authentication failed using PHP
I've been trying to get the server to server request for quite some time, but unfortunately
I keep getting this error:
2025-11-19T03:19:29Z:"mybody":/database/1/"mycontainer"/...
Best practices
0
votes
11
replies
111
views
How does a recursive function work in PHP?
Edit: How does this recursive call play out, why is i = 1, even though the function fires 3 times ?
Doesn't the function reach the if statement -> fires -> (this repeats 3 times) then reaches ...
Advice
0
votes
3
replies
62
views
Symfony monolog add additional info to all logs
I need to add trackability information for all logs.
E.g. logged in user and route parameters (entity ID)
Right now I have this code:
use Monolog\Processor\ProcessorInterface;
class RequestProcessor ...
4
votes
1
answer
180
views
Javascript interface not downloading IMAP attachments through PHP
I have a webpage in PHP that lets me access an IMAP account. I can fetch the messages fine. But, when I go to download attachments, Firefox opens the download dialog, but immediately after pops an ...
1
vote
0
answers
34
views
Magento 2 SSO Login: “login_redirect” cookie created on first login, forcing repeated login on checkout
I’m integrating a custom SAML-based SSO module with Magento 2.
The SSO login works, but I’m facing an issue specifically during the first login after the user arrives via SSO
After SSO login, when the ...
-1
votes
0
answers
47
views
PHP 8 / MAMP: Restored project gives Internal Server Error and php_mysqli.dll warnings after git pull [closed]
I'm working on a PHP project on MAMP (Windows, PHP 8.3). Everything was working fine until I did a git pull. After restoring some files from an older commit using git checkout, my project now gives a ...
0
votes
0
answers
64
views
Laravel - php artisan migrate [closed]
BadMethodCallException
Method Illuminate\Database\MySqlConnection::getDoctrineConnection does not exist.
at vendor\laravel\framework\src\Illuminate\Macroable\Traits\Macroable.php:115
111▕ ...
-3
votes
0
answers
89
views
API returns nothing [closed]
I made an API together with a form to return recipes based on a specific ingredient, but it doesn’t return anything except array() in the echo.
form.php
<?php
<head>
<meta charset=&...
Advice
0
votes
2
replies
52
views
(WordPress) Execute SQL Query in specific product purchase
i would like to execute a SQL Query after specific product bein purchased, any solution to that ?
Its about a "Tokens" currency that people can use in my software but first You have to ...
3
votes
1
answer
76
views
Laravel Service Container: Am I doing the right thing?
I have an invokable action class called: AttachMembersToRoom . Now, aside from basic form request validations, I also have complex validation, like comparing values across members, identify ...