简体   繁体   English

在哪里可以找到Cakephp框架文件中的更改日志文件?

[英]where I can find change log file in cakephp framework files?

I want to see all Bug fix of cakephp framework. 我想查看cakephp框架的所有错误修复。 for other php framework Bug fixes are located in change log file in framework, but in cakephp i can't find any changelog file. 对于其他php框架,错误修复位于框架中的更改日志文件中,但是在cakephp中,我找不到任何更改日志文件。 where i cat find this file? 我在哪里找到此文件?

Cakephp doesn't have a changelog file in the repository. Cakephp在存储库中没有更改日志文件。

You can either browse trough the github versions for a short textual changelog: https://github.com/cakephp/cakephp/releases 您可以浏览github版本以获取简短的文本更改日志: https : //github.com/cakephp/cakephp/releases

Alternatively you can read the changes in the cakephp news: http://cakephp.org/pages/news 另外,您可以阅读cakephp新闻中的更改: http : //cakephp.org/pages/news

Or if you want see the granular changes you can browse the source code by tags: https://github.com/cakephp/cakephp/tree/2.6.6 或者,如果您想查看细粒度的更改,则可以通过标签浏览源代码: https : //github.com/cakephp/cakephp/tree/2.6.6

CakePHP Folder Structure CakePHP文件夹结构

  • bin 箱子
  • config 配置
  • logs 日志
  • plugins 外挂程式
  • src src
  • tests 测试
  • tmp tmp
  • vendor 供应商
  • webroot 网络根
  • .htaccess .htaccess
  • composer.json composer.json
  • index.php index.php
  • README.md 自述文件

The logs folder normally contains your log files, depending on your Logging Configuration . logs文件夹通常包含您的日志文件,具体取决于您的Logging Configuration

Make sure that the tmp and logs folders exist and are writable, otherwise the performance of your application will be severely impacted. 确保tmp和logs文件夹存在并且可写,否则将严重影响应用程序的性能。 In debug mode, CakePHP will warn you, if it is not the case. 如果不是这种情况,则在调试模式下,CakePHP将警告您。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM