When connected to the console, all previously specified aliases may not work, the settings set in .bashrc
like overriding PHP version, etc. This problem occurs due to the fact that the file is missing .bash_profile
, in which the launch of all settings from .bashrc
... This behavior can occur for connections through third-party SSH clients instead of WebSSH.
To fix the problem do the following:
.bash_profile
if it was not created. Please note that there must be a period at the beginning of the file name..bashrc
:if [ -f ~/.bashrc ]; then . ~/.bashrc fi
from 2-00 to 7-00