3

我正在尝试在 codeigniter 中创建一个基本的 CMS,并希望能够在 CMS 的后端(即网页上)打开视图文件。这样做的好处是能够直接从代码编辑器/ftp 客户端上传视图,但如果此选项不可用,则可以使用 CMS 修改它们。我知道我可以使用数据库来完成,但需要能够直接 FTP 视图。

我试过用谷歌搜索各种东西,但关键词似乎得到了完全不同的结果。

所以它基本上是打开文件,将其内容放入表单/文本区域框中,然后在保存时再次直接保存到文件中,但我找不到任何示例!

提前致谢!

C。

4

2 回答 2

3

列出文件

使用目录迭代器,您可以列出文件夹的所有文件。(在您的情况下,所有 .php 文件的列表都放入 views 文件夹)


获取/设置文件内容

然后使用file_get_contents 您可以检索文件的内容。

并使用file_put_contents您可以设置文件的内容。

你也可以检查

这与 file_get_contents 和 file_put_contents 相同...


至于验证

如果文件is_readable ,您可以在获取文件内容之前检查

如果文件is_writable,您可能还想在设置内容之前检查


补充

另外,如果我是你,我会为你的 cms 添加一个语法荧光笔,你可能想检查一些大鱼使用的语法荧光笔,比如:Apache、Aptana、Mozilla、Yahoo、Wordpress,...

http://alexgorbatchev.com/SyntaxHighlighter/

于 2012-07-31T12:54:32.550 回答
1

这是很久以前的(我认为是)可行的解决方案,我可以说它在过去有效,但我不保证它仍然与您当前的系统兼容。

特征

  • 密码登录(不是很安全,但会远离普通用户)
  • 防止您点击后退按钮并用旧代码覆盖您的更改(可能会更新 $rand 以使用时间戳而不是随机的)

您可能可以对此进行很多更新。

这主要是一个快速而肮脏的解决方案,只是为了让某些东西正常工作

如果您还需要它来列出文件,您可以尝试将 readdir 或 scandir 的结果(为了快速)输出到 div 中。或者,@Hipny 对如何构建自己的想法有正确的想法

代码:

<?
$rand = mt_rand(0, 65535);
setcookie("check", $rand);
if ($_POST['pass'] != ""){
setCookie ("auth", hash("sha512", $_POST['pass']));
echo "<meta http-equiv='refresh' content='0;" . $_SERVER["SCRIPT_NAME"] . "'>";
}
if ($_GET['logout'] == "1"){
setCookie("auth","");
echo "<meta http-equiv='refresh' content='0;" . $_SERVER["SCRIPT_NAME"] . "'>";
}
if ($_COOKIE['auth'] != "!!!! INSERT YOUR OWN SHA512 HASH HERE !!!!"){
echo "<center><h1>Authentication required</h1><br /><form action='" . $_SERVER["SCRIPT_NAME"]. "?" . $_SERVER["QUERY_STRING"] . "' method='post'><input type='password' name='pass'><input type='submit' value='Authenticate'></form></center>";
die();
}
$rand = mt_rand(0, 65535);
setcookie("check", $rand);
?>
<html>
    <head>
        <script language="javascript" type="text/javascript">
        function reloadFile(){
            var query = window.location.search.substring(1);
            var vars = query.split("&");
            var redir = "?";
            for (var i=0;i<vars.length;i++){
                if (vars[i].indexOf("file=") == -1 && vars[i].indexOf("save=1") == -1){
                    if (redir == "") redir = "?" + vars[i];
                    else redir += "&" + vars[i];
                }
            }
            while (redir.indexOf("&&") != -1) redir = redir.replace("&&", "&");
            document.location.href = document.location.href.substring(0, document.location.href.indexOf("?")) + redir + "&file=" + document.getElementById("newfile").value;
        }
        </script>
<title>Editing file: <? echo $_GET['file']; ?></title>
    </head>
    <body>
<table cellspacing="0" cellpadding="0">
<tr>
<td colspan=2">
<input id="newfile" type="text" size="135" onkeydown="if (event.keyCode == 13) document.getElementById('load').click()"><input id="load" type="button" value="Load" onClick="if (confirm('Discard changes?')) reloadFile();">
</td>
</tr>
<tr>
<td colspan="2">
<?php
function ex($message){
throw new Exception($message);
}
function read($file){
try{
@$handle = fopen($file, "rb") or ex("Read Error!");
$contents = stream_get_contents($handle);
fclose($handle);
return htmlspecialchars($contents);
} catch (Exception $e) {
return "Creating new file.";
}
}
function save(){
$data = htmlspecialchars_decode($_POST['data']);
if($_GET['file'] != "") {
      $fp=fopen($_GET['file'], "w");
      fwrite($fp, $_POST['data']);
      fclose($fp);
}
}
//echo strlen ($_POST['data']);
if ($_POST['data'] != "" && $_COOKIE['check'] == $_POST['checksum']) save();
else if ($_GET['save'] == 1) echo "<div id='abort'><h1><font color='FF0000'>Save checksum did not match: save aborted!</font> <a href=\"javascript:void(document.getElementById('abort').style.display = 'none')\" style='color: #000000;text-decoration:none;'>X</a></h1></div>";
?>
        <form name="dataform" id="dataform" method="post" action="<? echo $_SERVER["SCRIPT_NAME"] . "?" . $_SERVER['QUERY_STRING']; if (strpos($_SERVER['QUERY_STRING'],"&save=1") === false) echo "&save=1"; ?>" onSubmit="return confirm('Do you want to save?');">
        <textarea name="data" wrap="off" id="data"<? if ($_POST['h'] != "") echo " rows='" . $_POST['h'] . "'"; else if ($_GET['h'] != "") echo " rows='" . $_GET['h'] . "'"; 
<?
    if ($_GET['file'] != "") echo read($_GET['file']);
?></textarea><br />
<input type="hidden" value="<? echo $rand ?>" id="checksum" name="checksum">
<script language="javascript" type="text/javascript">

</script>
</td>
</tr>
<tr>
<td>
<input type="submit" Value="Save">
<input type="button" Value="Revert" onClick="if (confirm('Are you sure you want to revert?')) document.location.href = document.location.href;">
<input type="button" Value="Logout" onClick="if (confirm('Are you sure you want to logout?')) document.location.href = '<? echo $_SERVER["SCRIPT_NAME"] ?>?logout=1';">
</td>
<td align="right">
<input name="h" id="h" onKeyUp='document.getElementById("data").rows = this.value'> x <input name="w" id="w" onKeyUp='document.getElementById("data").cols = this.value'>
<script language="javascript" type="text/javascript">
document.getElementById("data").style.width = document.body.clientWidth * .9;
document.getElementById("data").style.height = document.body.clientHeight * .8;
</script>
</td>
</tr>
</table>
</form>
</body>
</html>
于 2012-07-31T13:11:55.340 回答