PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /scripts/php_sandbox/ |
| Server: Linux host100322.itwesthosting.com 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64 IP: 144.91.64.173 |
| Dir : //scripts/php_sandbox/php-config |
#!/usr/local/cpanel/3rdparty/bin/perl
$ENV{'LANG'} = 'C';
my @paths = grep( !/php_sandbox/, split( /:/, $ENV{'PATH'} ) );
my $homedir = ( getpwuid($>) )[7];
foreach my $path (@paths) {
next if ( $path =~ /sandbox/i );
if ( -x $path . '/' . 'php-config' ) {
if ( grep( /--prefix/, @ARGV ) ) {
print "$homedir/php";
exit();
}
if ( grep( /--extension-dir/, @ARGV ) ) {
print "$homedir/php/ext";
exit();
}
exec( $path . '/' . 'php-config', @ARGV );
}
}
die "php-config not found";