Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS/JS not loading while working with AssetMapper #630

Open
antoniovj1 opened this issue May 27, 2024 · 0 comments
Open

CSS/JS not loading while working with AssetMapper #630

antoniovj1 opened this issue May 27, 2024 · 0 comments

Comments

@antoniovj1
Copy link

I found that using AssetMapper create problems with panther because files are not served.

You can solve it by creating a router.php:

<?php

if (is_file($_SERVER['DOCUMENT_ROOT'].\DIRECTORY_SEPARATOR.$_SERVER['SCRIPT_NAME'])) {
    return false;
}

$script = 'index.php';

$_SERVER = array_merge($_SERVER, $_ENV);
$_SERVER['SCRIPT_FILENAME'] = $_SERVER['DOCUMENT_ROOT'].\DIRECTORY_SEPARATOR.$script;

$_SERVER['SCRIPT_NAME'] = \DIRECTORY_SEPARATOR.$script;
$_SERVER['PHP_SELF'] = \DIRECTORY_SEPARATOR.$script;

require $script;

Should we document it?

Credits: https://symfonycasts.com/screencast/last-stack/testing

javiereguiluz added a commit to symfony/symfony-docs that referenced this issue Oct 14, 2024
…ing with Panther. (WedgeSama)

This PR was merged into the 6.4 branch.

Discussion
----------

[AssetMapper] Add info about troubleshooting assets loading with Panther.

Add more info on Panther tests due to PHP built in server.

When a requested URI is not a `.php` file nor a directory, the built in server will try to directly server the corresponding "file". But if the file does not exist AND must be handle by Symfony app, the built in server just return a 404.

- Can happen with any requested URI that look like a non `.php` file
- Case can happen with AssetMapper.

see
symfony/panther#630
https://symfonycasts.com/screencast/last-stack/testing#debugging-by-opening-the-browser
https://www.php.net/manual/en/features.commandline.webserver.php

Commits
-------

f2a68b5 Add info about troubleshooting assets loading with Panther. - Can happen with any requested uri that look like a non `.php` file - Case can happen with AssetMapper.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant