ezplatform | Meta repository that pulls in all dependencies | Content Management System library
kandi X-RAY | ezplatform Summary
kandi X-RAY | ezplatform Summary
Ibexa Platform is a fully open source professional CMS (Content Management System) developed by Ibexa and the Ibexa Community. Current Ibexa Platform v3 is built on top of the Symfony 5 framework (Full Stack). Ibexa Platform is fully open source and it is the foundation for the commercial Ibexa Digital Experience Platform software, which adds advanced features for editorial teams, entirely built on top of Ibexa Platform APIs.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of ezplatform
ezplatform Key Features
ezplatform Examples and Code Snippets
Community Discussions
Trending Discussions on ezplatform
QUESTION
I faced with range case, when I was try to install some bundle in locally I faced with erro, but when I try install the same bundle in test server everything installed without error. I use docker-compose and install bundle inside in image. docker-copose and other docker file with all dependecies absolutelty the same, all in git.
composer require league/flysystem-bundle
and in locally I faced with that
Using version dev-master for league/flysystem-bundle ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-dev) Restricting packages listed in "symfony/symfony" to "5.0.*"
Installation failed, reverting ./composer.json to its original content.
...ANSWER
Answered 2020-Sep-08 at 21:46Looks like composer 1.10.11 is broken. You can switch to 1.10.10 like this:
QUESTION
I've installed eZ Platform on my Mac using the eZ Launchpad docs: https://ezsystems.github.io/launchpad/.
After the installation, I'm able to successfully access the platform and start creating the Content Model.
I would also like to use GraphQL, so I followed the instructions: https://doc.ezplatform.com/en/latest/api/graphql/.
Unfortunately I get an error when I try to generate the schema using the commands:
...ANSWER
Answered 2019-Nov-12 at 13:44Looks like you have executed the composer and symfony commands directly from your host and you have setup the project using launchpad.
Try this instead:
QUESTION
I have a few sites running on symfony 3 with ezplatform but the cache folder just grows indefinitely and requires that I manually clear it once a week.
...ANSWER
Answered 2019-Jul-26 at 18:54There are two types of filesystem caches in eZ Platform:
1) Persistence cache - caches the content loaded from the database. Size of this cache directly corelates with number of content you have. If you have hundreds of thousands of content objects, this can be the bottleneck.
2) HTTP cache - created by the Symfony reverse proxy (enabled with SetEnv SYMFONY_HTTP_CACHE 1
in your vhost). If you have a lots of logged in users or your anonymous users somehow create a session, or if the caching is misconfigured somehow, this can potentially be the cause, depending on the contents of your Vary
response headers sent by the app.
In any case, none of these caches are cleared automatically, unfortunatelly. You will need to clear them by yourself.
QUESTION
I have a simple site, the base language is English with a translation of German.
Here is the site-access setup from the ezplatform.yml
...ANSWER
Answered 2017-Aug-21 at 18:02We're using this matcher config and it works okay:
QUESTION
I am trying to find out how to create a field definition with a dynamic multi image support. The image field type in ezplatform doesn't support dynamic multi images. I will appreciate even creating a custom a field.Any ideas?
...ANSWER
Answered 2017-Aug-11 at 12:10Thanks for calrification and telling more about your Use-Case.
you can use object-relations
attribute for the purpose of image gallery and iterate over all related objects to that field and display them. your user should just relate image
objects.
in that way the user can relate as many image object as he/she wants from Media Library.
QUESTION
I am having no joy in successfully getting a translated site-access to work. I have a clean install of the latest stable ezplatform, i have only the default content types "folder" and "article". I have one content object after the root location and have the said object in english and german (where the new language code is ger-DE
. This is my attempt at an ultra basic ezplatform.yml:
ANSWER
Answered 2017-Aug-06 at 17:45Every time you add a siteaccess in eZ, you should update the anonymous role and add the corresponding user/login access policy to the new siteaccess. Also check that the anonymous role have appropriate policies for enabling access to read required contenttypes and section.
QUESTION
Using ezplatform with "kaliop/ezmigrationbundle": "^3.0"
.
I read and re-read the manual but cannot see anything about auto-generating yml files from exsiting content types; does anyone have any experience with this and happen to know if/where the docs might live?
We have a list of content types that were created in the backend via the gui and now we need to create migration files for them for better development with the dev team.
Update: This is available on v4+ https://github.com/kaliop-uk/ezmigrationbundle/issues/34#issuecomment-317524072#issuecomment-317524072
...ANSWER
Answered 2017-Jul-23 at 02:18I guess that is not how it works!
the bundle generate just an empty yaml file for you and you should fill up the content types (or any other Backend Changes you want) yourself in that yaml file and then take it and apply to your stage or Live Environment.
so unlike Symfony DoctorineMigrationBunlde, this bundle does not read the difference and produce stuff itself.
QUESTION
Preface: in ez4 i remember there was a tpl function to read ini settings, we used to use this to pass specific locations or id's with which we could then render certain content.
In ezplatform I am now doing the same thing but by using the PreContentViewListener (in the PreContentViewListener read a yml file and pass into the view as params), but this doesn't feel like the correct way as the PreContentViewListener doesn't always get triggered, in custom controllers for example.
Question Is there a native way to read yaml files from within twig templates? After searching the docs and available packagists i cannot find anything :/
...ANSWER
Answered 2017-Jul-27 at 11:00Have a look to our CjwPublishToolsBundle. https://github.com/cjw-network/CjwPublishToolsBundle https://github.com/cjw-network/CjwPublishToolsBundle/blob/master/Services/TwigConfigFunctionsService.php
Here we have 2 wrapper twig functions
QUESTION
I'm using ezplatform and trying to figure out how to automatically share common cms content to all pages without writing a separate controller for each view.
This is a simple extract from the yml file:
...ANSWER
Answered 2017-Jul-07 at 23:29You don't have to create a controller for each Content Type. What you want, if I may, is to inject data into the view.
Using a custom controller is one of the options, for generic stuff that you want to inject you can also use https://doc.ez.no/display/DEVELOPER/Injecting+parameters+in+content+views
We have bundled this concept (among other here: https://github.com/Novactive/NovaeZExtraBundle) with a concept of ChildrenProvider.
Also, you mentioned you wanted to inject information related to the header and the footer in the view to get them in the layout. It sounds weird. With eZ but also just with Symfony you can render a controller from a view, them you can render the header and render the footer independently from the view. (that is probably what you should do)
For the children though, I like to use the listener instead of the custom controller. It is managed in the Novactive bundle but be careful if you do it on your own, the pre_content_view listener will trigger on each view (line, full, etc..) And usually, you want to inject stuff in the view full only.
QUESTION
i'm using ezplatform 5.4 , and when i run composer update/install , it show me this error :
...ANSWER
Answered 2017-Mar-27 at 09:21The distribution bundle required in the root composer.json must be updated. On the 5.4.x update instructions page for eZ Platform, you will see for version 5.4.2 that it must be bumped to ~3.0.
Running the composer require command from this chapter may therefore fix your error, but it is hard to be 100% sure. Let me know.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install ezplatform
PHP (7.3 or higher)
Web Server (Recommended: Apache / Nginx. Use of PHP's built-in development server is also possible)
Database server (MySQL 5.5+ or MariaDB 10.0+)
Composer
Git (for development)
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page