X7ROOT File Manager
Current Path:
/var/softaculous/akaunting
var
/
softaculous
/
akaunting
/
??
..
??
.env
(727 B)
??
akaunting.sql
(76.82 KB)
??
akaunting.zip
(71.74 MB)
??
clone.php
(4.69 KB)
??
copy_dir.php
(1.33 KB)
??
edit.php
(4.38 KB)
??
edit.xml
(447 B)
??
extend.php
(9.97 KB)
??
fileindex.php
(254 B)
??
images
??
import.php
(3.52 KB)
??
info.xml
(5.31 KB)
??
install.js
(921 B)
??
install.php
(4.19 KB)
??
install.xml
(2.94 KB)
??
md5
(1.99 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