简体   繁体   中英

Using Cakephp 1.3 CLI on Hostgator

I'm using Hostgator.com and I'm trying to bake apps via ssh console. I have connected successfully to via SSH. I have the cakephp folder located at http://www.domainname.com/cakephp

the initial cakephp installation is working fine. Connected to database etc.

This is a list of paths from Hostgator: List

here is my.bash_profile: #.bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
     . ~/.bashrc
fi

# User specific environment and startup programs

export PS1="$ "

alias www="cd /home/username/public_html"

export PATH="/usr/bin/php/bin:/home/username/public_html/cakephp/cake/console:$PATH:$HOME/bin"

When i open terminal I do this: www [enter] -> cake bake [enter]

then I get this problem: -jailshell: /home/username/public_html/cakephp/cake/console/cake: Permission denied

if anyone could help me it would be greatly appreciated. If I have forgot to mention something please tell me asap so I can tell you.

You need to set the executable flag on the cake script.

www
chmod +x cakephp/cake/console/cake

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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