New to all this and need help

 
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions
View previous topic :: View next topic  
Author Message
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 8:45 pm    Post subject: New to all this and need help Reply with quote

Ok hey all 1st of im new to hosting a site at home!

So i installed the abyss web server and followed 2 installations from this site!

Now i installed mysql and phpmyadmin

BUT when i go to my phpmyadmin i just get this up

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* forms frameset
*
* @version $Id: index.php 10590 2007-09-02 19:59:59Z lem9 $
* @uses $GLOBALS['strNoFrames']
* @uses $GLOBALS['cfg']['QueryHistoryDB']
* @uses $GLOBALS['cfg']['Server']['user']
* @uses $GLOBALS['cfg']['DefaultTabServer'] as src for the mainframe
* @uses $GLOBALS['cfg']['DefaultTabDatabase'] as src for the mainframe
* @uses $GLOBALS['cfg']['NaviWidth'] for navi frame width
* @uses $GLOBALS['collation_connection'] from $_REQUEST (grab_globals.lib.php)
* or common.inc.php
* @uses $GLOBALS['available_languages'] from common.inc.php (select_lang.lib.php)
* @uses $GLOBALS['db']
* @uses $GLOBALS['charset']
* @uses $GLOBALS['lang']
* @uses $GLOBALS['text_dir']
* @uses $_ENV['HTTP_HOST']
* @uses PMA_getRelationsParam()
* @uses PMA_purgeHistory()
* @uses PMA_generate_common_url()
* @uses PMA_VERSION
* @uses session_write_close()
* @uses time()
* @uses PMA_getenv()
* @uses header() to send charset
*/

/**
* Gets core libraries and defines some variables
*/
require_once './libraries/common.inc.php';

/**
* Includes the ThemeManager if it hasn't been included yet
*/
require_once './libraries/relation.lib.php';

// free the session file, for the other frames to be loaded
session_write_close();

// Gets the host name
// loic1 - 2001/25/11: use the new globals arrays defined with php 4.1+
if (empty($HTTP_HOST)) {
if (PMA_getenv('HTTP_HOST')) {
$HTTP_HOST = PMA_getenv('HTTP_HOST');
} else {
$HTTP_HOST = '';
}
}


// purge querywindow history
$cfgRelation = PMA_getRelationsParam();
if ($GLOBALS['cfg']['QueryHistoryDB'] && $cfgRelation['historywork']) {
PMA_purgeHistory($GLOBALS['cfg']['Server']['user']);
}
unset($cfgRelation);


/**
* pass variables to child pages
*/
$drops = array('lang', 'server', 'convcharset', 'collation_connection',
'db', 'table');

foreach ($drops as $each_drop) {
if (! array_key_exists($each_drop, $_GET)) {
unset($_GET[$each_drop]);
}
}
unset($drops, $each_drop);

if (! strlen($GLOBALS['db'])) {
$main_target = $GLOBALS['cfg']['DefaultTabServer'];
} elseif (! strlen($GLOBALS['table'])) {
$_GET['db'] = $GLOBALS['db'];
$main_target = $GLOBALS['cfg']['DefaultTabDatabase'];
} else {
$_GET['db'] = $GLOBALS['db'];
$_GET['table'] = $GLOBALS['table'];
$main_target = $GLOBALS['cfg']['DefaultTabTable'];
}

$url_query = PMA_generate_common_url($_GET);

if (isset($GLOBALS['target']) && is_string($GLOBALS['target']) && !empty($GLOBALS['target']) && in_array($GLOBALS['target'], $goto_whitelist)) {
$main_target = $GLOBALS['target'];
}

$main_target .= $url_query;

$lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][2];


