1

Topic: D8 Install first Indicia page problem

Having a play with D8 and Indicia today and have stumbled at the first hurdle. D8 has installed fine and i have installed/configured the iform module (latest master from github), i also needed to install Inlinejs before it would work but the diagnostics appeared to be happy.

However, On trying to create my first Indicia content page things have gone awry. The content type is there and the editor loads ok.
I can then select a category from the drop down but the page type does not update (see attached image).

Similarly, the checkbox "Only show recommended page types" does not filter the category as i suspect it should.

Trying to save the page at any point, even without trying to apply the iform components, results in "500 (Internal Server Error)"...

Most certainly a mis-config but not sure where i have gone wrong.. I should mention that this is the second Indicia powered site i'm trying to set up the other being on D7 at a separate sub domain. Could the issue be being caused by connecting two separate sub domains to the same warehouse?(the first site appears as yet unaffected..)




(as an aside why on earth isn't .png allowed?)

Post's attachments

contentpage.jpg 56.21 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.
Natural History & Biodiversity Data Enthusiast

2

Re: D8 Install first Indicia page problem

Hi Ben
First thing I'd do is try switching to the develop version of the iform module. It includes a version of inlineJs. Here are some rough notes I wrote for getting D8 and Indicia up and running:

1)    I follow the instructions for setting up Drupal & git: https://www.drupal.org/node/803746. I skip the step “Creating the Central Repository” since I use GitHub, add my GitHub repo to the remotes as described under “Updating the remotes”. When it says create a working branch, I create one called “develop”.
2)    When I get to the point where Drupal 8 is installed, I use git to grab the Indicia code:
git submodule add https://github.com/Indicia-Team/drupal- … -iform.git modules/iform
git submodule add https://github.com/Indicia-Team/drupal- … atures.git modules/indicia_features
git submodule update --init --recursive

3)    You’ll then want to switch to the develop branch on the iform module (which works well and includes the inlineJs code):
cd modules/iform
git checkout develop
cd client_helpers
git checkout develop
cd ../media
git checkout develop
cd ../../../
4)    I then use Drush to download other modules, or use the Drupal UI.

I’ve found that the D8 version of AdaptiveTheme is pretty good, with nice flexibility and support for Sass, so I’ve been using that:
drush dl adaptivetheme
drush dl at_tools
drush en at_theme_generator
Then check the documentation on this at http://docs.adaptivethemes.com

You should find all the basic functionality works.
Regards
John

John van Breda
Biodiverse IT

3

Re: D8 Install first Indicia page problem

Thanks John, i think it's going to take me a while to get my head around git and actually try this but it looks worth putting the time in for.

Natural History & Biodiversity Data Enthusiast