Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
php55 /
usr /
share /
pear /
ezc /
Base /
Delete
Unzip
Name
Size
Permission
Date
Action
exceptions
[ DIR ]
drwxr-xr-x
2021-08-25 16:57
interfaces
[ DIR ]
drwxr-xr-x
2021-08-25 16:57
metadata
[ DIR ]
drwxr-xr-x
2021-08-25 16:57
options
[ DIR ]
drwxr-xr-x
2021-08-25 16:57
structs
[ DIR ]
drwxr-xr-x
2021-08-25 16:57
base.php
21.7
KB
-rw-r--r--
2015-01-24 02:46
base_autoload.php
3.08
KB
-rw-r--r--
2015-01-24 02:46
ezc_bootstrap.php
1.12
KB
-rw-r--r--
2015-01-24 02:46
features.php
10.9
KB
-rw-r--r--
2015-01-24 02:46
file.php
17.33
KB
-rw-r--r--
2015-01-24 02:46
init.php
4.07
KB
-rw-r--r--
2015-01-24 02:46
metadata.php
3.43
KB
-rw-r--r--
2015-01-24 02:46
options.php
5.23
KB
-rw-r--r--
2015-01-24 02:46
struct.php
820
B
-rw-r--r--
2015-01-24 02:46
Save
Rename
<?php /** * File containing the ezcBaseStruct. * * @package Base * @version 1.8 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * Base class for all struct classes. * * @package Base * @version 1.8 */ class ezcBaseStruct { /** * Throws a BasePropertyNotFound exception. * * @param string $name * @param mixed $value * @ignore */ final public function __set( $name, $value ) { throw new ezcBasePropertyNotFoundException( $name ); } /** * Throws a BasePropertyNotFound exception. * * @param string $name * @ignore */ final public function __get( $name ) { throw new ezcBasePropertyNotFoundException( $name ); } } ?>