X7ROOT File Manager
Current Path:
/var/softaculous/akaunting
var
/
softaculous
/
akaunting
/
ðŸ“
..
📄
.env
(727 B)
📄
akaunting.sql
(76.65 KB)
📄
akaunting.zip
(68.27 MB)
📄
clone.php
(4.71 KB)
📄
copy_dir.php
(1.33 KB)
📄
edit.php
(4.38 KB)
📄
edit.xml
(447 B)
📄
extend.php
(10.01 KB)
📄
fileindex.php
(254 B)
ðŸ“
images
📄
import.php
(3.55 KB)
📄
info.xml
(5.31 KB)
📄
install.js
(921 B)
📄
install.php
(4.21 KB)
📄
install.xml
(2.94 KB)
📄
md5
(1.04 KB)
📄
notes.txt
(722 B)
ðŸ“
php53
ðŸ“
php56
ðŸ“
php71
ðŸ“
php81
ðŸ“
php82
📄
update_pass.php
(555 B)
Editing: copy_dir.php
<?php @unlink('copy_dir.php'); $src = '[[srcpath]]/storage/app/uploads'; $dst = '[[softpath]]/storage/app/uploads'; function copy_r($path, $dest){ // Is it a Directory ? if( is_dir($path) ){ // Create the Destination Dir @mkdir($dest); $stat = stat($path); // Set the mode of the destination if(!empty($stat['mode'])){ @chmod($dest, $stat['mode']); } // Set the UID if(!empty($stat['uid'])){ @chown($dest, $stat['uid']); } // Set the GID if(!empty($stat['gid'])){ @chgrp($dest, $stat['gid']); } // Start reading the current directory $objects = scandir($path); if( sizeof($objects) > 0 ){ foreach( $objects as $file ) { if( $file == "." || $file == ".." ){ continue; } // Go on copy_r( $path.'/'.$file, $dest.'/'.$file ); } } return true; }elseif( is_file($path) ){ //To exclude some files if set in script's clone.php's __pre_unzip() function $ret = copy($path, $dest); $stat = stat($path); // Set the mode of the destination if(!empty($stat['mode'])){ @chmod($dest, $stat['mode']); } // Set the UID if(!empty($stat['uid'])){ @chown($dest, $stat['uid']); } // Set the GID if(!empty($stat['gid'])){ @chgrp($dest, $stat['gid']); } return $ret; }else{ return false; } } copy_r($src, $dst);
Upload File
Create Folder