Dashboard
PHP:
7.4.33
OS:
Linux
User:
sortthru
/
/
usr
/
local
/
cpanel
/
scripts
/
cpan_sandbox
/
x86_64
📤 Upload
📝 New File
📁 New Folder
Close
Editing: mysql_config
#!/usr/local/cpanel/3rdparty/bin/perl $ENV{'LANG'} = 'C'; my @paths = grep( !/cpan_sandbox/, split( /:/, $ENV{'PATH'} ) ); foreach my $path (@paths) { if ( -x $path . '/' . 'mysql_config' ) { if ( grep( /--libs/, @ARGV ) && -e '/usr/lib64' ) { print "-L/usr/lib64 "; } exec( $path . '/' . 'mysql_config', @ARGV ); } } die;
Save
Cancel