First steps¶
This page lists first steps you can take after installing Ibexa DXP. These are most common actions you may need to take in a new installation.
Beginner tutorial
To go through a full tutorial that leads from a clean installation to creating a full site, see Beginner tutorial.
Remove welcome page¶
To remove the welcome page and get a completely clean installation to start your project with, remove the following files and folders from your installation:
- Delete the file
config/packages/ibexa_welcome_page.yaml
- Delete the
templates/themes/standard/full/welcome_page.html.twig
file - Delete the
assets/scss
folder - Delete all
translations/ibexa_platform_welcome_page.*
files - In
webpack.config.js
remove theEncore.addEntry
section and uncomment the last line, so that the end of the file looks like this:
1 2 3 4 |
|
Add a content type¶
1. In your browser, go to the Back Office: <your_domain>/admin
, and use the default credentials to log in: admin/publish
.
Password change
Make sure that you change the default password before you switch your installation from development to production. For more information about passwords, see Passwords. For more information about production security, see Security checklist.
2. In the upper-right corner, click the avatar icon and in the drop-down menu disable the Focus mode.
3. Select Content and go to content types.
4. Enter the Content group and create a new content type.
5. Input the content type's name, for example "Blog Post", and identifier: blog_post
.
6. Below, add a Field definition of the type Text Line. Name it "Title" and give it identifier title
.
7. Add another Field definition: Text (type Rich text) with identifier text
.
8. Save the content type.
More information
Create Twig templates and match then with view config¶
To display Content in the front page you need to define content views and templates.
Content views decide which templates and controllers are used to display content.
1. In config/packages/ibexa.yaml
, under ibexa.system
add the following block (pay attention to indentation: site_group
should be one level below system
):
1 2 3 4 5 6 7 |
|
Content view templates use the Twig templating engine.
2. Create a template file templates/full/blog_post.html.twig
:
1 2 |
|
More information
Create content and test view templates¶
1. Go to the Back Office, activate Content/Content structure and create a new content item by clicking Create content.
2. Select a Blog Post content type. Fill in the content item and publish it.
3. To preview the new content item on the front page, go to <yourdomain>/<Content-item-name>
.
For example, if the title of the Blog post is "First blog post", the address will be <yourdomain>/first-blog-post
.
Add SiteAccesses¶
You can use SiteAccesses to serve different versions of the website.
SiteAccesses are used depending on matching rules. They are set up in YAML configuration under the ibexa.siteaccess.list
key.
1. In config/packages/ibexa.yaml
add a new SiteAccess called de
for the German version of the website:
1 2 3 4 5 6 |
|
The SiteAccess will automatically be matched using the last part of the URI.
2. You can now access the front page through the new SiteAccess: <yourdomain>/de
.
Log in
At this point you need to log in to preview the new SiteAccess, because an anonymous visitor does not have permissions to view it. See section about permissions below.
For now the new SiteAccess does not differ from the main site.
More information
Add a language and translate Content¶
One of the most common use cases for SiteAccesses is having different language versions of a site.
1. To set up the de
SiteAccess to use a different language, add its configuration under ibexa.system
,
below site.languages
:
1 2 3 4 5 6 |
|
This means that German will be used as the main language for this SiteAccess, and English as a fallback.
2. Go to the Back Office and select Admin > Languages. Add a new language called "German", with the language code ger-DE
.
Make sure it is enabled.
3. Next, go to the Content structure and open the blog post you had created earlier. Switch to the Translations tab and add a new translation.
4. Select German and base the new translation on the English version. Edit the content item and publish it.
5. Go to the front page. The blog post will now display different content, depending on which SiteAccess you enter it from:
<yourdomain>/<content-name>
or <yourdomain>/de/<content-name>
.
More information
Add a design¶
The design engine enables you to use different themes consisting of templates and assets. Each theme is stored in a separate folder and assigned to a SiteAccess.
To create a new theme:
1. Add the following configuration at the bottom of config/packages/ibexa.yaml
(at the same level as ibexa
):
1 2 3 4 |
|
2. In configuration of the de
SiteAccess (under ibexa.system.de
) add: design: de_design
3. Under site
, add design: site_design
4. Go back to the content_view
configuration for the blog post. Change the path to the template so that it points to the folder for the correct design:
template: '@ibexadesign\full\blog_post.html.twig'
This means that the app will look for the blog_post.html.twig
file in a folder relevant for the SiteAccess: de_design
for the de
SiteAccess, or site_design
for other SiteAccesses in site_group
.
5. Create a themes
folder under templates
, and two folders under it: de_design
and site_design
.
6. Move the existing full\blog_post.html.twig
file under site_design
.
7. Copy it also under de_design
. Modify the second one in any way (for example, add some html), so you can preview the effect.
8. To see the difference between the different themes, compare what is displayed at <yourdomain>/<content-name>
and <yourdomain>/de/<content-name>
Set up permissions¶
To allow a group of users to edit only a specific content type (in this example, blog posts), you need to set up permissions for them.
Users and User Groups are assigned Roles. A Role can contain a number of Policies, which are rules that permit the user to perform a specific function. Policies can be additionally restricted by Limitations.
1. Go to Admin > Users. Create a new User Group (the same way you create regular Content). Call the group "Bloggers".
2. In the new group create a User. Remember their username and password. Mark the user as "Enabled".
3. Go to Admin > Roles. Create a new Role called "Blogger".
4. Add Policies that will allow the User to log in:
User/Login
Content/Read
Content/Versionread
Section/View
Content/Reverserelatedlist
5. Now add Policies that will allow the User to create and publish content, limited to Blog Posts:
Content/Create
with Limitation for content type Blog PostContent/Edit
with Limitation for content type Blog PostContent/Publish
with Limitation for content type Blog Post
6. In the Assignments tab assign the "Blogger" Role to the "Bloggers" group.
You can now log out and log in again as the new User. You will be able to create Blog Posts only.
More information