// start output
header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xml:lang="<?php echo $lang_iso_code; ?>"
lang="<?php echo $lang_iso_code; ?>"
dir="<?php echo $GLOBALS['text_dir']; ?>">
<head>
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<title>phpMyAdmin <?php echo PMA_VERSION; ?> -
<?php echo htmlspecialchars($HTTP_HOST); ?></title>
<meta http-equiv="Content-Type"
content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
<script type="text/javascript">
// <![CDATA[
// definitions used in querywindow.js
var common_query = '<?php echo PMA_escapeJsString(PMA_generate_common_url('', '', '&'));?>';
var opendb_url = '<?php echo PMA_escapeJsString($GLOBALS['cfg']['DefaultTabDatabase']); ?>';
var safari_browser = <?php echo PMA_USR_BROWSER_AGENT == 'SAFARI' ? 'true' : 'false' ?>;
var querywindow_height = <?php echo PMA_escapeJsString($GLOBALS['cfg']['QueryWindowHeight']); ?>;
var querywindow_width = <?php echo PMA_escapeJsString($GLOBALS['cfg']['QueryWindowWidth']); ?>;
var collation_connection = '<?php echo PMA_escapeJsString($GLOBALS['collation_connection']); ?>';
var lang = '<?php echo PMA_escapeJsString($GLOBALS['lang']); ?>';
var server = '<?php echo PMA_escapeJsString($GLOBALS['server']); ?>';
var table = '<?php echo PMA_escapeJsString($GLOBALS['table']); ?>';
var db = '<?php echo PMA_escapeJsString($GLOBALS['db']); ?>';
var text_dir = '<?php echo PMA_escapeJsString($GLOBALS['text_dir']); ?>';
var pma_absolute_uri = '<?php echo PMA_escapeJsString($GLOBALS['cfg']['PmaAbsoluteUri']); ?>';

// for content and navigation frames

var frame_content = 0;
var frame_navigation = 0;
function getFrames() {
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
frame_content = window.frames[1];
frame_navigation = window.frames[0];
<?php } else { ?>
frame_content = window.frames[0];
frame_navigation = window.frames[1];
<?php } ?>
}
var onloadCnt = 0;
var onLoadHandler = window.onload;
window.onload = function() {
if (onloadCnt == 0) {
if (typeof(onLoadHandler) == "function") {
onLoadHandler();
}
if (typeof(getFrames) != 'undefined' && typeof(getFrames) == 'function') {
getFrames();
}
onloadCnt++;
}
};
// ]]>
</script>
<script src="./js/querywindow.js" type="text/javascript"></script>
</head>
<frameset cols="<?php
if ($GLOBALS['text_dir'] === 'rtl') {
echo '*,';
}
echo $GLOBALS['cfg']['NaviWidth'];
if ($GLOBALS['text_dir'] === 'ltr') {
echo ',*';
}
?>" rows="*" id="mainFrameset">
<?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
<frame frameborder="0" id="frame_navigation"
src="navigation.php<?php echo $url_query; ?>"
name="frame_navigation" />
<?php } ?>
<frame frameborder="0" id="frame_content"
src="<?php echo $main_target; ?>"
name="frame_content" />
<?php if ($GLOBALS['text_dir'] === 'rtl') { ?>
<frame frameborder="0" id="frame_navigation"
src="navigation.php<?php echo $url_query; ?>"
name="frame_navigation" />
<?php } ?>
<noframes>
<body>
<p><?php echo $GLOBALS['strNoFrames']; ?></p>
</body>
</noframes>
</frameset>
</html>





Nothing else if i got to http://mylocalhost/phpmyadmin/install i just get this

$Id: INSTALL 9537 2006-10-12 16:27:13Z nijel $

phpMyAdmin - Installation
-------------------------

Please have a look to the Documentation.txt or
Documentation.html files.





