On 09/17/2013 04:40 PM, Alex Muir wrote:
maintenance$ php install.php php install.php --name=ELT --admin=admin --pass=xx&
You should quote your password. If you *do* use & in your password and you don't quote it, the command line interpreter will think "&" is the end of the command and background the command. More details here: http://hacktux.com/bash/ampersand
You have three ampersands in your command line. That is why you end up with this bit:
[1] 18873 [2] 18874 [3] 18875
You also get error messages like:
-bash: --scriptpath=/elt.x.com/public_html/wiki/: No such file or directory
for the same reason: bash thinks "--script..." is the beginning of a new command since it follows the ampersand.
--scriptpath=/elt.x.com/public_html/wiki/
Script path is the bit after the hostname in your URL. If your wiki is reachable via "http://elt.x.com/wiki/", then scriptpath should be set to "/wiki/"
Let me know if you need further help.
Mark.