bitnami redmine problem running post-install step - redmine

I’m trying to install Bitnami Redmine on my computer but the following worning appears:
Problem running post-install step. installationmay not comrrectly
Error running c:\ noysarah/apps/redmine\scripts\redmineini.bet : rake aborted!
HOME environment variable (or HOMEDRIVE and HOMEPATH) must be set and point a directory
If I’m pressing the ‘X’ button the downloads continues. But then when the browser open I’m getting the following message:
“The requested URL was not found on this server”
If someone can help it will be amazing. Thank you.

Bitnami developer here,
Could you please run the following command in a prompt?
set HOME
If you don't have set HOMEDRIVE or HOMEPATH, you have to set them before running the installer. For example, you could set them like this (if your user is Administrator):
HOMEDRIVE=C:
HOMEPATH=\Users\Administrator
I hope it helps.

Related

DDEV does not seem to be instaling drupal (was working before)

I've been using DDEV & Docker-Desktop sucessfully to run installs of drupal8 on my windows 10 machine.
Today I decided to create a new install of Drupal8 (I last did this a month ago or so).
I followed the basic steps:
Create new folder (drupal8test)
Ran the ddev config command inside this folder.
accepted the defaults and choose drupal8
Amended config.yaml so the ports do not clash with others on my machine
Ran the command ddev start
I get a couple of alerts from docker desktop and I share folder's it needs
There are no errors and the URL is provided, on going there I get a 404 file cannot be found error
When I look in the drupal8test folder I see the following folders:
.ddev
drush
files
sites
(Expecting to see web).
Any ideas? (I'm quite new to Drupal and DDEV so I'm sure I'm doing something wrong)
Welcome to ddev and to Drupal, Mark!
ddev has never installed Drupal, it's a local development environment.
There are quickstarts for Drupal (all versions), TYPO3, Magento and Magento2, etc at https://ddev.readthedocs.io/en/stable/users/cli-usage/#quickstart-guides
For Drupal 8, you would follow the Drupal 8 Quickstart:
mkdir my-drupal8-site
cd my-drupal8-site
ddev config --project-type=drupal8 --docroot=web --create-docroot
ddev start
ddev composer create "drupal/recommended-project:^8"
ddev composer require drush/drush
ddev launch
I'm not sure I understand the command you showed
.ddev drush files sites
or what it was trying to accomplish, but after doing this install you can just ls and you'll see the web directory. If you're interested in running drush, you can ddev exec drush status for example, or just ddev ssh and use drush.
Anyway, the next time you get stuck, the docs are waiting for you at https://ddev.readthedocs.io/en/stable/ and there is also lots of community support available here and elsewhere.

Drupal Console Running in Docroot

➜ docroot git:(master) ✗ drupal list
You must set up the project dependencies using `composer install`
I am trying to get the full list of commands for console and to do so I must run the console in the root of my Drupal site. However, when I type drupal list, I get the error above. Can someone tell me what this means? I did run composer install and I still get this error. Tried googling, no luck. I do have composer installed.
Update: I am in docroot and am back to getting this warning:
[WARNING] In order to list all of the available commands you should install
drupal first.
There seems to be a lot of this going around, according to Google and no one answer. Could be a bug. I do have a drupal site installed. I am using the Thunder Distro.

Shiny Server doesnt deploy app

We have installed Shiny Server and RStudio Server on a CentOs 7. We can see the sample-apps that come pre-loaded into it (sample-apps/hello/), which run absolutely fine.
However, when we copy+paste these same server.R and ui.R files into a new folder (sample-apps/new_hello) and try to run this new version, we get the following error:
ERROR: An error has occurred. Check your logs or contact the app author for clarification.
We are also unable to run our own shiny apps which are already working on our own laptops. So it is not R-code related.
Are we missing a step here?
OK, here is my solution:
You should install all the R's libraries in the following folder:
"/usr/local/lib/R/site-library"
and then make sure that the user shiny has the permission to access it.
I hope it can help other users that still looking for a solution.

Deploying django project on AWS elastic beanstalk

I am following the tutorial for deploying a django project on AWS elastic beanstalk here:
http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_Python_django.html
My app works when I test locally but when I deploy, I'm getting a 404 error. Looking at the event logs, I see this message:
Error running user's commands : An error occurred running '. /opt/python/ondeck/env && PYTHONPATH=/opt/python/ondeck/app: django-admin.py syncdb --noinput' (rc: 127) /bin/sh: django-admin.py: command not found
That leads me to believe that the tutorial is missing a part about installing django files on the server or at least configuring my project to recognize django-admin.py. I have django installed on my local machine so it works there.
I know python support is brand new for elastic beanstalk but has anyone deployed django to it?
I believe you don't need to put container_commands in .config because there is no database or table at this moment.
Did you made the step?: Freeze the requirements.txt file.
(djangodev)# pip freeze > requirements.txt
Note
Make sure your requirements.txt file contains the following:
Django==1.4.1
MySQL-python==1.2.3
I had the same problem because I skipped it. Once I did it, add, commit and push. It works!
I followed the same tutorial recently and had a similar result.
At step 6, upon seeing the default django 'congrats' page render locally, I deployed to EB as instructed and got a 404 instead of the default 'congrats' page.
I decided to use the code up to that point as a foundation for following the 'getting started with django tutorial' which led me to a successful rendering of a 'home' view. This is a much more useful place to be anyway. I do agree that there is something wrong with the AWS tutorial and posted to the AWS forums here.
If you can, you should try to access the log file; it might give you a better idea of what's going on. Here's a link that might help:
http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.loggingS3.title.html

django non-rel rollback

I cancelled a deployment to GAE while using django non-rel's manage.py deploy.
Now when I try to redeploy it says Another transaciton is already in progress and use appcfg to rollback.
But django non-rel doesn't have appcfg.py so how can I rollback or fix this issue?
I've scoured the internet and can't find any answers. I've waited about half an hour and it still displays this message.
manage.py deploy calls appcfg.py in order to deploy.
appcfg.py is in the SDK. you must have the SDK installed somewhere if "manage.py deploy" is working. you can look around for it, or download the SDK again.
There's no reason you don't have access to appcfg.py
If you need more help finding it, add details about what platform you're running on, where you installed the appengine SDK and where your python folder is.
What do you mean by "I don't have access to appcfg.py"?
Try going to cmd (for windows), navigate to your app directory, and type in the following:
appcfg.py rollback .
Hit return (enter key) and see if that works. If not, what does it display?