.. index:: config.inc.php
.. _config:
Configuration
=============
Almost all configurable data is placed in :file:`config.inc.php`. If this file
does not exist, please refer to the :ref:`setup` section to create one. This
file only needs to contain the parameters you want to change from their
corresponding default value in :file:`libraries/config.default.php`.
If a directive is missing from your file, you can just add another line with
the file. This file is for over-writing the defaults; if you wish to use the
default value there's no need to add a line here.
The parameters which relate to design (like colors) are placed in
:file:`themes/themename/layout.inc.php`. You might also want to create
:file:`config.footer.inc.php` and :file:`config.header.inc.php` files to add
your site specific code to be included on start and end of each page.
.. note::
Some distributions (eg. Debian or Ubuntu) store :file:`config.inc.php` in
``/etc/phpmyadmin`` instead of within phpMyAdmin sources.
.. warning::
:term:`Mac` users should note that if you are on a version before
:term:`Mac OS X`, PHP does not seem to
like :term:`Mac` end of lines character (``\r``). So
ensure you choose the option that allows to use the \*nix end of line
character (``\n``) in your text editor before saving a script you have
modified.
Basic settings
--------------
.. config:option:: $cfg['PmaAbsoluteUri']
:type: string
:default: ``''``
Sets here the complete :term:`URL` (with full path) to your phpMyAdmin
installation's directory. E.g.
``http://www.example.net/path_to_your_phpMyAdmin_directory/``. Note also
that the :term:`URL` on most of web servers are case–sensitive. Don’t
forget the trailing slash at the end.
Starting with version 2.3.0, it is advisable to try leaving this blank. In
most cases phpMyAdmin automatically detects the proper setting. Users of
port forwarding will need to set :config:option:`$cfg['PmaAbsoluteUri']`
(`more info <https://sourceforge.net/p/phpmyadmin/support-requests/795/>`_).
A good test is to browse a table, edit a row and save it. There should be
an error message if phpMyAdmin is having trouble auto–detecting the correct
value. If you get an error that this must be set or if the autodetect code
fails to detect your path, please post a bug report on our bug tracker so
we can improve the code.
.. seealso:: :ref:`faq1_40`
.. config:option:: $cfg['PmaNoRelation_DisableWarning']
:type: boolean
:default: false
Starting with version 2.3.0 phpMyAdmin offers a lot of features to
work with master / foreign – tables (see :config:option:`$cfg['Servers'][$i]['pmadb']`).
If you tried to set this
up and it does not work for you, have a look on the :guilabel:`Structure` page
of one database where you would like to use it. You will find a link
that will analyze why those features have been disabled.
If you do not want to use those features set this variable to ``true`` to
stop this message from appearing.
.. config:option:: $cfg['SuhosinDisableWarning']
:type: boolean
:default: false
A warning is displayed on the main page if Suhosin is detected.
You can set this parameter to ``true`` to stop this message from appearing.
.. config:option:: $cfg['ServerLibraryDifference_DisableWarning']
:type: boolean
:default: false
A warning is displayed on the main page if there is a difference
between the MySQL library and server version.
You can set this parameter to ``true`` to stop this message from appearing.
.. config:option:: $cfg['ReservedWordDisableWarning']
:type: boolean
:default: false
This warning is displayed on the Structure page of a table if one or more
column names match with words which are MySQL reserved.
If you want to turn off this warning, you can set it to ``true`` and
warning will no longer be displayed.
.. config:option:: $cfg['TranslationWarningThreshold']
:type: integer
:default: 80
Show warning about incomplete translations on certain threshold.
.. config:option:: $cfg['SendErrorReports']
:type: string
:default: ``'ask'``
Sets the default behavior for JavaScript error reporting.
Whenever an error is detected in the JavaScript execution, an error report
may be sent to the phpMyAdmin team if the user agrees.
The default setting of ``'ask'`` will ask the user everytime there is a new
error report. However you can set this parameter to ``'always'`` to send error
reports without asking for confirmation or you can set it to ``'never'`` to
never send error reports.
This directive is available both in the configuration file and in users
preferences. If the person in charge of a multi-user installation prefers
to disable this feature for all users, a value of ``'never'`` should be
set, and the :config:option:`$cfg['UserprefsDisallow']` directive should
contain ``'SendErrorReports'`` in one of its array values.
.. config:option:: $cfg['AllowThirdPartyFraming']
:type: boolean
:default: false
Setting this to ``true`` allows phpMyAdmin to be included inside a frame,
and is a potential security hole allowing cross-frame scripting attacks or
clickjacking.
Server connection settings
--------------------------
.. config:option:: $cfg['Servers']
:type: array
:default: one server array with settings listed bellow
Since version 1.4.2, phpMyAdmin supports the administration of multiple
MySQL servers. Therefore, a :config:option:`$cfg['Servers']`-array has been
added which contains the login information for the different servers. The
first :config:option:`$cfg['Servers'][$i]['host']` contains the hostname of
the first server, the second :config:option:`$cfg['Servers'][$i]['host']`
the hostname of the second server, etc. In
:file:`libraries/config.default.php`, there is only one section for server
definition, however you can put as many as you need in
:file:`config.inc.php`, copy that block or needed parts (you don't have to
define all settings, just those you need to change).
.. note::
The :config:option:`$cfg['Servers']` array starts with
$cfg['Servers'][1]. Do not use $cfg['Servers'][0]. If you want more
than one server, just copy following section (including $i
incrementation) serveral times. There is no need to define full server
array, just define values you need to change.
.. config:option:: $cfg['Servers'][$i]['host']
:type: string
:default: ``'localhost'``
The hostname or :term:`IP` address of your $i-th MySQL-server. E.g.
``localhost``.
Possible values are:
* hostname, e.g., ``'localhost'`` or ``'mydb.example.org'``
* IP address, e.g., ``'127.0.0.1'`` or ``'192.168.10.1'``
* dot - ``'.'``, i.e., use named pipes on windows systems
* empty - ``''``, disables this server
.. note::
phpMyAdmin supports connecting to MySQL servers reachable via IPv6 only.
To connect to an IPv6 MySQL server, enter its IPv6 address in this field.
.. config:option:: $cfg['Servers'][$i]['port']
:type: string
:default: ``''``
The port-number of your $i-th MySQL-server. Default is 3306 (leave
blank).
.. note::
If you use ``localhost`` as the hostname, MySQL ignores this port number
and connects with the socket, so if you want to connect to a port
different from the default port, use ``127.0.0.1`` or the real hostname
in :config:option:`$cfg['Servers'][$i]['host']`.
.. config:option:: $cfg['Servers'][$i]['socket']
:type: string
:default: ``''``
The path to the socket to use. Leave blank for default. To determine
the correct socket, check your MySQL configuration or, using the
:command:`mysql` command–line client, issue the ``status`` comma
没有合适的资源?快使用搜索试试~ 我知道了~
PHP实例开发源码-PHP数据管理 phpMyAdmin alpha1.zip
共1600个文件
png:495个
php:485个
js:444个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
5星 · 超过95%的资源 1 下载量 150 浏览量
2022-10-15
17:33:53
上传
评论
收藏 9.42MB ZIP 举报
温馨提示
PHP实例开发源码—PHP数据管理 phpMyAdmin alpha1.zip PHP实例开发源码—PHP数据管理 phpMyAdmin alpha1.zip PHP实例开发源码—PHP数据管理 phpMyAdmin alpha1.zip
资源推荐
资源详情
资源评论
收起资源包目录
PHP实例开发源码-PHP数据管理 phpMyAdmin alpha1.zip (1600个子文件)
RELEASE-DATE-4.3.0-alpha1 29B
make.bat 6KB
.buildinfo 230B
ChangeLog 20KB
swekey.sample.conf 2KB
musbe-ca.crt 1KB
jquery-ui-1.9.2.custom.css 32KB
jquery-ui-1.9.2.custom.css 32KB
styles.css 11KB
basic.css 8KB
style.css 8KB
default.css 4KB
pygments.css 4KB
firebug.css 3KB
print.css 1KB
ie6-style.css 165B
google.css 143B
framedCloud.css 0B
DCO 2KB
config.doctree 893KB
faq.doctree 601KB
setup.doctree 168KB
credits.doctree 144KB
glossary.doctree 116KB
transformations.doctree 33KB
intro.doctree 27KB
require.doctree 15KB
privileges.doctree 12KB
copyright.doctree 9KB
vendors.doctree 9KB
index.doctree 6KB
other.doctree 5KB
developers.doctree 5KB
user.doctree 3KB
ajax_clock_small.gif 2KB
ajax_clock_small.gif 2KB
close.gif 1KB
b_globe.gif 1KB
b_globe.gif 1KB
ajax-loader.gif 673B
overview_replacement.gif 79B
dot.gif 43B
cleardot.gif 43B
blank.gif 42B
blank.gif 42B
phpunit.xml.hhvm 1KB
config.html 254KB
faq.html 185KB
genindex.html 117KB
setup.html 73KB
glossary.html 32KB
credits.html 23KB
transformations.html 12KB
index.html 12KB
intro.html 10KB
privileges.html 8KB
require.html 7KB
copyright.html 6KB
vendors.html 6KB
user.html 5KB
other.html 5KB
developers.html 5KB
search.html 3KB
firebug.html 651B
favicon.ico 18KB
error.ico 5KB
favicon.ico 1KB
error.ico 1KB
gettext.inc 17KB
objects.inv 9KB
OpenLayers.js 927KB
jquery.jqplot.js 454KB
codemirror.js 294KB
jquery-ui-1.9.2.custom.min.js 232KB
functions.js 152KB
jquery-1.8.3.min.js 91KB
server_status_monitor.js 84KB
makegrid.js 82KB
Map.js 82KB
canvg.js 78KB
jquery.ui.datepicker.js 75KB
jquery-ui-timepicker-addon.js 71KB
jquery.js 70KB
move.js 67KB
Util.js 56KB
jquery.svg.js 55KB
searchindex.js 51KB
KML.js 51KB
navigation.js 50KB
jqplot.cursor.js 45KB
v1.js 42KB
Layer.js 42KB
excanvas.js 41KB
rte.js 41KB
ArcXML.js 40KB
jquery.ui.sortable.js 39KB
jquery.tablesorter.js 39KB
tracekit.js 38KB
ajax.js 35KB
GML.js 35KB
共 1600 条
- 1
- 2
- 3
- 4
- 5
- 6
- 16
资源评论
- Bohai博海2024-03-11这个资源对我启发很大,受益匪浅,学到了很多,谢谢分享~
易小侠
- 粉丝: 6591
- 资源: 9万+
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- VESTA 软件,计算材料学、DFT计算必备!
- ToWCL,一个模型的独白
- 《编译原理》课件-第6章LR分析程序.pptx
- Quantum ESPRESSO DFT软件
- vscode-pylance-2023.11.12-vsixhub.com.vsix
- word最新版2024年秋季信息素养-学术研究选修课,期末考试答案研究生MOOC,直接cv,3秒交卷,辛苦整理,制作不易
- springboot数控信息管理系统62293(数据库+源码)
- 【java毕业设计】springboot英语学习平台(springboot+vue+mysql+说明文档).zip
- 材料类SCI必备:230空间群所属晶系,包括空间群符号,可复制可编辑
- (三)最小梯度平滑预处理下的K-Means的道路分割实验(附资源)
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功