where should phpmyadmin folder be saved?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
apache, mysql and phpmyadmin tutorial and the tutorial suggests to navigate to localhost/phpmyadmin/setup, however this gives me "the site cannot be reached" in the browser.
I have already ran "sudo apachectl start"
I think this is likely that I have phpmyadmin saved in the wrong folder but the tutorial doesn't explain which folder to save it in, so I currently have it in a downloads folder.
Can anyone tell me where to move phpmyadmin folder and how to get it to work
edit: I am using mac os x
phpmyadmin
add a comment |
apache, mysql and phpmyadmin tutorial and the tutorial suggests to navigate to localhost/phpmyadmin/setup, however this gives me "the site cannot be reached" in the browser.
I have already ran "sudo apachectl start"
I think this is likely that I have phpmyadmin saved in the wrong folder but the tutorial doesn't explain which folder to save it in, so I currently have it in a downloads folder.
Can anyone tell me where to move phpmyadmin folder and how to get it to work
edit: I am using mac os x
phpmyadmin
add a comment |
apache, mysql and phpmyadmin tutorial and the tutorial suggests to navigate to localhost/phpmyadmin/setup, however this gives me "the site cannot be reached" in the browser.
I have already ran "sudo apachectl start"
I think this is likely that I have phpmyadmin saved in the wrong folder but the tutorial doesn't explain which folder to save it in, so I currently have it in a downloads folder.
Can anyone tell me where to move phpmyadmin folder and how to get it to work
edit: I am using mac os x
phpmyadmin
apache, mysql and phpmyadmin tutorial and the tutorial suggests to navigate to localhost/phpmyadmin/setup, however this gives me "the site cannot be reached" in the browser.
I have already ran "sudo apachectl start"
I think this is likely that I have phpmyadmin saved in the wrong folder but the tutorial doesn't explain which folder to save it in, so I currently have it in a downloads folder.
Can anyone tell me where to move phpmyadmin folder and how to get it to work
edit: I am using mac os x
phpmyadmin
phpmyadmin
edited Jul 9 '17 at 5:27
mohammad chughtai
asked Jul 9 '17 at 5:02
mohammad chughtaimohammad chughtai
244313
244313
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
FIrst, you have to find your web root folder. This is the folder where files are being served. Typically on a Linux system, it will be /var/www/
but it depends on the Linux distribution you're using and the specific configuration you have. Once you have figured out the root directory of your website, simply add a directory called phpmyadmin
. So in the typical case, you now have /var/www/phpmyadmin
To find the web directory, it is referred to as DocumentRoot
in apache's configuration file.
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%2f44993151%2fwhere-should-phpmyadmin-folder-be-saved%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
FIrst, you have to find your web root folder. This is the folder where files are being served. Typically on a Linux system, it will be /var/www/
but it depends on the Linux distribution you're using and the specific configuration you have. Once you have figured out the root directory of your website, simply add a directory called phpmyadmin
. So in the typical case, you now have /var/www/phpmyadmin
To find the web directory, it is referred to as DocumentRoot
in apache's configuration file.
add a comment |
FIrst, you have to find your web root folder. This is the folder where files are being served. Typically on a Linux system, it will be /var/www/
but it depends on the Linux distribution you're using and the specific configuration you have. Once you have figured out the root directory of your website, simply add a directory called phpmyadmin
. So in the typical case, you now have /var/www/phpmyadmin
To find the web directory, it is referred to as DocumentRoot
in apache's configuration file.
add a comment |
FIrst, you have to find your web root folder. This is the folder where files are being served. Typically on a Linux system, it will be /var/www/
but it depends on the Linux distribution you're using and the specific configuration you have. Once you have figured out the root directory of your website, simply add a directory called phpmyadmin
. So in the typical case, you now have /var/www/phpmyadmin
To find the web directory, it is referred to as DocumentRoot
in apache's configuration file.
FIrst, you have to find your web root folder. This is the folder where files are being served. Typically on a Linux system, it will be /var/www/
but it depends on the Linux distribution you're using and the specific configuration you have. Once you have figured out the root directory of your website, simply add a directory called phpmyadmin
. So in the typical case, you now have /var/www/phpmyadmin
To find the web directory, it is referred to as DocumentRoot
in apache's configuration file.
answered Jul 9 '17 at 5:08
ChMoChMo
363
363
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%2f44993151%2fwhere-should-phpmyadmin-folder-be-saved%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