搜索中心
全部 模块文档 模块 讨论 文档 问答
搜索 www.quickq-id.cfd , 共找到 86 条记录
搜索结果
[文档] ModStart安装说明 - 配置参考
Nginx参考配置 server { listen 80; server_name yourdomain.com; charset utf-8; index index.php index.html; root /path/to/yourdomain.com/public; autoindex off; location ^~ /.git { deny all; } location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_inde...
更新时间:2024-10-13 19:52:00
[文档] Blog主题教程 - 博客链接
/blogs:博客列表 /blogs?keywords=xxx:博客关键词搜索 /blogs?keywords=xxx:博客标签搜索 /blog/{id}:博客详情 /blog/message:留言 /blog/archive:博客归档 /blog/about:关于
更新时间:2023-12-04 10:31:17
[文档] CMS主题教程 - CMS链接
/tag/{name} 标签列表 /a/{id} 内容页面 /search?keywords={keywords} 搜索列表 除了以上默认的地址方式外,所有页面都需要在后台栏目中自定义。
更新时间:2026-06-16 19:20:01
[文档] 模块入门开发教程 - 模块数据调用方式
以调用 Demo 模块中的表 demo_user 数据表为例。 假设 demo_user 数据表有如下数据: id status name age 1 1 张三 20 2 1 李四 21 3 0 王五 22 4 1 赵六 23 首先,创建文件 module/Demo/Util/DemoUserUtil.php,内容如下 1]) ->orderBy('id', 'desc') ->limit($limit) ->get()->toArray(); return $records; } } 下面就可以在 .blade.php 模板文...
更新时间:2024-09-27 17:43:49
[文档] 安装使用常见问题 - Q:网站经过多层 Nginx 转发怎么配置
网站经过多层代理转发,通常在调用 action 方法生成 URL 时会出现异常。 这时可以通过在 .env 文件中设置如下两个配置来修正: # 修正转发协议 FORCE_SCHEMA = http 或 https # 修正用户访问URL SUBDIR_URL = http://www.example.com
更新时间:2026-03-09 14:49:08
[文档] 数据表格 - 数据排序使用
默认按照ID倒序排序,可自定义列表排序 // 默认排序 $grid->defaultOrder(['字段', 'asc或desc']); // 多个排序字段 $grid->defaultOrder([['字段1', 'asc或desc'], ['字段2', 'asc或desc']]);
更新时间:2026-06-17 10:17:16
[文档] 开发必看 - 队列调度
队列的目的是将耗时的任务延时处理,比如发送邮件、文档转换处理等,从而大幅度缩短 Web 请求和响应的时间。 队列配置文件存放在 config/queue.php。每一种队列驱动的配置都可以在该文件中找到,包括数据库、Beanstalkd、Amazon SQS、Redis以及同步(本地使用)驱动。 如何使用 MySQL 作为队列驱动 ① 生成数据库队列表迁移文件 在执行该步骤前,请先检查迁移文件 database/migrations/xxxx_xx_xx_xxxxxx_create_jobs_table.php 是...
更新时间:2025-07-28 22:31:59
[文档] CMS主题教程 - 通用页面
公共变量 $pageTitle 页面标题 $pageKeywords 页面关键词 $pageDescription 页面描述 配置 !!!include(docs/.vuepress/include/Config.md)!!! // 企业名称 {{ modstart_config('Cms_CompanyName') }} // 企业传真 {{ modstart_config('Cms_ContactFax') }} // 联系人 {{ modstart_config('Cms_ContactContactPerson') }} // 企业联系QQ {{ modstart_config('Cms_ContactQQ') }} // 企业介绍标题 {{ modstart_config('Cms_Hom...
更新时间:2026-06-16 19:20:01
[文档] PHPStudy安装ModStart - 安装教程
下载安装PHPStudy 访问以下地址进行下载(v8.1) https://www.xp.cn/download.html PHPStudy环境配置 创建网站 PHP版本 php-5.6.9-nts PHP扩展 安装OpenSSL扩展安装FileInfo扩展安装Exif扩展 复制源码至根目录 配置网站根目录至 public 配置伪静态 Nginx伪静态参考配置 location / { try_files $uri $uri/ /index.php?$query_string; } Apache伪静态参考配置 不需要配置 增加数据库 设置防止警告参数 always_populate_raw_p...
更新时间:2024-09-27 17:43:49
[文档] WampServer安装ModStart - 安装步骤
下载WampServer 官网地址:https://www.wampserver.com/en/ 安装完成 右下角出现“W”标记 下载源码 https://modstart.com/download 解压源码到wamp/www 选择PHP版本为7.0.x 创建数据库 新建modstart数据库 修改根目录 wamp\scripts\config.inc.php修改$wwwDir = $c_installDir.’/www/public’ wamp\bin\apache\apache2.x.x\conf\httpd.conf寻找DocumentRoot,把后面的值改成/www/public 访问安装目录 localhost/install.php...
更新时间:2024-09-27 17:43:49
QQ
微信
客服