OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
php83
/
usr
/
share
/
pear
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
.channels
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📄
.filemap
7.34 KB
08/10/2023 06:22:21 AM
rw-r--r--
📄
.lock
0 bytes
08/10/2023 06:22:21 AM
rw-r--r--
📁
.pkgxml
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
.registry
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
Archive
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
Console
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
OS
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
PEAR
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📄
PEAR.php
35.32 KB
08/10/2023 06:22:21 AM
rw-r--r--
📁
Structures
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📄
System.php
20.21 KB
08/10/2023 06:22:21 AM
rw-r--r--
📁
XML
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📁
data
-
02/16/2024 09:37:36 PM
rwxr-xr-x
📄
pearcmd.php
14.51 KB
08/10/2023 06:22:21 AM
rw-r--r--
📄
peclcmd.php
1.1 KB
08/10/2023 06:22:21 AM
rw-r--r--
📁
test
-
02/16/2024 09:37:36 PM
rwxr-xr-x
Editing: peclcmd.php
Close
<?php /** * PEAR, the PHP Extension and Application Repository * * Command line interface * * PHP versions 4 and 5 * * @category pear * @package PEAR * @author Stig Bakken <ssb@php.net> * @author Tomas V.V.Cox <cox@idecnet.com> * @copyright 1997-2009 The Authors * @license http://opensource.org/licenses/bsd-license.php New BSD License * @link http://pear.php.net/package/PEAR */ /** * @nodep Gtk */ //the space is needed for windows include paths with trailing backslash // http://pear.php.net/bugs/bug.php?id=19482 if ('/opt/alt/php83/usr/share/pear ' != '@'.'include_path'.'@ ') { ini_set('include_path', trim('/opt/alt/php83/usr/share/pear '). PATH_SEPARATOR . get_include_path()); $raw = false; } else { // this is a raw, uninstalled pear, either a cvs checkout, or php distro ini_set('include_path', __DIR__ . PATH_SEPARATOR . get_include_path()); $raw = true; } define('PEAR_RUNTYPE', 'pecl'); require_once 'pearcmd.php'; /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * indent-tabs-mode: nil * mode: php * End: */ // vim600:syn=php ?>