http://localhost/phpmyadmin/ shows html codes instead of login page on windows [on hold] ...
How to use @AuraEnabled base class method in Lightning Component?
Is Diceware more secure than a long passphrase?
Is it OK if I do not take the receipt in Germany?
What's parked in Mil Moscow helicopter plant?
What was Apollo 13's "Little Jolt" after MECO?
Are all CP/M-80 implementations binary compatible?
How to translate "red flag" into Spanish?
Is a 5 watt UHF/VHF handheld considered QRP?
Passing args from the bash script to the function in the script
How to count in linear time worst-case?
What is the least dense liquid under normal conditions?
How to avoid introduction cliches
Co-worker works way more than he should
Multiple options vs single option UI
Error: Syntax error. Missing ')' for CASE Statement
How to open locks without disable device?
Is accepting an invalid credit card number a security issue?
Will I lose my paid in full property
What is a 'Key' in computer science?
c++ diamond problem - How to call base method only once
Raising a bilingual kid. When should we introduce the majority language?
PIC mathematical operations weird problem
How can I wire a 9-position switch so that each position turns on one more LED than the one before?
The art of proof summarizing. Are there known rules, or is it a purely common sense matter?
http://localhost/phpmyadmin/ shows html codes instead of login page on windows [on hold]
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraIIS7 unchecked in windows component list yet when go to http://localhost still directs me to IIS7. How to get to Apache?Apache virtual host shows “index of” page instead of websitecannot access localhost/phpmyadmin on windows 7 VMhttp://localhost/phpmyadmin/index.php “Says site can’t be reached”. Apache fail to start
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
so I installed apache server and php server but I cannot enter to phpmyadmin. When I try to enter it shows me html codes instead of phpmyadmin login page.
My apache server and php server working well I dont know what the problem is
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Main loader script
*
* @package PhpMyAdmin
*/
use PhpMyAdminCharsets;
use PhpMyAdminConfig;
use PhpMyAdminCore;
use PhpMyAdminDisplayGitRevision;
use PhpMyAdminLanguageManager;
use PhpMyAdminMessage;
use PhpMyAdminRecentFavoriteTable;
use PhpMyAdminRelation;
use PhpMyAdminResponse;
use PhpMyAdminSanitize;
use PhpMyAdminServerSelect;
use PhpMyAdminThemeManager;
use PhpMyAdminUrl;
use PhpMyAdminUtil;
use PhpMyAdminUserPreferences;
/**
* Gets some core libraries and displays a top message if required
*/
require_once 'libraries/common.inc.php';
/**
* pass variables to child pages
*/
$drops = array(
'lang',
'server',
'collation_connection',
'db',
'table'
);
foreach ($drops as $each_drop) {
if (array_key_exists($each_drop, $_GET)) {
unset($_GET[$each_drop]);
}
}
unset($drops, $each_drop);
apache-http-server php mysql phpmyadmin
New contributor
put on hold as unclear what you're asking by DavidPostill♦ 14 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
add a comment |
so I installed apache server and php server but I cannot enter to phpmyadmin. When I try to enter it shows me html codes instead of phpmyadmin login page.
My apache server and php server working well I dont know what the problem is
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Main loader script
*
* @package PhpMyAdmin
*/
use PhpMyAdminCharsets;
use PhpMyAdminConfig;
use PhpMyAdminCore;
use PhpMyAdminDisplayGitRevision;
use PhpMyAdminLanguageManager;
use PhpMyAdminMessage;
use PhpMyAdminRecentFavoriteTable;
use PhpMyAdminRelation;
use PhpMyAdminResponse;
use PhpMyAdminSanitize;
use PhpMyAdminServerSelect;
use PhpMyAdminThemeManager;
use PhpMyAdminUrl;
use PhpMyAdminUtil;
use PhpMyAdminUserPreferences;
/**
* Gets some core libraries and displays a top message if required
*/
require_once 'libraries/common.inc.php';
/**
* pass variables to child pages
*/
$drops = array(
'lang',
'server',
'collation_connection',
'db',
'table'
);
foreach ($drops as $each_drop) {
if (array_key_exists($each_drop, $_GET)) {
unset($_GET[$each_drop]);
}
}
unset($drops, $each_drop);
apache-http-server php mysql phpmyadmin
New contributor
put on hold as unclear what you're asking by DavidPostill♦ 14 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Umm.. nobody is going to (and shouldn't) visit an unknown link like that. Include a screenshot instead please. A few possibilities are that phpmyadmin was not installed, you are behind a firewall, or your server wasn't properly set up. Please provide more details
– Eric F
14 hours ago
hmm sorry...As I am a new around here I couldnt embed a ss to the post. I edited and put a sample of the error that I'm taking
– Sait POSTACI
12 hours ago
It shows me [PHP] code instead of the phpmyadmin login page. -- However you set things up, Apache is not processing the PHP in the script. Essentially, it sounds as if you need to double check your setup between PHP and Apache. This could technically be a "directory" issue (e.g. the folder PHPMyAdmin is in isn't a folder designated for scripts) or a broader issue (e.g. PHP isn't registered with Apache correctly at all). That said, you should also clarify what you mean by "Apache server and PHP server". Is "PHP server" just PHP? Or is it another program? Do other PHP scripts work then?
– Anaksunaman
12 hours ago
okay I just found out that other php scripts doesnt work either I used {<?php phpinfo();?>}this script to check my php info but it showed me the exactly same thing when try to execute this script via localhost.Think I have to figure out this problem first
– Sait POSTACI
11 hours ago
add a comment |
so I installed apache server and php server but I cannot enter to phpmyadmin. When I try to enter it shows me html codes instead of phpmyadmin login page.
My apache server and php server working well I dont know what the problem is
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Main loader script
*
* @package PhpMyAdmin
*/
use PhpMyAdminCharsets;
use PhpMyAdminConfig;
use PhpMyAdminCore;
use PhpMyAdminDisplayGitRevision;
use PhpMyAdminLanguageManager;
use PhpMyAdminMessage;
use PhpMyAdminRecentFavoriteTable;
use PhpMyAdminRelation;
use PhpMyAdminResponse;
use PhpMyAdminSanitize;
use PhpMyAdminServerSelect;
use PhpMyAdminThemeManager;
use PhpMyAdminUrl;
use PhpMyAdminUtil;
use PhpMyAdminUserPreferences;
/**
* Gets some core libraries and displays a top message if required
*/
require_once 'libraries/common.inc.php';
/**
* pass variables to child pages
*/
$drops = array(
'lang',
'server',
'collation_connection',
'db',
'table'
);
foreach ($drops as $each_drop) {
if (array_key_exists($each_drop, $_GET)) {
unset($_GET[$each_drop]);
}
}
unset($drops, $each_drop);
apache-http-server php mysql phpmyadmin
New contributor
so I installed apache server and php server but I cannot enter to phpmyadmin. When I try to enter it shows me html codes instead of phpmyadmin login page.
My apache server and php server working well I dont know what the problem is
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Main loader script
*
* @package PhpMyAdmin
*/
use PhpMyAdminCharsets;
use PhpMyAdminConfig;
use PhpMyAdminCore;
use PhpMyAdminDisplayGitRevision;
use PhpMyAdminLanguageManager;
use PhpMyAdminMessage;
use PhpMyAdminRecentFavoriteTable;
use PhpMyAdminRelation;
use PhpMyAdminResponse;
use PhpMyAdminSanitize;
use PhpMyAdminServerSelect;
use PhpMyAdminThemeManager;
use PhpMyAdminUrl;
use PhpMyAdminUtil;
use PhpMyAdminUserPreferences;
/**
* Gets some core libraries and displays a top message if required
*/
require_once 'libraries/common.inc.php';
/**
* pass variables to child pages
*/
$drops = array(
'lang',
'server',
'collation_connection',
'db',
'table'
);
foreach ($drops as $each_drop) {
if (array_key_exists($each_drop, $_GET)) {
unset($_GET[$each_drop]);
}
}
unset($drops, $each_drop);
apache-http-server php mysql phpmyadmin
apache-http-server php mysql phpmyadmin
New contributor
New contributor
edited 12 hours ago
Sait POSTACI
New contributor
asked 15 hours ago
Sait POSTACISait POSTACI
11
11
New contributor
New contributor
put on hold as unclear what you're asking by DavidPostill♦ 14 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
put on hold as unclear what you're asking by DavidPostill♦ 14 hours ago
Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
Umm.. nobody is going to (and shouldn't) visit an unknown link like that. Include a screenshot instead please. A few possibilities are that phpmyadmin was not installed, you are behind a firewall, or your server wasn't properly set up. Please provide more details
– Eric F
14 hours ago
hmm sorry...As I am a new around here I couldnt embed a ss to the post. I edited and put a sample of the error that I'm taking
– Sait POSTACI
12 hours ago
It shows me [PHP] code instead of the phpmyadmin login page. -- However you set things up, Apache is not processing the PHP in the script. Essentially, it sounds as if you need to double check your setup between PHP and Apache. This could technically be a "directory" issue (e.g. the folder PHPMyAdmin is in isn't a folder designated for scripts) or a broader issue (e.g. PHP isn't registered with Apache correctly at all). That said, you should also clarify what you mean by "Apache server and PHP server". Is "PHP server" just PHP? Or is it another program? Do other PHP scripts work then?
– Anaksunaman
12 hours ago
okay I just found out that other php scripts doesnt work either I used {<?php phpinfo();?>}this script to check my php info but it showed me the exactly same thing when try to execute this script via localhost.Think I have to figure out this problem first
– Sait POSTACI
11 hours ago
add a comment |
Umm.. nobody is going to (and shouldn't) visit an unknown link like that. Include a screenshot instead please. A few possibilities are that phpmyadmin was not installed, you are behind a firewall, or your server wasn't properly set up. Please provide more details
– Eric F
14 hours ago
hmm sorry...As I am a new around here I couldnt embed a ss to the post. I edited and put a sample of the error that I'm taking
– Sait POSTACI
12 hours ago
It shows me [PHP] code instead of the phpmyadmin login page. -- However you set things up, Apache is not processing the PHP in the script. Essentially, it sounds as if you need to double check your setup between PHP and Apache. This could technically be a "directory" issue (e.g. the folder PHPMyAdmin is in isn't a folder designated for scripts) or a broader issue (e.g. PHP isn't registered with Apache correctly at all). That said, you should also clarify what you mean by "Apache server and PHP server". Is "PHP server" just PHP? Or is it another program? Do other PHP scripts work then?
– Anaksunaman
12 hours ago
okay I just found out that other php scripts doesnt work either I used {<?php phpinfo();?>}this script to check my php info but it showed me the exactly same thing when try to execute this script via localhost.Think I have to figure out this problem first
– Sait POSTACI
11 hours ago
Umm.. nobody is going to (and shouldn't) visit an unknown link like that. Include a screenshot instead please. A few possibilities are that phpmyadmin was not installed, you are behind a firewall, or your server wasn't properly set up. Please provide more details
– Eric F
14 hours ago
Umm.. nobody is going to (and shouldn't) visit an unknown link like that. Include a screenshot instead please. A few possibilities are that phpmyadmin was not installed, you are behind a firewall, or your server wasn't properly set up. Please provide more details
– Eric F
14 hours ago
hmm sorry...As I am a new around here I couldnt embed a ss to the post. I edited and put a sample of the error that I'm taking
– Sait POSTACI
12 hours ago
hmm sorry...As I am a new around here I couldnt embed a ss to the post. I edited and put a sample of the error that I'm taking
– Sait POSTACI
12 hours ago
It shows me [PHP] code instead of the phpmyadmin login page. -- However you set things up, Apache is not processing the PHP in the script. Essentially, it sounds as if you need to double check your setup between PHP and Apache. This could technically be a "directory" issue (e.g. the folder PHPMyAdmin is in isn't a folder designated for scripts) or a broader issue (e.g. PHP isn't registered with Apache correctly at all). That said, you should also clarify what you mean by "Apache server and PHP server". Is "PHP server" just PHP? Or is it another program? Do other PHP scripts work then?
– Anaksunaman
12 hours ago
It shows me [PHP] code instead of the phpmyadmin login page. -- However you set things up, Apache is not processing the PHP in the script. Essentially, it sounds as if you need to double check your setup between PHP and Apache. This could technically be a "directory" issue (e.g. the folder PHPMyAdmin is in isn't a folder designated for scripts) or a broader issue (e.g. PHP isn't registered with Apache correctly at all). That said, you should also clarify what you mean by "Apache server and PHP server". Is "PHP server" just PHP? Or is it another program? Do other PHP scripts work then?
– Anaksunaman
12 hours ago
okay I just found out that other php scripts doesnt work either I used {<?php phpinfo();?>}this script to check my php info but it showed me the exactly same thing when try to execute this script via localhost.Think I have to figure out this problem first
– Sait POSTACI
11 hours ago
okay I just found out that other php scripts doesnt work either I used {<?php phpinfo();?>}this script to check my php info but it showed me the exactly same thing when try to execute this script via localhost.Think I have to figure out this problem first
– Sait POSTACI
11 hours ago
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Umm.. nobody is going to (and shouldn't) visit an unknown link like that. Include a screenshot instead please. A few possibilities are that phpmyadmin was not installed, you are behind a firewall, or your server wasn't properly set up. Please provide more details
– Eric F
14 hours ago
hmm sorry...As I am a new around here I couldnt embed a ss to the post. I edited and put a sample of the error that I'm taking
– Sait POSTACI
12 hours ago
It shows me [PHP] code instead of the phpmyadmin login page. -- However you set things up, Apache is not processing the PHP in the script. Essentially, it sounds as if you need to double check your setup between PHP and Apache. This could technically be a "directory" issue (e.g. the folder PHPMyAdmin is in isn't a folder designated for scripts) or a broader issue (e.g. PHP isn't registered with Apache correctly at all). That said, you should also clarify what you mean by "Apache server and PHP server". Is "PHP server" just PHP? Or is it another program? Do other PHP scripts work then?
– Anaksunaman
12 hours ago
okay I just found out that other php scripts doesnt work either I used {<?php phpinfo();?>}this script to check my php info but it showed me the exactly same thing when try to execute this script via localhost.Think I have to figure out this problem first
– Sait POSTACI
11 hours ago