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
6
votes
1 answer

ezPublish does not generate CSS cache (php 5.4 incompatibility?)

We have a site which runs on a Debian Squeeze (PHP 5.3.3) host and should be duplicated on Debian Wheezy (PHP 5.4.4). On the new installation, we face the problem, that the stylesheet cache is not generated. i.e. the folder…
Alex
  • 32,506
  • 16
  • 106
  • 171
6
votes
1 answer

EZPDF - Documentation, Tutorial, Anything?

I've been handed a project that utilizes the ezpdf class to generate PDF files. Problem is, I can't seem to find any documentation on it on the net. I've figured out most of changes that my bosses want implemented by looking into the code itself.…
rgin
  • 2,291
  • 4
  • 24
  • 32
5
votes
2 answers

Three rather than Four step forgot password functionality

I am using the EZ Publish CMS: What is currently happening: From the forgot password page, user enters the email address that they used to register and submits User receives an email with a password generating link which uses a hash to confirm…
EMuentes
  • 562
  • 1
  • 8
  • 18
4
votes
2 answers

How to use Custom PHP Functions in eZ Publish Templates?

Hi i am wondering if i could use PHP functions in ez publish templating. If any one knows how to use it. Any hint will be greatful. eg:- i want to use str_replace() PHP function in ez-publish template.
Sujeet
  • 1,780
  • 3
  • 16
  • 33
4
votes
2 answers

using LDAPS authentication

I am using LDAPS authentication with Open source CMS ez publish. I have made all the configuration settings that I am suppoed to make. But, I still cannot get LDAPS authentication to work! on debugging, I found that ldap_connect fails and it…
pavanred
  • 12,717
  • 14
  • 53
  • 59
4
votes
0 answers

404 errors on acces to _wdt/

In dev mode, all pages try several times to get _wdt/ via XHR. _wdt/ reponds with 404. but if I try to get _wdt/ directly afterwards, _wdt/ reponds with 200 OK. After a few 404, Sf displays an alert…
sylvain
  • 1,951
  • 2
  • 19
  • 34
3
votes
2 answers

How to you find the previous/next sibling of a node?

with eZ Publish, when given an ezContentObjectTreeNode object, how can I find its previous/next sibling? Is there a template operator? If not, is there a php method?
greg0ire
  • 22,714
  • 16
  • 72
  • 101
3
votes
2 answers

eZ Publish 6 (eZPlatform) connection issue

I have a problem after installation with eZPublish 6. When I try to connect on localhost:8000/app.php/ez with username admin with the default password (publish), this error occures : Logs [2016-02-09 09:43:20] event.DEBUG: Notified event…
morandmr
  • 95
  • 1
  • 11
3
votes
2 answers

eZPublish fetching content with php

I'm trying to fetch content using php. But my code seems not to work. I'm using ezcontentobjecttreenode::subtree function but it displays this error: Using $this when not in object context in…
You
  • 39
  • 5
2
votes
1 answer

Entering custom HTML-code in EZ Publish's TinyMCE will not work

I've added the "html"-button to TinyMCE on an EZ Publish site so that the users can write custom html into the xmlblock-field. But html-code with div-, img- and other tags get stripped when the user saves. If I use the ''-tag I assume that the…
Henrik
  • 23
  • 1
  • 4
2
votes
0 answers

Get eZ Flow zones of an object

for a navigation on our site I need to fetch a specific zone and the included blocks from some objects in our eZ Publish installation. Can you tell me how I can fetch the blocks in this zone? I tried to inspect the whole object using…
Quest
  • 58
  • 5
2
votes
2 answers

Can't send Email SMTP in ez publish 5.4

I can't send or receive email, i added the following settings to the : site.ini located in D:\EasyPHP-.3.3\www\ezpublish5.4\ezpublish_legacy\settings : Transport=sendmail #A list of possible handlers for sending mails, use the setting…
Issam Bakrim
  • 101
  • 7
2
votes
1 answer

Functional Testing on Codeship for a PHP Application

I have a PHP Application (Symfony and ezplatform) and want to run Functional tests Automatically after every push in git. the requirement for that is that i need A database where I can put my latest dump of DB on it and then run the tests against…
Amir Koklan
  • 897
  • 2
  • 12
  • 32
2
votes
1 answer

Pull from remote branch, but do not include the whole history

I'm using eZ Platform open source CMS. The way you start the project is to create it with composer. After some work, new version comes out and the only way to update it is to git pull from github repository, merge it and resolve conflicts. The whole…
Lord Zed
  • 750
  • 7
  • 28
2
votes
1 answer

ezPublish: eZTemplate:elementValue: Missing array data structure, got NULL

We have received below error in the error log file: eZTemplate:elementValue: Missing array data structure, got NULL In the respective file have below script: {* Load JavaScript dependencys + JavaScriptList *} page_footer_script.tpl {if…
Sunil Game
  • 83
  • 5
1
2 3
13 14