mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-02 23:03:59 +01:00
Now backs up every 30 mins instead of 10 mins New var defining no of days to keep Location & filename now seperate params keepLastDays var passed through as well now This is used when scanning backups dir Any files older than this no of days removed All zip files created are perm 777 now so you can manually delete
28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<?php
|
|
$ICEcoder = array(
|
|
"versionNo" => "v 0.7.8",
|
|
"codeMirrorDir" => "CodeMirror-2.31",
|
|
"cMThisVer" => 2.31,
|
|
"root" => $_SERVER['DOCUMENT_ROOT']."",
|
|
"tabsIndent" => true,
|
|
"checkUpdates" => false,
|
|
"openLastFiles" => true,
|
|
"findFilesExclude" => array("_coder",".doc",".gif",".jpg",".jpeg",".pdf",".png",".swf",".xml",".zip"),
|
|
"codeAssist" => true,
|
|
"visibleTabs" => false,
|
|
"lockedNav" => true,
|
|
"accountPassword" => "",
|
|
"restrictedFiles" => array("wp-",".php",".rb",".sql"),
|
|
"bannedFiles" => array("_coder","wp-",".exe"),
|
|
"allowedIPs" => array("*"),
|
|
"plugins" => array(
|
|
array("Database Admin","images/database.png","margin-top: 3px","plugins/adminer/adminer-3.3.3-mysql-en.php","_blank",""),
|
|
array("Batch Image Processor","images/images.png","margin-top: 5px","http://birme.net","_blank",""),
|
|
array("Zip It!","images/zip-it.png","margin-top: 3px","plugins/zip-it/?zip=|&exclude=.doc,.gif,.jpg,.jpeg,.pdf,.png,.swf,.xml,.zip","fileControl:<b>Zipping Files</b>","30")
|
|
),
|
|
"theme" => "default",
|
|
"tabWidth" => 4,
|
|
"previousFiles" => "",
|
|
"last10Files" => ""
|
|
);
|
|
?>
|