欢迎来到天天文库
浏览记录
ID:5877978
大小:59.00 KB
页数:10页
时间:2017-12-27
《phpmyadmin使用教程》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、phpMyAdmin教程#1phpMyAdmin教程先下载一份最新版的phpMyAdminMYSQL管理器。解压后得到一个phpMyAdmin的目录(你可以改名)找到目录里的config.inc.php文件,打开找到$cfg['PmaAbsoluteUri']修改你将上传到空间的phpMyAdmin的网址如:$cfg['PmaAbsoluteUri']='http://www.XXX.com/phpmyadmin/';还有下面的$cfg['Servers'][$i]['host']='localhost';(通常用默认,也有例外)$cfg['Servers'][$i]['auth_type'
2、]='config';//Authenticationmethod(config,httporcookiebased)?在自己的机子里调试用config,如果在网上用cookie。$cfg['Servers'][$i]['user']='root';//MySQLuser(用户名,自己机里用root,在网上设你的ftp用户名)$cfg['Servers'][$i]['password']='';//MySQLpassword(onlyneeded自己机里不用设$cfg['Servers'][$i]['only_db']='';//Ifsettoadb-name,only(你只有一个数据就设置
3、一下)还有设$cfg['DefaultLang']='zh';设置完毕可以上传到网上了。其实在使用的实际过程中,以上的方法并不是适合在网络上使用的。其实实际设置下面几项就可以了:$cfg['blowfish_secret']='1';(设置为相应数字,好像表示为一个开关。使用某种登陆机制的问题。好像和php系统的设置也有一些关系)$cfg['Servers'][$i]['host']='mysql.home.shangdu.net';(设置你的mysql数据库主机地址,这是必须的。)$cfg['Servers'][$i]['auth_type']='cookie';(设置用户登录的模式,在网
4、络上的话使用http或者cache)$cfg['ServerDefault']=1;(如果你要管理登陆多个mysql数据库的话,你需要把它设置为0。并且设置不止一个$cfg['Servers'][$i]['host'])修正备忘一下留用#2一、概述: phpMyAdmin是一套以php3写成,针对MySQL资料库系统的Web管理界面。它可以很方便地以图形化界面,来对MySQL资料库内之资料做增删的做动,更可以做资料库本身的增删管理;另外附带的好处是,您也可以籍著这个界面来学习SQL正确的语法。二、资源:作业环境:RedHat6.0+CLE0.8p1网路资源:瑞琦资讯工作室phpMyAdmi
5、n交流讨论区三、安装取得原始档。将原始档解压缩到Web伺服器的文件根目录tarzvxfphpMyAdmin_2.0.5.tar.gz-C/home/httpd/html 变换到phpMyAdmin的目录底下cd/home/httpd/html/phpMyAdmin修改设定档config.inc.php3:将原来的设定$cfgServers[1]['host']='';//MySQLhostname$cfgServers[1]['port']='';//MySQLport-leaveblankfor defaultport$cfgServers[1]['adv_auth']=false;//U
6、seadvancedauthentication?$cfgServers[1]['stduser']='';//MySQLstandarduser(onlyneededwithadvancedauth)$cfgServers[1]['stdpass']='';//MySQLstandardpassword(onlyneededwithadvancedauth)$cfgServers[1]['user']='';//MySQLuser(onlyneededwithbasicauth)$cfgServers[1]['password']='';//MySQLpassword(onlyneeded
7、withbasicauth)$cfgServers[1]['only_db']='';//Ifsettoadb-name,onlythisdbisaccessible$cfgServers[1]['verbose']='';//Verbosenameforthishost-leaveblanktoshowthehostname::require("english.inc.php3");修改成$cfgServe
此文档下载收益归作者所有