app/index/controller/index.php 按照以下代码修改
class Index extends BaseController

{
    protected $middleware = [ // 限制index,show方法需要登录
        \app\index\middleware\Login::class=> ['only'=>['download']]
    ];
    public function initialize()
    {
        parent::initialize();

        // 非开发者模式下,屏蔽非致命错误
        if (!$this->app->isDebug()) {
            // 屏蔽掉notice错误
            //error_reporting(E_ERROR & ~E_WARNING & ~E_NOTICE);
            error_reporting(E_ERROR);
        }

        //前台模板调用会员信息s
        $this->user = \app\index\library\User::instance();
        $user = $this->user->getUser();
        if ($user) {
            $user['group'] = $this->user->getGroups($user['id']);
        }
        $this->view->assign('user', $user);
       //前台模板调用会员信息e

    }

\vendor\topthink\framework\src\helper.php
636行
return app()->getRootPath() . 'public' . DIRECTORY_SEPARATOR . ($path ? ltrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR : $path);
变更为
return app()->getRootPath() . DIRECTORY_SEPARATOR . ($path ? ltrim($path, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR : $path);
index.php,api.php,admin.php
require __DIR__ . '/../vendor/autoload.php'; 变更为 require __DIR__ . '/vendor/autoload.php';

smtp设置自行参考手册说明
app/index/controller/Guestbook.php
90行后加
$list="";
foreach ($row as $key => $value) {
  $list.="".$key.":".$value."";
}
接着把
(new MsgSend())->send($config['msgemail'], $cate['title'], '有新的['.$cate['title'].']表单信息提交,请前往后台查看');
变更为
(new MsgSend())->send($config['msgemail'], $cate['title'], '有新的表单信息提交'.$list.'');

后台内容列表展示字段样式定义在conf/Functions.php下面format_fields()函数里面

站点关闭模板路径在app\home\c\CommonController.php下面close()函数里面

站点验证码函数定义在\frphp\extend\Vercode.php下面Imagecode里

站点前台验证码函数app\home\c\CommonController.php下面vercode()函数里面

站点后台验证码函数\app\admin\c\LoginController.php下面vercode()函数里面

后台删除缩略图js函数deleteImage_auto()定义在\app\admin\t\tpl\common\fields.html文件

系统提示函数修改frphp\common\Functions.php

伪静态禁止某文件夹执行某种文件
apache:
RewriteRule (uploads|static/upload)/(.*).(php)$ – [F]
RewriteRule (static/template)/(.*).(html)$ – [F]
nginx:
location ~* ^/(uploads|static/upload)/.*.(php|php5)$ {
        deny all; 
}
location ~* ^/(static/template)/.*.(html)$ {
        deny all; 
}

极致cms系统定义信息提示方法使用的的alert(),缺少一些美感,该方法定义在\frphp\common\Functions.php里面function Success()和function Error()两个函数里面,找到方法引入layer.js,使用layer.msg(),代替alert(),可以简单修改弹出信息的样式,也可以自定义复杂的方法