Questions tagged [ezpublish]

eZ Publish is a PHP based CMF/CMS for publishing, especially editorial content.

eZ Publish is a PHP based CMS. Someone calls it a CMF where F stands for framework. It's very flexible: it has a pool of basic classes from where you can choose to create your content (such as Folder, Article, Link, File and so on), but it allows you to add or to modify classes, adding other attributes to them.

One of its greatest features is the cache handling, very powerful since the focus of eZ Systems (the company behind eZ Publish) is on the editorial world and large size sites.

There is a kernel, where the core functionality is kept, and an extension section where you can add your own modules (as extensions are called in eZ Publish).

It supports workflows, notifications and has a built in e-commerce system with lots of features.

As for the front end part, the HTML is integrated with a templating language that closely resembles PHP, but it has less functionality.

Beware, though: there is just enough documentation for the templating system, the documentation for the PHP part is really scarce. The main source of information is the forum, but don't expect too much. Most of the time, you have to extract information and solutions from other people's code.

It has also an extensions repository where you can search for tools and extensions that easy your work. There are some great extensions, like sqliimport for importing data.

From version 5, eZ Publish is based on Symfony 2 framework.

203 questions
2
votes
2 answers

ezPublish: Unknown template variable 'view_parameters' in namespace in design/dffestival/templates/page_footer.tpl

We have received below errors on the home page: eZTemplate @ design/dffestival/templates/page_footer.tpl:8[6]: Unknown template variable 'view_parameters' in namespace '' In our pagefooter.tpl file have below code:
Sunil Game
  • 83
  • 5
2
votes
2 answers

remove an Image programmatically in ezpublish

I have an Object in ezPublish which has an image attribute. this attribute has an image as value that I want to remove it programmatically in PHP. ( the image value and not attribute itself ) any idea how to do it ?
Amir Koklan
  • 897
  • 2
  • 12
  • 32
2
votes
1 answer

Display Results Manually eZ publish

I have this object attribute. actually this is a checbox. how can I get the attribute 0? and display its result? {attribute_result_gui view=info attribute=someattribute} thanks in advance
Sam Teng Wong
  • 2,379
  • 5
  • 34
  • 56
2
votes
2 answers

How to install eZ Platform via composer

How do you install eZ Platform? I'd like to get starting using it and I hear that the best way is to use composer. The problem for me is I've not used either before :\ Note: This is a first post to the new stackoverflow tag: ezplatform. We needed…
Heath
  • 133
  • 7
2
votes
1 answer

Error when installing eZ Publish

I have an error when I try to install eZ Publish by using the installation instructions. cd /tmp/ git clone https://github.com/ezsystems/ezpublish-community.git The repository is correcly cloned, I then go to the next step: cd…
A.L
  • 10,259
  • 10
  • 67
  • 98
2
votes
1 answer

EzPublish different template based on page type

Is it possible in EzPublish 5 to use a different template based on the page type you are currently on? I mean, I am 99,99% sure that this is possible, otherwise the CMS wouldn't be so useful ;) But the main question is: does anyone know how to do…
Danny Hobo
  • 574
  • 1
  • 5
  • 24
2
votes
2 answers

Obtaining POST variables in a template of eZ Publish

I have a form in a template (not a eZ generated form) which posts to another eZ page. How do I get the POST variables within the template? Thanks.
oohlarlar
  • 21
  • 1
  • 2
2
votes
4 answers

Adding form in Ez Publish

How can i add a custom form in ez publish cms
2
votes
1 answer

jQuery - Double-colon in JSON URL

For a project I'm building in EZPublish I'm using the EZJScore module to generate JSON arrays. Ezjscore requires me to seperate parameters with double colons, for example: http://[domain]/ezjscore/call/news::cat::3 After hours of testing I…
user1668735
1
vote
2 answers

Rewriting index.php form URL using only httpd.conf on EZ Publish site

I'm attempting to use Apache rewriterules to strip index.php from the url, but I've hit a brick wall. The following urls currently resolve to their correct…
1
vote
1 answer

Run PHPUnit silently

I would like to know if it is possible to run PHPUnit tests silently and to show results manualy ? Here is my file (this is the first time I use xUNIT tests)…
MARTIN Damien
  • 996
  • 2
  • 15
  • 36
1
vote
1 answer

ezfind installation

I have installed ezpublish, and ezcomponent placed in lib/ezc. *Now, i want to install ez find. i have followed 3 steps according to install.txt (that present in ezfind folder) In the fourth step i given like follows, php…
nagoor meeran
  • 75
  • 1
  • 6
1
vote
1 answer

Ez Publish create file input field inside feedback_form

There's anyone around here who knows how to create a contact-form (maybe extending the feedback_form class) with a file input field (using ez-publish v.4.3)? any help would be really appreciated! Thanks
luca
  • 36,606
  • 27
  • 86
  • 125
1
vote
1 answer

Ez Publish - Which files should I edit to control the Upload mechanism

I'm new to Ez Publish. I need to change the behaviour of the File Upload mechanism in the Ez Publish. I'm kind of lost in which files should I edit. Can someone give me a clue? Best Regards,
Rui
  • 11
  • 1
1
vote
0 answers

Uncaught PHP Exception "Unknown handler dfs" in eZ Publish

I'm getting following error in my eZpublish application while fetching the content using: $wrapper->content->getFieldValue('short_name', $currentLanguage)->text; Error: CRITICAL - Uncaught PHP Exception…
1
2
3
13 14