CakePHP 3 debug_kit带子目录

时间:2016-06-27 09:10:47

标签: php css cakephp-3.x

在本地开发并立即转移服务器上的所有内容。它工作正常,但调试包没有正确显示。

我无法访问js,css等。所以我只是看到一个空盒子,里面没有装满蛋糕的照片。数据写在数据库中(我使用标准连接,只插入面板请求表。

所以我的猜测是这导致所有这一切。或者我的应用程序安装在子/子目录中。

bootstrap.php中

if (Configure::read('debug')) {
    Plugin::load('DebugKit', ['bootstrap' => true]);
}

app.php     'debug'=> filter_var(env('DEBUG',true),FILTER_VALIDATE_BOOLEAN),

'debug_kit' => [
            'className' => 'Cake\Database\Connection',
            'driver' => 'Cake\Database\Driver\Mysql',
            'persistent' => false,
            'host' => 'XXX-IP',
            //'port' => 'nonstandard_port_number',
            'username' => 'XXXDB',    // Your DB username here
            'password' => 'XXXPW',    // Your DB password here
            'database' => 'scdb',                
            'encoding' => 'utf8',
            'timezone' => 'UTC',
            'cacheMetadata' => true,
            'quoteIdentifiers' => false,
            //'init' => ['SET GLOBAL innodb_stats_on_metadata = 0'],
        ]

它尝试处理的链接是: https://www.example.com/sub/sub2/debug_kit/webroot/css/reset.css

cake位于sub2文件夹

来自webroot的

htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /sub/webroot
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
来自sub2的

htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

2 个答案:

答案 0 :(得分:1)

好吧,我现在得到了它,愚蠢的错误 - 但我仍然想知道为什么它适用于我的其他系统:/

    RewriteBase /sub/sub2
    RewriteRule    ^$    webroot/ [L]
    RewriteRule    (.*) webroot/$1 [L]

webroot/

前面有一个斜线之前

感谢@ AD7six的支持。我很感激。

答案 1 :(得分:0)

除非asset filter is enabled,否则CakePHP 3.x不会自动提供插件资源。最简单的解决方案是symlink the plugin files to the webroot

{{#each thumbs}}
    <img src="{{src}} data-large="{{../images.@key.src}}" data-index"={{_index}}" data-position"={{_position}}" alt="">
{{/each}}

通常建议任何插件资源使用。

应该注意的是, 从不在生产安装上可以访问调试工具包,因为这是一个相当明显的安全问题。