Drupal 8: configuration menu doesn't work - drupal-8

Drupal 8: configuration menu doesn't work. When I login and click on Configuration, I've got as below:
The website encountered an unexpected error. Please try again later.
Is it possible that this is hosting problem?
I've installed Drupal locally and have no this problem..
How to fix it and see configuration?
I've tried "one click installation" and install Drupal under another domain but this installation doesn't provide option for Modules as "list", "update", "uninstall" and allow only to download modules...
I was told that this on click installation out of date and I should install from Drupal.org but that installation also failed(see error above regarding configuration)
thanks.

I've updated to the new version and I also changed path during installation. It was localhost and I changed it on the path to the server of my host.
After mention above action I could see output.

Related

bitnami redmine problem running post-install step

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.

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.

After successfull installation of opencart, it keeps directing to the install page

I just installed latest opencart to my windows hosting. After the successfull installation, I deleted install folder. When I go to home page or admin page, it takes me to http://www.....com/install/index.php
Can you figure out the problem please?
I already tried in different browser, computer but it did not change a thing

How do I install Jetty WTP Server Adapter for Eclipse 3.5?

Currently I am attempting to install the Jetty WTP Server Adapter for Eclipse 3.5 and get the following errors:
An error occurred while collecting items to be installed session context was:(profile=epp.package.jee,phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,org.mortbay.jetty.serveradaptor,1.0.4
No repository found containing: org.eclipse.update.feature,org.mortbay.jetty.serveradaptor,1.0.4
To install, I attempt to add a new server runtime, click 'Install Additional Server Adapters' and follow the wizard I get when I click on the Generic Jetty Server Adapter that eventually loads. I've had this error in all the RCs up to this point, but currently the active RC is RC4.
I also found the 'Download additional server adapters" route to adding the Jetty (and Glassfish) server adapters failed, with the same dependency issues as the Original Poster.
Downloading the .jar and copying it into the 'plugins' dir of my Eclipse install idd not work. The Jetty server adapter was still not a recognised installed plugin.
I had to go to "Help->Install New Software->Add..." and enter the http://www.webtide.com/eclipse site manually. Then I could see the Jetty adapter, and install it successfully. It seems to have installed into the eclipse/plugins/ rather than copied a .jar file into eclipse/plugins.
This may be what the poster on 2 Jul was trying to say, but it wasn't very clear.
I don't know why, but the "download additional server adapters" dialog hasn't worked for me once with Eclipse 3.5, the install always fails with dependency issues.
I also found I had to manually install all the WST Adapter items to get around failed dependencies, for example:
"Web, XML and Java EE Development->JST Server Adapters", "WST Server Adapters"
and also the "Database Development" items. I'm not sure which were required.. when I'd installed everything that looked likely, all my dependency issues were resolved when installing the Glassfish and Jetty server adapters from their update sites.
There's a new (official!) Jetty WTP Plugin to support Jetty 7.x and 8.x: http://wiki.eclipse.org/Jetty_WTP_Plugin
The problem could be resolved installing the JST Server UI before the Jetty Server Adapter. It is a current bug (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=321663).
That way you can install it either as a plugin or in the servers view.
I think you need org.mortbay.jetty.serveradaptor.1.0.4.jar to install jetty adapter, download from http://www.webtide.com/eclipse , put it in plugins of eclipse.
Hope the answer could help you.

Deploying a "working when run locally via pycharm" django app to webfaction

I've been following the steps in the box under "Configuring Django" here to try and get the django app up onto webfaction after getting it to work locally.
I zipped my project folder and used scp myproject.zip catubc#web513.webfaction.com to get it up. I then used ssh and moved the zip to $HOME/webapps/plot_composite_metrics as the linked steps instruct and unzipped it there. Since the name of my project is "myproject" I didn't have to do steps 6-7.
From the webfaction control panel I have made an application and called it plot_composite_metrics, Django 1.9.1 (mod_wsgi 4.4.21/Python 2.7). I also made a new website called good_morning_cat and added plot_composite_metrics to it.
I have ALLOWED_HOSTS = ['catubc.webfactional.com'] in settings.py
So, as per this example why do I get a "server not found" when I navigate to http://good_morning_cat.catubc.webfactional.com/? What did I forget to do to link my working-locally via pycharm app to said domain?
I have seen this related question, sadly I believe I am using the correct python version, so that's not the issue. Additionally, I do have a paid account if that makes any difference.
You have to add all the domains in the WebFaction control panel, i e http://good_morning_cat.catubc.webfactional.com/ as well.
http://catubc.webfactional.com/ works as this is what you have specified, it's resolved anyway. There's an ImportError because you haven't installed all your dependencies.