问题描述
我正在尝试在Bluehost提供的共享托管解决方案上安装CakePHP 3应用程序。当我尝试从控制台(实际上是任何cake命令)进行 bin / cake bake
时,得到以下输出:
I'm attempting to get a CakePHP 3 app setup on a shared hosting solution provided by Bluehost. When I attempt to bin/cake bake
from a console (or any cake commands, really) I get the following output:
################################################################################
#
# Bake is a shell script for running CakePHP bake script
#
# CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
# Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
#
# Licensed under The MIT License
# For full copyright and license information, please see the LICENSE.txt
# Redistributions of files must retain the above copyright notice.
#
# @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
# @link http://cakephp.org CakePHP(tm) Project
# @since 1.2.0
# @license http://www.opensource.org/licenses/mit-license.php MIT License
#
################################################################################
# Canonicalize by following every symlink of the given name recursively
canonicalize() {
NAME="$1"
if [ -f "$NAME" ]
then
DIR=$(dirname -- "$NAME")
NAME=$(cd -P "$DIR" > /dev/null && pwd -P)/$(basename -- "$NAME")
fi
while [ -h "$NAME" ]; do
DIR=$(dirname -- "$NAME")
SYM=$(readlink "$NAME")
NAME=$(cd "$DIR" > /dev/null && cd $(dirname -- "$SYM") > /dev/null && pwd)/$(basename -- "$SYM")
done
echo "$NAME"
}
CONSOLE=$(dirname -- "$(canonicalize "$0")")
APP=$(dirname "$CONSOLE")
exec php "$CONSOLE"/cake.php "$@"
exit
我的文件夹结构当前设置为:
My folder structure is currently set as :
/public_html
/app
/cakestuff
使用以下代码生成:
php composer.phar create-project --prefer-dist cakephp/app app
我也尝试在public_html之外设置应用程序,但我不知道在哪里寻找其他潜在问题。
I've also attempted to set up the app outside of public_html, but I have no idea where to look for other potential issues.
看起来我的cake命令不在
It looks like my cake commands aren't actually being run.
推荐答案
我在Hostmonster服务器上遇到了相同的问题,该问题与Bluehost相同或相似。以下内容似乎有效:
I had same problem on Hostmonster server, which is same or similar to Bluehost. The following appears to work:
php-cli bin/cake.php bake
这与,但带有 php-cli。
This is same as suggestion from Arak Tai'Roth above, but with "php-cli".
这篇关于Bluehost控制台命令上的CakePHP 3不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!