Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
lib /
public /
Files /
Delete
Unzip
Name
Size
Permission
Date
Action
Cache
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Config
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
External
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Mount
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
ObjectStore
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
Storage
[ DIR ]
drwxr-xr-x
2018-04-19 18:15
AlreadyExistsException.php
1.16
KB
-rw-r--r--
2018-04-19 18:15
EntityTooLargeException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
File.php
2.39
KB
-rw-r--r--
2018-04-19 18:15
FileContentNotAllowedException.php
1.05
KB
-rw-r--r--
2018-04-19 18:15
FileInfo.php
5.06
KB
-rw-r--r--
2018-04-19 18:15
FileNameTooLongException.php
1.19
KB
-rw-r--r--
2018-04-19 18:15
Folder.php
4.11
KB
-rw-r--r--
2018-04-19 18:15
ForbiddenException.php
1.46
KB
-rw-r--r--
2018-04-19 18:15
IHomeStorage.php
1.13
KB
-rw-r--r--
2018-04-19 18:15
IMimeTypeDetector.php
1.94
KB
-rw-r--r--
2018-04-19 18:15
IMimeTypeLoader.php
1.48
KB
-rw-r--r--
2018-04-19 18:15
IRootFolder.php
1.13
KB
-rw-r--r--
2018-04-19 18:15
InvalidCharacterInPathException.php
1.18
KB
-rw-r--r--
2018-04-19 18:15
InvalidContentException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
InvalidPathException.php
1.14
KB
-rw-r--r--
2018-04-19 18:15
LockNotAcquiredException.php
1.88
KB
-rw-r--r--
2018-04-19 18:15
NoReadAccessException.php
1.13
KB
-rw-r--r--
2018-04-19 18:15
Node.php
7.31
KB
-rw-r--r--
2018-04-19 18:15
NotEnoughSpaceException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
NotFoundException.php
1.14
KB
-rw-r--r--
2018-04-19 18:15
NotPermittedException.php
1.15
KB
-rw-r--r--
2018-04-19 18:15
ReservedWordException.php
1.16
KB
-rw-r--r--
2018-04-19 18:15
Storage.php
10.87
KB
-rw-r--r--
2018-04-19 18:15
StorageAuthException.php
1.24
KB
-rw-r--r--
2018-04-19 18:15
StorageBadConfigException.php
1.28
KB
-rw-r--r--
2018-04-19 18:15
StorageConnectionException.php
1.26
KB
-rw-r--r--
2018-04-19 18:15
StorageInvalidException.php
1.16
KB
-rw-r--r--
2018-04-19 18:15
StorageNotAvailableException.php
2.56
KB
-rw-r--r--
2018-04-19 18:15
StorageTimeoutException.php
1.25
KB
-rw-r--r--
2018-04-19 18:15
UnseekableException.php
1.09
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
<?php /** * @author Björn Schießle <bjoern@schiessle.org> * @author Jesús Macias <jmacias@solidgear.es> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <icewind@owncloud.com> * @author Robin McCorkell <robin@mccorkell.me.uk> * @author Vincent Petry <pvince81@owncloud.com> * * @copyright Copyright (c) 2018, ownCloud GmbH * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ /** * Public interface of ownCloud for apps to use. * Files/AlreadyExistsException class */ // use OCP namespace for all classes that are considered public. // This means that they should be used by apps instead of the internal ownCloud classes namespace OCP\Files; use OC\HintException; /** * Storage is temporarily not available * @since 6.0.0 - since 8.2.1 based on HintException */ class StorageNotAvailableException extends HintException { const STATUS_SUCCESS = 0; const STATUS_ERROR = 1; const STATUS_INDETERMINATE = 2; const STATUS_INCOMPLETE_CONF = 3; const STATUS_UNAUTHORIZED = 4; const STATUS_TIMEOUT = 5; const STATUS_NETWORK_ERROR = 6; /** * StorageNotAvailableException constructor. * * @param string $message * @param int $code * @param \Exception $previous * @since 6.0.0 */ public function __construct($message = '', $code = self::STATUS_ERROR, \Exception $previous = null) { $l = \OC::$server->getL10N('core'); parent::__construct($message, $l->t('Storage is temporarily not available'), $code, $previous); } /** * Get the name for a status code * * @param int $code * @return string * @since 9.0.0 */ public static function getStateCodeName($code) { switch ($code) { case self::STATUS_SUCCESS: return 'ok'; case self::STATUS_ERROR: return 'error'; case self::STATUS_INDETERMINATE: return 'indeterminate'; case self::STATUS_UNAUTHORIZED: return 'unauthorized'; case self::STATUS_TIMEOUT: return 'timeout'; case self::STATUS_NETWORK_ERROR: return 'network error'; default: return 'unknown'; } } }