
There still might be some uses of it, but I'm not aware of anything right now and it's better to break things earlier so that somebody notices and it can be fixed.
35 lines
1.2 KiB
Plaintext
35 lines
1.2 KiB
Plaintext
phpMyAdmin - hints for distributing phpMyAdmin
|
|
==============================================
|
|
|
|
This document is intended to give advices to people who want to
|
|
redistribute phpMyAdmin inside other software package such as Linux
|
|
distribution or some all in one package including web server and MySQL
|
|
server.
|
|
|
|
Generally you can customize some basic aspects (paths to some files and
|
|
behavior) in libraries/vendor_config.php.
|
|
|
|
For example if you want setup script to generate config file in var,
|
|
change SETUP_CONFIG_FILE to /var/lib/phpmyadmin/config.inc.php and you
|
|
will also probably want to skip directory writable check, so set
|
|
SETUP_DIR_WRITABLE to false.
|
|
|
|
External libraries
|
|
------------------
|
|
|
|
phpMyAdmin includes several external libraries, you might want to
|
|
replace them with system ones if they are available, but please note
|
|
that you should test whether version you provide is compatible with the
|
|
one we ship.
|
|
|
|
Currently known list of external libraries:
|
|
|
|
js/jquery - jQuery js framework
|
|
js/colorpicker - jQuery based color picker
|
|
|
|
libarries/PHPExcel - PHPExcel library for handling Excel files
|
|
libraries/php-gettext - php-gettext library
|
|
libraries/tcpdf - tcpdf library, modified for our needs!
|
|
|
|
# vim: et ts=4 sw=4 sts=4 tw=72 spell spelllang=en_us
|