What have i done wrong :(

Sorry im just new to all this!
________
Body science


Last edited by spudevo on Tue Mar 08, 2011 8:30 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 8:49 pm    Post subject: Reply with quote

Sounds like php isnt correctly installed. Visit www.abyssunderground.co.uk for tutorials on how to install it correctly.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 8:55 pm    Post subject: Reply with quote

how can i tell if it is or isnt

thanks
________
Toyota venza


Last edited by spudevo on Tue Mar 08, 2011 8:30 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 8:57 pm    Post subject: Reply with quote

spudevo wrote:
how can i tell if it is or isnt

thanks


Create a file called test.php with the following inside it:

Code:
<?php phpinfo(); ?>


and open the page. If you just see the code then php isnt installed. If you see a php info page then its working.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 9:04 pm    Post subject: Reply with quote

ok thanks

working now but says i need to creat a config but i get this error

Could not connect as control user!
________
MARIJUANA VAPORIZERS


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 9:16 pm    Post subject: Reply with quote

spudevo wrote:
ok thanks

working now but says i need to creat a config but i get this error

Could not connect as control user!


Follow the tutorials on abyssunderground and you'll get it set up in no time.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 9:17 pm    Post subject: Reply with quote

i did but none there for the config file
________
Property Insurance Forum


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 9:19 pm    Post subject: Reply with quote

spudevo wrote:
i did but none there for the config file


The tutorial explains what to do when it comes to the config file. Please follow it carefully.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 9:22 pm    Post subject: Reply with quote

hi there

i did but not sure whihc tutorial ur talking about this is the one i used

http://www.abyssunderground.co.uk/installing-php.php
________
Suzuki gr650 tempter


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 9:38 pm    Post subject: Reply with quote

ok sorted that out now im getting this error


#2003 - The server is not responding
________
New Jersey Medical Marijuana Dispensary


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
ChrisM2
-


Joined: 27 Apr 2006
Posts: 85
Location: Oklahoma City

PostPosted: Wed Dec 19, 2007 10:06 pm    Post subject: Reply with quote

spudevo wrote:
ok sorted that out now im getting this error


#2003 - The server is not responding


You can do what I do in those situations.....Scrap it all, and start over following instruction precisely as to not make a fool of myself asking questions that never should have needed to be asked. Not saying you're like me though ;) I'm just saying, that's what I use to do....lmao [still do sometimes :( ] Anywho, none the less, If you are having problems, start over with it all, uninstalling everything. Then, reinstall, one at a time, reading everything it says to do in the tutorials. A.U.G. has excellent tutorials, and has helped me...no probs. On the PHPBB though. I did have problems with registering people and emailing, but that was due to running a windows platform. Linux will pick it up no prob.
Back to top View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger ICQ Number
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 10:08 pm    Post subject: Reply with quote

hey there

this is my 3rd attepmt at it all.

I get that error when i try to log into phpmyadmin!!!!


Arggggg

i have even tyred my root pass to msql, addung password t the config u name iv tryed it
________
Body Science


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 10:32 pm    Post subject: Reply with quote

spudevo wrote:
ok sorted that out now im getting this error


#2003 - The server is not responding


This means MySQL is not running.


ChrisM2 wrote:
... On the PHPBB though. I did have problems with registering people and emailing, but that was due to running a windows platform. Linux will pick it up no prob.


Nothing to do with windows actually. Its down to the software you use and the ISP. If your ISP has dynamic IP's then you have no chance at running a mail server. I run a windows server with mail etc no problem on a very popular phpBB forum.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
ChrisM2
-


Joined: 27 Apr 2006
Posts: 85
Location: Oklahoma City

PostPosted: Wed Dec 19, 2007 10:35 pm    Post subject: Reply with quote

spudevo wrote:
hey there

this is my 3rd attepmt at it all.

I get that error when i try to log into phpmyadmin!!!!


Arggggg

i have even tyred my root pass to msql, addung password t the config u name iv tryed it


It may all lie within the "Config" file. I had many problems over a year ago understanding what I needed to edit it properly. If you are new to all this, I guaranty you that you may be editing it wrong. What are you using to edit it? Do you understand where to put your password into it? Do you understand all the info it wants you to enter into it? The '' marks are where you need to put info in, as in the middle of it. You may have done all that right, but if I don't know what the problem is, then all I can do is throw ideas out there, not testing your intelligence.
Back to top View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger ICQ Number
ChrisM2
-


Joined: 27 Apr 2006
Posts: 85
Location: Oklahoma City

PostPosted: Wed Dec 19, 2007 10:42 pm    Post subject: Reply with quote

AbyssUnderground wrote:
Nothing to do with windows actually. Its down to the software you use and the ISP. If your ISP has dynamic IP's then you have no chance at running a mail server. I run a windows server with mail etc no problem on a very popular phpBB forum.


I installed a phpBB on a hosting site other than my own server. It gave me the option to use windows or Linux as my platform. I chose windows. I could never get it to work. I called the hosting site up and asked them to switch my hosting to Linux. I did nothing else but wait a few days for the transfer to take effect. When the hosting became available, I tested the BB, it worked, no prob. Not discrediting what you said, but, may there have been something they did on there end without telling me?
Back to top View user's profile Send private message Send e-mail Yahoo Messenger MSN Messenger ICQ Number
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 10:43 pm    Post subject: Reply with quote

ChrisM2 wrote:
AbyssUnderground wrote:
Nothing to do with windows actually. Its down to the software you use and the ISP. If your ISP has dynamic IP's then you have no chance at running a mail server. I run a windows server with mail etc no problem on a very popular phpBB forum.


I installed a phpBB on a hosting site other than my own server. It gave me the option to use windows or Linux as my platform. I chose windows. I could never get it to work. I called the hosting site up and asked them to switch my hosting to Linux. I did nothing else but wait a few days for the transfer to take effect. When the hosting became available, I tested the BB, it worked, no prob. Not discrediting what you said, but, may there have been something they did on there end without telling me?


No idea, I just know its not a windows problem.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 10:52 pm    Post subject: Reply with quote

if the msql server is not running why is there a green light on the traffic light system it uses to tell u?
________
HOW I MET YOUR MOTHER FORUM


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 11:05 pm    Post subject: Reply with quote

spudevo wrote:
if the msql server is not running why is there a green light on the traffic light system it uses to tell u?


In which case it is running. Something else has been changed in the config file. You need to follow the tutorial word for word, dont do anything it doesn't tell you.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 11:12 pm    Post subject: Reply with quote

ok here is my config. also i can connect to msql by doing mysql -u root -p and all works

so here is the config file

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* <code>
* N N OOO !! DDDD OOO N N OOO TTTTT EEEE DDDD I TTTTT !!
* NN N O O !! D D O O NN N O O T E D D I T !!
* N N N O O !! D D O O N N N O O T EEEE D D I T !!
* N NN O O D D O O N NN O O T E D D I T
* N N OOO !! DDDD OOO N N OOO T EEEE DDDD I T !!
* </code>
*
* DO NOT EDIT THIS FILE, EDIT config.inc.php INSTEAD !!!
*
* phpMyAdmin default configuration, you can copy values from here to your
* config.inc.php
*
* All directives are explained in Documentation.html
*
* @version $Id: config.default.php 10869 2007-10-20 17:54:15Z lem9 $
*/

/**
* Your phpMyAdmin URL.
*
* Complete the variable below with the full URL ie
* http://www.your_web.net/path_to_your_phpMyAdmin_directory/
*
* It must contain characters that are valid for a URL, and the path is
* case sensitive on some Web servers, for example Unix-based servers.
*
* In most cases you can leave this variable empty, as the correct value
* will be detected automatically. However, we recommend that you do
* test to see that the auto-detection code works in your system. A good
* test is to browse a table, then edit a row and save it. There will be
* an error message if phpMyAdmin cannot auto-detect the correct value.
*
* @global string $cfg['PmaAbsoluteUri']
*/
$cfg['PmaAbsoluteUri'] = 'http://localhost/phpMyAdmin';

/**
* Disable the default warning that is displayed on the DB Details Structure page if
* any of the required Tables for the relation features could not be found
*
* @global boolean $cfg['PmaNoRelation_DisableWarning']
*/
$cfg['PmaNoRelation_DisableWarning'] = false;

/**
* The 'cookie' auth_type uses blowfish algorithm to encrypt the password. If
* at least one server configuration uses 'cookie' auth_type, enter here a
* pass phrase that will be used by blowfish. The maximum length seems to be 46
* characters.
*
* @global string $cfg['blowfish_secret']
*/
$cfg['blowfish_secret'] = 'wayneevans';


/*******************************************************************************
* Server(s) configuration
*
* The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use
* $cfg['Servers'][0]. You can disable a server configuration entry by setting host
* to ''. If you want more than one server, just copy following section
* (including $i incrementation) several times. There is no need to define
* full server array, just define values you need to change.
*
* @global array $cfg['Servers']
*/
$cfg['Servers'] = array();

$i = 1;

/**
* MySQL hostname or IP address
*
* @global string $cfg['Servers'][$i]['host']
*/
$cfg['Servers'][$i]['host'] = 'localhost';

/**
* MySQL port - leave blank for default port
*
* @global string $cfg['Servers'][$i]['port']
*/
$cfg['Servers'][$i]['port'] = '';

/**
* Path to the socket - leave blank for default socket
*
* @global string $cfg['Servers'][$i]['socket']
*/
$cfg['Servers'][$i]['socket'] = '';

/**
* Use SSL for connecting to MySQL server?
*
* @global boolean $cfg['Servers'][$i]['ssl']
*/
$cfg['Servers'][$i]['ssl'] = false;

/**
* How to connect to MySQL server ('tcp' or 'socket')
*
* @global string $cfg['Servers'][$i]['connect_type']
*/
$cfg['Servers'][$i]['connect_type'] = 'tcp';

/**
* The PHP MySQL extension to use ('mysql' or 'mysqli')
*
* @global string $cfg['Servers'][$i]['extension']
*/
$cfg['Servers'][$i]['extension'] = 'mysql';

/**
* Use compressed protocol for the MySQL connection (requires PHP >= 4.3.0)
*
* @global boolean $cfg['Servers'][$i]['compress']
*/
$cfg['Servers'][$i]['compress'] = false;

/**
* MySQL control user settings (this user must have read-only
*
* @global string $cfg['Servers'][$i]['controluser']
*/
$cfg['Servers'][$i]['controluser'] = '';

/**
* access to the "mysql/user" and "mysql/db" tables). The controluser is also
* used for all relational features (pmadb)
*
* @global string $cfg['Servers'][$i]['controlpass']
*/
$cfg['Servers'][$i]['controlpass'] = '';

/**
* Authentication method (valid choices: config, http, signon or cookie)
*
* @global string $cfg['Servers'][$i]['auth_type']
*/
$cfg['Servers'][$i]['auth_type'] = 'cookie';

/**
* MySQL user
*
* @global string $cfg['Servers'][$i]['user']
*/
$cfg['Servers'][$i]['user'] = 'root';

/**
* MySQL password (only needed with 'config' auth_type)
*
* @global string $cfg['Servers'][$i]['password']
*/
$cfg['Servers'][$i]['password'] = '';

/**
* Session to use for 'signon' authentication method
*
* @global string $cfg['Servers'][$i]['SignonSession']
*/
$cfg['Servers'][$i]['SignonSession'] = '';

/**
* URL where to redirect user to login for 'signon' authentication method
*
* @global string $cfg['Servers'][$i]['SignonURL']
*/
$cfg['Servers'][$i]['SignonURL'] = '';

/**
* URL where to redirect user after logout
*
* @global string $cfg['Servers'][$i]['LogoutURL']
*/
$cfg['Servers'][$i]['LogoutURL'] = '';

/**
* Whether to try to connect without password
*
* @global boolean $cfg['Servers'][$i]['nopassword']
*/
$cfg['Servers'][$i]['nopassword'] = false;
________
Vapir oxygen


Last edited by spudevo on Tue Mar 08, 2011 8:31 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 11:17 pm    Post subject: Reply with quote

I've edited your post to remove most of the config file. There is no need to post it all.

You're obviously not reading the tutorial correctly because a piece of that says * DO NOT EDIT THIS FILE, EDIT config.inc.php INSTEAD !!!

Which you obviously didn't follow.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 11:20 pm    Post subject: Reply with quote

ok but i did what ur guid said!!

heres the proof
Go to "htdocs/phpmyadmin/libraries".

Find the file "config.default.php".

Right click it and click "copy". Now return to "htdocs/phpmyadmin".

Right click and click "paste". Now rename the copied "config.default.php" to "config.inc.php".


Now open the new file "config.inc.php" in a text editor such as "wordpad" (note pad may not work in this situation as the encoding is different and the lines are seperated in a different way.

Find the line highlighted below and change "A memorable word" to something you can easily remember, but not something too obvious like your name


Which is what i did by your guide!!!!
________
Wholesale vaporizers


Last edited by spudevo on Tue Mar 08, 2011 8:32 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 11:21 pm    Post subject: Reply with quote

Can you confirm the error you are getting when you load the phpmyadmin page please.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 11:23 pm    Post subject: Reply with quote

Error
#2003 - The server is not responding
________
Zx14 Vs Hayabusa


Last edited by spudevo on Tue Mar 08, 2011 8:32 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 11:24 pm    Post subject: Reply with quote

spudevo wrote:
Error
#2003 - The server is not responding


This means the server is not running, despite what the tray icon is saying. Hover over the icon. Does it disappear? If so, then MySQL crashed and needs starting again.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 11:29 pm    Post subject: Reply with quote

so why can i log into it into dos mode by going

c:\abyss webserver\ database\mysql\bin\ mysql -u root -p
?????
________
Taoism Advice


Last edited by spudevo on Tue Mar 08, 2011 8:32 am; edited 2 times in total
Back to top View user's profile Send private message
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 11:30 pm    Post subject: Reply with quote

and no when i hover over it it dont disaper!
________
F01


Last edited by spudevo on Tue Mar 08, 2011 8:32 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 11:33 pm    Post subject: Reply with quote

spudevo wrote:
and no when i hover over it it dont disaper!


I suggest uninstalling both MySQL and phpMyAdmin and starting from the beginning with one of the preconfigured packages.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Wed Dec 19, 2007 11:34 pm    Post subject: Reply with quote

AbyssUnderground wrote:
spudevo wrote:
and no when i hover over it it dont disaper!


I suggest uninstalling both MySQL and phpMyAdmin and starting from the beginning with one of the preconfigured packages.


iv installed 3 times now. I used 2 guides on here for phpmyadmin and mysql plus ur guides!

so cant see what has gone wrong!
________
Weed Vaporizer


Last edited by spudevo on Tue Mar 08, 2011 8:32 am; edited 1 time in total
Back to top View user's profile Send private message
AbyssUnderground
-


Joined: 31 Dec 2004
Posts: 3855

PostPosted: Wed Dec 19, 2007 11:36 pm    Post subject: Reply with quote

Thats why I'm suggesting uninstalling, and using one of the preconfigured packages from abyssunderground and following the guides on abyssunderground for installing them. They -do- work because hundreds of people have used them.
_________________
Andy (AbyssUnderground) (previously The Inquisitor)
www.abyssunderground.co.uk
Back to top View user's profile Send private message Visit poster's website
spudevo
-


Joined: 19 Dec 2007
Posts: 15

PostPosted: Thu Dec 20, 2007 9:00 pm    Post subject: Reply with quote

thanks to my friend at www.meetthegeeks.org and him actually pointing me to the correct web address of www.abyssunderground.co.uk with the correct instructions i have it all working but im not using phpmyadmin!!!!

So plz take a look at both sites.

Thanks alot and merry xmas and a happy new year!!!!!!!!

spud!
________
CB500 twin


Last edited by spudevo on Mon Feb 07, 2011 2:43 am; edited 1 time in total
Back to top View user's profile Send private message
pkSML
-


Joined: 29 May 2006
Posts: 952
Location: Michigan, USA

PostPosted: Fri Dec 21, 2007 1:44 am    Post subject: Reply with quote

spudevo wrote:
So plz take a look at both sites.


What might those sites you host be? I don't see them listed anywhere.
_________________
Stephen
Need a LitlURL?


http://CodeBin.yi.org
Back to top View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group