示例#1
0
<?php

// Create a backup of the database
$backup = new backups();
$backup->backup();
示例#2
0
 * 
 * allocPSA 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
 * along with allocPSA. If not, see <http://www.gnu.org/licenses/>.
*/
require_once "../alloc.php";
$db = new db_alloc();
# End of functions
if (!$current_user->have_role("god")) {
    alloc_error("Insufficient permissions. Backups may only be performed by super-users.", true);
}
$backup = new backups();
if ($_POST["create_backup"]) {
    $backup->backup();
}
if ($_POST["restore_backup"]) {
    $backup->backup();
    if ($backup->restore($_POST["file"])) {
        $TPL["message_good"][] = "Backup restored successfully: " . $_POST["file"];
        $TPL["message_good"][] = "You will now need to manually import the installation/db_triggers.sql file into your database. THIS IS VERY IMPORTANT.";
    } else {
        alloc_error("Error restoring backup: " . $_POST["file"]);
    }
}
if ($_POST["delete_backup"]) {
    # Can't go through the normal del_attachments thing because this isn't a real entity
    $file = $_POST["file"];