Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
phpMyAdmin-3.3.10.5-all-languages
/
scripts
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//home/phpMyAdmin-3.3.10.5-all-languages/scripts/convertcfg.pl
#!/usr/bin/perl # # $Id$ # # Configuration converter # Converts from old-style (Pre-2.3) configuration files to new format found in PMA-2.3 # # Takes input from STDIN, sends output to STDOUT # # By Robin Johnson robbat2@users.sourceforge.net # Many thanks to Patrick Lougheed pat@tfsb.org # while(<>) { s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g; print; }