Valet - phpMyAdmin throws 404 not found
Before installing Laravel and Valet on my dev environment (Ubuntu), I had installed PHP 7, MySQL and phpMyAdmin and everything was working fine.
In order to install Valet I had to disable apache2
as Valet was complaining during the instalation and add nginx and follow these steps https://github.com/cpriego/valet-linux/wiki/Requirements:%20Ubuntu
However after the instalation when I try to access the phpMyAdmin through the browser I'm getting the default white page 404 - not found
. How can I fix this?
laravel-5 phpmyadmin laravel-valet
add a comment |
Before installing Laravel and Valet on my dev environment (Ubuntu), I had installed PHP 7, MySQL and phpMyAdmin and everything was working fine.
In order to install Valet I had to disable apache2
as Valet was complaining during the instalation and add nginx and follow these steps https://github.com/cpriego/valet-linux/wiki/Requirements:%20Ubuntu
However after the instalation when I try to access the phpMyAdmin through the browser I'm getting the default white page 404 - not found
. How can I fix this?
laravel-5 phpmyadmin laravel-valet
add a comment |
Before installing Laravel and Valet on my dev environment (Ubuntu), I had installed PHP 7, MySQL and phpMyAdmin and everything was working fine.
In order to install Valet I had to disable apache2
as Valet was complaining during the instalation and add nginx and follow these steps https://github.com/cpriego/valet-linux/wiki/Requirements:%20Ubuntu
However after the instalation when I try to access the phpMyAdmin through the browser I'm getting the default white page 404 - not found
. How can I fix this?
laravel-5 phpmyadmin laravel-valet
Before installing Laravel and Valet on my dev environment (Ubuntu), I had installed PHP 7, MySQL and phpMyAdmin and everything was working fine.
In order to install Valet I had to disable apache2
as Valet was complaining during the instalation and add nginx and follow these steps https://github.com/cpriego/valet-linux/wiki/Requirements:%20Ubuntu
However after the instalation when I try to access the phpMyAdmin through the browser I'm getting the default white page 404 - not found
. How can I fix this?
laravel-5 phpmyadmin laravel-valet
laravel-5 phpmyadmin laravel-valet
asked Jun 15 '17 at 10:47
LykosLykos
1,40393570
1,40393570
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You have parked your workspace directory using
valet park
Clone the phpmyadmin repository using
git clone https://github.com/phpmyadmin/phpmyadmin --depth=1
cd phpmyadmin
composer install
In the same directory just download phpmyadmin
package & extract it. You will be able to access it from
http://phpmyadmin.dev
By "download phpmyadmin package & extract it" you mean run again$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?
– Lykos
Jun 15 '17 at 10:54
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
1
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
add a comment |
If you have phpmyadmin already installed from your last setup, you don't have to download it & install it again.
I was facing the same thing migrating to valet from lamp, this is what I did:
1- Navigate to original phpmyadmin folder
cd /usr/share/phpmyadmin
2- Then add a link to valet
valet link
Hooray! you can now access it at: phpmyadmin.test
add a comment |
I tried this and it failed to work for me, I found a workaround, check the link for my solution: https://stackoverflow.com/a/47211246/8768078
add a comment |
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%2f44565541%2fvalet-phpmyadmin-throws-404-not-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You have parked your workspace directory using
valet park
Clone the phpmyadmin repository using
git clone https://github.com/phpmyadmin/phpmyadmin --depth=1
cd phpmyadmin
composer install
In the same directory just download phpmyadmin
package & extract it. You will be able to access it from
http://phpmyadmin.dev
By "download phpmyadmin package & extract it" you mean run again$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?
– Lykos
Jun 15 '17 at 10:54
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
1
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
add a comment |
You have parked your workspace directory using
valet park
Clone the phpmyadmin repository using
git clone https://github.com/phpmyadmin/phpmyadmin --depth=1
cd phpmyadmin
composer install
In the same directory just download phpmyadmin
package & extract it. You will be able to access it from
http://phpmyadmin.dev
By "download phpmyadmin package & extract it" you mean run again$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?
– Lykos
Jun 15 '17 at 10:54
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
1
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
add a comment |
You have parked your workspace directory using
valet park
Clone the phpmyadmin repository using
git clone https://github.com/phpmyadmin/phpmyadmin --depth=1
cd phpmyadmin
composer install
In the same directory just download phpmyadmin
package & extract it. You will be able to access it from
http://phpmyadmin.dev
You have parked your workspace directory using
valet park
Clone the phpmyadmin repository using
git clone https://github.com/phpmyadmin/phpmyadmin --depth=1
cd phpmyadmin
composer install
In the same directory just download phpmyadmin
package & extract it. You will be able to access it from
http://phpmyadmin.dev
edited Sep 25 '17 at 3:58
answered Jun 15 '17 at 10:52
GaneshGanesh
974819
974819
By "download phpmyadmin package & extract it" you mean run again$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?
– Lykos
Jun 15 '17 at 10:54
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
1
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
add a comment |
By "download phpmyadmin package & extract it" you mean run again$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?
– Lykos
Jun 15 '17 at 10:54
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
1
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
By "download phpmyadmin package & extract it" you mean run again
$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?– Lykos
Jun 15 '17 at 10:54
By "download phpmyadmin package & extract it" you mean run again
$ sudo apt-get install phpmyadmin php-mbstring php-gettext
, right ?– Lykos
Jun 15 '17 at 10:54
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
No. Download it from github & extract it.
– Ganesh
Jun 15 '17 at 10:58
1
1
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
after cloning I have to run composer install command to make this work
– Abdul Rehman
Sep 24 '17 at 12:36
add a comment |
If you have phpmyadmin already installed from your last setup, you don't have to download it & install it again.
I was facing the same thing migrating to valet from lamp, this is what I did:
1- Navigate to original phpmyadmin folder
cd /usr/share/phpmyadmin
2- Then add a link to valet
valet link
Hooray! you can now access it at: phpmyadmin.test
add a comment |
If you have phpmyadmin already installed from your last setup, you don't have to download it & install it again.
I was facing the same thing migrating to valet from lamp, this is what I did:
1- Navigate to original phpmyadmin folder
cd /usr/share/phpmyadmin
2- Then add a link to valet
valet link
Hooray! you can now access it at: phpmyadmin.test
add a comment |
If you have phpmyadmin already installed from your last setup, you don't have to download it & install it again.
I was facing the same thing migrating to valet from lamp, this is what I did:
1- Navigate to original phpmyadmin folder
cd /usr/share/phpmyadmin
2- Then add a link to valet
valet link
Hooray! you can now access it at: phpmyadmin.test
If you have phpmyadmin already installed from your last setup, you don't have to download it & install it again.
I was facing the same thing migrating to valet from lamp, this is what I did:
1- Navigate to original phpmyadmin folder
cd /usr/share/phpmyadmin
2- Then add a link to valet
valet link
Hooray! you can now access it at: phpmyadmin.test
answered Nov 26 '18 at 15:47
KashKash
100210
100210
add a comment |
add a comment |
I tried this and it failed to work for me, I found a workaround, check the link for my solution: https://stackoverflow.com/a/47211246/8768078
add a comment |
I tried this and it failed to work for me, I found a workaround, check the link for my solution: https://stackoverflow.com/a/47211246/8768078
add a comment |
I tried this and it failed to work for me, I found a workaround, check the link for my solution: https://stackoverflow.com/a/47211246/8768078
I tried this and it failed to work for me, I found a workaround, check the link for my solution: https://stackoverflow.com/a/47211246/8768078
answered Nov 9 '17 at 20:50
samtoyasamtoya
375
375
add a comment |
add a comment |
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%2f44565541%2fvalet-phpmyadmin-throws-404-not-found%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