Valet on macOS shows incorrect directory listing and PHP code Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?Laravel valet linked php errorLaravel Valet. Showing all folders in the localhostLaravel/Valet, how to run a project with php < 7Laravel valet park shows XAMPP main pageValet Stopped Working after macOS High Sierra Upgrade from macOS Sierrainstalling larval valet in macOS Heigh SierraStrange Laravel/VALET node_modules error on scratch setup MacOS SierraValet showing files under wrong UrlProject Specific PHP Error Log in Laravel ValetEnable directory listing on valet installed server
"Seemed to had" is it correct?
What causes the vertical darker bands in my photo?
What is this single-engine low-wing propeller plane?
Can Pao de Queijo, and similar foods, be kosher for Passover?
What happens to sewage if there is no river near by?
Is there a "higher Segal conjecture"?
What would be the ideal power source for a cybernetic eye?
Why did the IBM 650 use bi-quinary?
Is there a Spanish version of "dot your i's and cross your t's" that includes the letter 'ñ'?
Models of set theory where not every set can be linearly ordered
I am not a queen, who am I?
Why constant symbols in a language?
Can a non-EU citizen traveling with me come with me through the EU passport line?
Single word antonym of "flightless"
Did Xerox really develop the first LAN?
How do I stop a creek from eroding my steep embankment?
What are the motives behind Cersei's orders given to Bronn?
What LEGO pieces have "real-world" functionality?
Letter Boxed validator
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
What makes black pepper strong or mild?
Does surprise arrest existing movement?
Why aren't air breathing engines used as small first stages
When to stop saving and start investing?
Valet on macOS shows incorrect directory listing and PHP code
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?Laravel valet linked php errorLaravel Valet. Showing all folders in the localhostLaravel/Valet, how to run a project with php < 7Laravel valet park shows XAMPP main pageValet Stopped Working after macOS High Sierra Upgrade from macOS Sierrainstalling larval valet in macOS Heigh SierraStrange Laravel/VALET node_modules error on scratch setup MacOS SierraValet showing files under wrong UrlProject Specific PHP Error Log in Laravel ValetEnable directory listing on valet installed server
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have set up Valet
for macOS without erros.
I have created a folder for my sites ~/ValetSites
.
I execute:
valet park
Then, I create a new blog application:
laravel new blog
The problem is that on the browser I see the directory listing of the sites folder as ~/ValetSites/blog
.
When I hit http://blog.test/index.php
, I get the PHP source code of the index.php
file.
I think the problem is located here
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
in httpd.conf.
This change is suggested after upgrade form php5.7 to 7.3
To enable PHP in Apache add the following to httpd.conf and restart Apache:
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
<FilesMatch .php$>
SetHandler application/x-httpd-php
</FilesMatch>
Finally, check DirectoryIndex includes index.php
DirectoryIndex index.php index.html
The php.ini and php-fpm.ini file can be found in:
/usr/local/etc/php/7.3/
To have launchd start php now and restart at login:
brew services start php
Or, if you don't want/need a background service you can just run:
php-fpm
Any help would be appreciated.
laravel-valet
add a comment |
I have set up Valet
for macOS without erros.
I have created a folder for my sites ~/ValetSites
.
I execute:
valet park
Then, I create a new blog application:
laravel new blog
The problem is that on the browser I see the directory listing of the sites folder as ~/ValetSites/blog
.
When I hit http://blog.test/index.php
, I get the PHP source code of the index.php
file.
I think the problem is located here
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
in httpd.conf.
This change is suggested after upgrade form php5.7 to 7.3
To enable PHP in Apache add the following to httpd.conf and restart Apache:
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
<FilesMatch .php$>
SetHandler application/x-httpd-php
</FilesMatch>
Finally, check DirectoryIndex includes index.php
DirectoryIndex index.php index.html
The php.ini and php-fpm.ini file can be found in:
/usr/local/etc/php/7.3/
To have launchd start php now and restart at login:
brew services start php
Or, if you don't want/need a background service you can just run:
php-fpm
Any help would be appreciated.
laravel-valet
add a comment |
I have set up Valet
for macOS without erros.
I have created a folder for my sites ~/ValetSites
.
I execute:
valet park
Then, I create a new blog application:
laravel new blog
The problem is that on the browser I see the directory listing of the sites folder as ~/ValetSites/blog
.
When I hit http://blog.test/index.php
, I get the PHP source code of the index.php
file.
I think the problem is located here
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
in httpd.conf.
This change is suggested after upgrade form php5.7 to 7.3
To enable PHP in Apache add the following to httpd.conf and restart Apache:
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
<FilesMatch .php$>
SetHandler application/x-httpd-php
</FilesMatch>
Finally, check DirectoryIndex includes index.php
DirectoryIndex index.php index.html
The php.ini and php-fpm.ini file can be found in:
/usr/local/etc/php/7.3/
To have launchd start php now and restart at login:
brew services start php
Or, if you don't want/need a background service you can just run:
php-fpm
Any help would be appreciated.
laravel-valet
I have set up Valet
for macOS without erros.
I have created a folder for my sites ~/ValetSites
.
I execute:
valet park
Then, I create a new blog application:
laravel new blog
The problem is that on the browser I see the directory listing of the sites folder as ~/ValetSites/blog
.
When I hit http://blog.test/index.php
, I get the PHP source code of the index.php
file.
I think the problem is located here
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
in httpd.conf.
This change is suggested after upgrade form php5.7 to 7.3
To enable PHP in Apache add the following to httpd.conf and restart Apache:
LoadModule php7_module /usr/local/opt/php/lib/httpd/modules/libphp7.so
<FilesMatch .php$>
SetHandler application/x-httpd-php
</FilesMatch>
Finally, check DirectoryIndex includes index.php
DirectoryIndex index.php index.html
The php.ini and php-fpm.ini file can be found in:
/usr/local/etc/php/7.3/
To have launchd start php now and restart at login:
brew services start php
Or, if you don't want/need a background service you can just run:
php-fpm
Any help would be appreciated.
laravel-valet
laravel-valet
edited Mar 22 at 8:49
ntan
asked Mar 22 at 8:27
ntanntan
1,16272749
1,16272749
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295584%2fvalet-on-macos-shows-incorrect-directory-listing-and-php-code%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295584%2fvalet-on-macos-shows-incorrect-directory-listing-and-php-code%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown