Web Hosting Talk


Go Back   Web Hosting Talk : Web Hosting Main Forums : Hosting Security and Technology : PHP MY Admin
Reply

Hosting Security and Technology Configuring and optimizing web hosting servers and operating systems, developing administration scripts, building servers, protecting against hackers, and general security (SSL certificates, etc.)

 
Thread Tools Search this Thread Display Modes
  #1  
Old 10-10-2008, 01:42 PM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
* PHP MY Admin

Hey Guys...

Few weeks ago I purchased a dedicated server. I Installed PHP and MY SQL. Now I need to Install a PhpMyAdmin. I'm bit confused with phpmyadmin. Please help me to install Phpmyadmin.

I want to Install Phpmyadmin on IIS ( Windows Server )

Kind Regards
Jenny
Lemonox


Last edited by lemonox; 10-10-2008 at 01:46 PM.
Reply With Quote
Sponsored Links
  #2  
Old 10-10-2008, 01:54 PM
SevenL_Networks SevenL_Networks is offline
View Beta Profile
Newbie
 
Join Date: Feb 2008
Posts: 9
Where exactly are you getting stuck? Installing phpmyadmin is fairly straight-forward as it's all php. There are only one or two configuration files that you need to enter MySQL details into.

Have you checked out the documentation for PHPMyAdmin yet?

Reply With Quote
  #3  
Old 10-10-2008, 01:57 PM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
Hey SevenL_Networks..

Thanks for your reply. Can you provide me some Video Tutorial Links or Guide links for Phpmyadmin.

I'm waiting 4 ur reply.

Best Regards
jenny

Reply With Quote
Sponsored Links
  #4  
Old 10-10-2008, 02:00 PM
Techno Techno is offline
View Beta Profile
Web Hosting Master
 
Join Date: Nov 2002
Posts: 2,886
Are you using a Control panel like Cpanel, DirectAdmin or Plesk? PhpMyAdmin should be included in their distribution packages.

Reply With Quote
  #5  
Old 10-10-2008, 02:00 PM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
Don't you have Yahoo Messenger, MSN, Or Skype , Google Talk. If you have please let me know. I can Talk with you.

Kind Regards
Jenny

Reply With Quote
  #6  
Old 10-10-2008, 02:03 PM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
Helm3

Hi Thanks for your reply. I'm using Helm3.


Quote:
Originally Posted by Techno View Post
Are you using a Control panel like Cpanel, DirectAdmin or Plesk? PhpMyAdmin should be included in their distribution packages.

Reply With Quote
  #7  
Old 10-10-2008, 02:07 PM
trix909 trix909 is offline
View Beta Profile
New Member
 
Join Date: Oct 2008
Posts: 3
Phpmyadmin is quite unsecure.
I suggest adding extra security to your config.inc.php

Reply With Quote
  #8  
Old 10-10-2008, 08:18 PM
mihd mihd is offline
View Beta Profile
Web Hosting Master
 
Join Date: Aug 2006
Location: Ireland
Posts: 612
Use Navicat and connect to the DB server via SSH....


Last edited by mihd; 10-10-2008 at 08:22 PM.
Reply With Quote
  #9  
Old 10-10-2008, 11:33 PM
arun_kris arun_kris is offline
View Beta Profile
Junior Guru Wannabe
 
Join Date: Aug 2008
Location: India
Posts: 79
Pls try this & this is esp for helm-

Pls download the latest copy from www.phpmyadmin.net - and then extract it, upload it all onto your website or server in a folder named phpmyadmin, edit the file named config.inc.php and then edit this line which is on line no 39

$cfg['PmaAbsoluteUri'] = '';

and put in your absolute url address to the phpmyadmin folder. for example mine is

$cfg['PmaAbsoluteUri'] = 'http://yourdomain.com/phpmyadmin/';

then go to line 60 and edit this line

$cfg['blowfish_secret'] = '';

change that to

$cfg['blowfish_secret'] = '-';

then go to line 69

and enter your settings. Put in your server ip, or localhost if the files are on the server you wish to use. Put in your port if you use one,but leave it blank as default.

Mine looks like this:-

$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection


Then on line 75 and 77 enter your controluser and controlpass if you know what they are, if you don't know simple leave these blank. It will work just aswell without them, as they are for http secure logins.So i leave mine blank.

Then on line 82 of the confic.inc.php edit that line by doing this:

change

$cfg['Servers'][$i]['auth_type'] = 'config';

to

$cfg['Servers'][$i]['auth_type'] = 'cookie';

leave the user and password below that as they are... mine looks like this

$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';

Also you may want to consider doing this, after you have created this and got your url to it, say http://yourdomain.com/phpmyadmin then you should login into helm as admin, and go to:-

Home > System Settings > Servers > yourservername > MySQL

That is of course assuming you have installed MySql. Then in there for the connection info field put this in...

Click Here to manage Database.

Where yourdomain.com is your domain etc...

This will mean that when a user creates a mysql database and adds users instead of saying please contact your administrator for the connection info, it will give them a link to phpmyadmin were they can login.

Hope this helps

Thanks,
Arun

__________________
Arun
Helm / Plesk / DotNetPanel control panels Installation, configuration, setup, troubleshooting, accounts migration
Plain Windows 2000, 2003, 2008 setup and configuration, VMWare/Hyper-V installation, configuration
Need to fix problems related to Windows servers? Ping me. Individual and no outsourcing! (Contact me)


Reply With Quote
  #10  
Old 10-10-2008, 11:39 PM
arun_kris arun_kris is offline
View Beta Profile
Junior Guru Wannabe
 
Join Date: Aug 2008
Location: India
Posts: 79
Also you can connect thro' third party MySQL connector tools like MySQL Administrator, SQL Yog, Navicat etc.. And this doesn't requires any additional setup in helm. Any user can connect to your MySQL directly thro' MySQL connector tools.

Thanks,
Arun

__________________
Arun
Helm / Plesk / DotNetPanel control panels Installation, configuration, setup, troubleshooting, accounts migration
Plain Windows 2000, 2003, 2008 setup and configuration, VMWare/Hyper-V installation, configuration
Need to fix problems related to Windows servers? Ping me. Individual and no outsourcing! (Contact me)


Reply With Quote
  #11  
Old 10-11-2008, 12:18 AM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
Hey Guys.


I want to thanks for all. Now I got a Error.

Please check this

http://67.18.248.98/phpmyadmin/index.php

Kind regards

Reply With Quote
  #12  
Old 10-11-2008, 12:23 AM
arun_kris arun_kris is offline
View Beta Profile
Junior Guru Wannabe
 
Join Date: Aug 2008
Location: India
Posts: 79
Is the MySQL extension enabled in php.ini file? If not pls search for

;extension=php_mysql.dll

and uncomment it by removing ';' (Semi colon), so it looks like-

extension=php_mysql.dll

Thanks,
Arun

__________________
Arun
Helm / Plesk / DotNetPanel control panels Installation, configuration, setup, troubleshooting, accounts migration
Plain Windows 2000, 2003, 2008 setup and configuration, VMWare/Hyper-V installation, configuration
Need to fix problems related to Windows servers? Ping me. Individual and no outsourcing! (Contact me)


Reply With Quote
  #13  
Old 10-11-2008, 12:44 AM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
Hi Arun

Still same error. Have to change php.ini on Windows Folder or C drive?

Regards
Jenny

Quote:
Originally Posted by arun_kris View Post
Is the MySQL extension enabled in php.ini file? If not pls search for

;extension=php_mysql.dll

and uncomment it by removing ';' (Semi colon), so it looks like-

extension=php_mysql.dll

Thanks,
Arun

Reply With Quote
  #14  
Old 10-11-2008, 12:50 AM
arun_kris arun_kris is offline
View Beta Profile
Junior Guru Wannabe
 
Join Date: Aug 2008
Location: India
Posts: 79
Yes, correct. You can find the path to php.ini by creating info.php-

<?
phpinfo();
?>

under phpmyadmin folder and access it through-

http://67.18.248.98/phpmyadmin/info.php

Thanks,
Arun

__________________
Arun
Helm / Plesk / DotNetPanel control panels Installation, configuration, setup, troubleshooting, accounts migration
Plain Windows 2000, 2003, 2008 setup and configuration, VMWare/Hyper-V installation, configuration
Need to fix problems related to Windows servers? Ping me. Individual and no outsourcing! (Contact me)


Reply With Quote
  #15  
Old 10-11-2008, 12:53 AM
lemonox lemonox is offline
View Beta Profile
Newbie
 
Join Date: Sep 2008
Posts: 16
Arun

Once I type http://67.18.248.98/phpmyadmin/info.php

its The page cannot be found.

Thanx

jenny





Quote:
Originally Posted by arun_kris View Post
Yes, correct. You can find the path to php.ini by creating info.php-

<?
phpinfo();
?>

under phpmyadmin folder and access it through-

http://67.18.248.98/phpmyadmin/info.php

Thanks,
Arun

Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement: