06 Feb 2012
share.ez.no > All forums (topics and replies)
Multilingual object relations search problem
Hello,
I'm working on a multilingual website where I have a content class "Profile" that contains object relations attribute, so the relation will be between "Profile" and "Speciality".
Most of the objects are created in two languages, English and Arabic.
Now, in the perfect world when I try search for a "Speciality" in either languages I would get results for all profiles that have relation with that speciality. But in the real wold this doesn't happen.
What happens is I get results only for Profile objects that where created initially with the same language I'm searching in. For example:
I created the object Abdallah in Arabic, and it is related to Web Development (has two translations).
Now when I search for "Web Development" in Arabic, Abdallah shows up. But when I search for "Web Development" in English Abdallah doesn't show up.
And even worse, even I translate Abdallah into English it won't show up as well if I searched for "Web Development" in English.
Bottom line, searching for related objects returns results only from the initial language of the other related objects!
I'm using eZp 4.4 without eZFind.
Is that a normal behavior? Is there any fix or workaround for this?
Thanks in advance,
Abdallah
06 Feb 2012 10:15am GMT
Re: How to redirect /x to /defaultsiteaccess/x
Then you are stuck with rewrite rules IMO :)
06 Feb 2012 9:08am GMT
Re: How to redirect /x to /defaultsiteaccess/x
Thanks. In my case, I would like to show the default siteaccess so RemoveSiteAccessIfDefaultAccess is set to disabled (default value). In fact without the rewrite rules, it seems to me that ezurl operator does not always include the fre siteaccess when a page is displayed without /fre (even if RemoveSiteAccessIfDefaultAccess=disabled). So some pages were accessible from 2 URLs www.domain.org/fre/x and www.domain.org/x. I would like to avoid this and always display fre siteaccess.
Mathieu
06 Feb 2012 8:55am GMT
Re: How to redirect /x to /defaultsiteaccess/x
There is a RemoveSiteAccessIfDefaultAccess=enabled if you don't need to show the default siteaccess. Then you would not need to rewrite.
06 Feb 2012 8:03am GMT
Re: front page template!
Thank you ramzi for your answer , but in this case , when i change them like this , i cannot anymore have access to my site , i mean it gives me a kernel(20) error. is it normal?!
06 Feb 2012 7:41am GMT
05 Feb 2012
share.ez.no > All forums (topics and replies)
Re: front page template!
in this case i will try to add new object(Node) in the content structure in Backend and in the siteaccess site.ini i will add something like this:
[SiteSettings]
IndexPage=content/view/full/167
DefaultPage=content/view/full/167
In this example 167 is the Node Id as default/front page.
sure you can specify a new class as front page to customize the welcome website ;)
05 Feb 2012 7:29pm GMT
Re: front page template!
Thank you for your answer ,
But the changes in Pagelayout will apply to all the website while i only need the changes for first (home) page!
I think this should be very simple but I am stuck and confused!!!
05 Feb 2012 7:22pm GMT
Job: eZ Publish Project Manger @ Vision with Technology in London
We are looking for a Project Manager with eZ Publish experience to work in our London office.
Company Background
Vision with Technology Ltd was founded in 2002 and has since established itself as one of the leading providers of eZ Publish solutions. Experts in eZ Publish, we have a proven track record in delivering online web solutions to a number of blue chip Clients.
As part of our ongoing and current growth plans we are looking to recruit a Project Manager. The successful candidate will be joining a winning team, which has enjoyed consistent and steady growth over the past ten years.
Working at Vision
Central to the success of Vision with Technology is the continued investment in our team and office culture. We strive to ensure that our team have a great quality of employment, and pride ourselves on the fact that we work in an environment where everyone has something to contribute and something to learn.
Job Description
Job Title: Project Manager
Location: London (Islington)
Position Reports To: Programme Manager
Job Type: 3 month Contract with opportunity to turn Permanent
Job Purpose: To run and manage numerous projects within the programme
Salary: Based on experience
Key Responsibilities and Accountabilities
- Define project approach based on information captured during sales / initiation
- Facilitate the definition of project scope, goals and deliverables and produce PID
- Define project tasks and resource requirements
- Lead the planning and implementation of the project
- Manage the project budget
- Manage stakeholder expectations in terms of delivery timescales, budget and functional quality
- Provide direction and support to the project team
- Provide regular status reports and take corrective actions where necessary
- Identify, log and manage project risks and change requests
Essential skills and Experience
- 5+ years project management experience
- Strong client relationship management skills with the ability to build effective and lasting relationships
- Demonstrate strong project management skills with the ability to work with cross functional teams and communicate complex technical information in a user friendly way
- Excellent troubleshooting and problem solving skills when under pressure
- Experience of Content Management Systems
- Full project lifecycle management with experience of waterfall and scrum / agile methodologies
- A confident and self motivated approach and the ability to effectively prioritise a busy workload
- Coach, mentor and motivate project team members
- Proven experience of managing project risks and changes
Desirable
- eZ Publish Content Management experience
Personality
We are seeking an individual who is self-motivated, results orientated and who has a positive outlook with a clear focus on high quality. Professional, articulate and with a good attention for detail you will also be reliable, tolerant and determined. Good communication / team skills are essential and therefore an ability to communicate at all levels, see things from other people's perspective and to get on with others is key.
Contact
If you feel you have what it takes to be a member of our winning team please send a copy of your CV to manpreet.dhesi at visionwt.com or contact Manpreet Dhesi on +44 (0)207 354 4300.
05 Feb 2012 5:44pm GMT
Re: front page template!
Hi,
maybe it is usefully to enable "Template" Debug from the Backend and in the frontPage you can see wihch default template are you using from the ezwebin. The same .tpl structure can you add in your extension path.
This is generally the way to overrwite the default template to write your own .tpl file: e.g:
extension/ezwebin/design/ezwebin/templates/pagelayout.tpl (default template)
extension/YOU_EXTENSION/design/YOUR_DESIGN_FROM_SITE.INI/templates/pagelayout.tpl (your own pagelayout).
maybe this will help you
05 Feb 2012 5:34pm GMT
How to redirect /x to /defaultsiteaccess/x
Hi,
For a multilingual site (Community Project 2011.10), I am using in override/site.ini.append.php:
DefaultAccess=fre
MatchOrder=uri
URIMatchType=element
With this configuration:
www.domain.org/fre/ and www.domain.org display the fre siteaccess
www.domain.org/eng/ displays the eng siteaccess
What is the proper way to redirect www.domain.org/ to www.domain.org/fre/? Currently I am using the following rewrite rules, as all my page aliases begin with a capital letter:
# Redirect / to /fre
RewriteRule ^/$ /fre/ [L,R=301]
# Redirect /x to /fre/x if x begins with a capital letter
RewriteCond %{REQUEST_URI} ^/[A-Z]
RewriteRule ^(.*)$ /fre$1 [L,R=301]
Thanks,
Mathieu
05 Feb 2012 4:48pm GMT
front page template!
Hi everyone,
when i started to design my first ezpublish web site , i deleted all the content within the site then i created my siteaccess and my extension and then my designs..
up until now everything was ok , but now i want to design the last part which is my frontpage! i dont have anything in my home page indeed, and i dont know where is the template where i can write down my codes?!
i have photo gallery i have news and many other thing. and because i created the extension by myself i have not template "front page" beyond my templates in override or templates of my extension/design
can anybody help me?
05 Feb 2012 1:03pm GMT
04 Feb 2012
share.ez.no > All forums (topics and replies)
Image in link doesn't show up
Hi,
I'm using the latest version of the community package, with Plain site.
I have created blog posts including images that show fine in the admin site. The template tries to list the available posts with their titles and images, all embedded in hyperlinks. However, the images don't show up. Here is the code in the {foreach $posts as $p} loop:
{attribute_view_gui image_class="medium" attribute=$p.data_map.image}
Thanks!
PS: how can I edit/mark-as code here (I don't see any code formatting on editor's menu above)?
Answer: well, it didn't because I set the attribute "checkbox/Image show" for the class where the image is and forgot to check it ...
04 Feb 2012 5:31pm GMT
Re: Calling all American, Canadian, nearby eZ Publish developers and users!
Oops, thanks for pointing that out. I've fixed the link. I must have GitHub on my mind.
Are you going to be travelling out our way this year?
04 Feb 2012 4:28pm GMT
Re: Adding a custom button to the online editor
I am dealing with this very topic.
My problem is that ezoe's tinyMCE is by default trying to load resources for the buttons (such as images, dialog.htm, etc.) from the extension/ezoe/design/standard/javascript/plugins location, instead of extension//design//javascript/plugins where they are really located.
I'm trying to follow best practices and keep my code in my own extension, but I see no way to override this behavior. Do you know how to override it?
Notes: it is ezoe version 5.4 with ezp 4.6, and the code that sets the URLs for the plugins is, I think, in extension/ezoe/design/standard/templates/content/datatype/edit/ezxmltext_ezoe.tpl around line 150.
I have overridden that template in my design, and for specific plugins that are also in my design, I have changed the code in the override template to set the urls properly (in the section that does this around line 150 as mentioned above). However, that only partially gets things working.
Is there some official way to do this that I'm just not aware of?
Thanks!
04 Feb 2012 3:21am GMT
Re: eZ Publish Community Project 2012.1 opening the innovation ball for 2012 !
Great!
I think that something broke extension ordering. Now load ordering does not work after upgrade from 2011.12 to 2012.1 ?!
Am I missing something?
Sinisa
04 Feb 2012 12:07am GMT
03 Feb 2012
share.ez.no > All forums (topics and replies)
Re: Calling all American, Canadian, nearby eZ Publish developers and users!
Hi Peter,
Very good news to hear, I love the idea that the US eZ Community is taking off.
PS : the link you gave seems to be wrong.
Cheers,
03 Feb 2012 10:26pm GMT
30 Nov 2011
News
Granite Horizon to Showcase Cloud-Based Version of eZ Publish at Gilbane
Granite Horizon LLC and eZ Systems AS today announced Granite Horizon in the Cloud to be showcased at The Gilbane Conference in Boston.
30 Nov 2011 12:55pm GMT
Granite Horizon to Showcase Cloud-Based Version of eZ Publish at Gilbane
Granite Horizon LLC and eZ Systems AS today announced Granite Horizon in the Cloud to be showcased at The Gilbane Conference in Boston.
30 Nov 2011 12:55pm GMT
Granite Horizon to Showcase Cloud-Based Version of eZ Publish at Gilbane
Granite Horizon LLC and eZ Systems AS today announced Granite Horizon in the Cloud to be showcased at The Gilbane Conference in Boston.
30 Nov 2011 12:55pm GMT
22 Nov 2011
News
eZ Systems Unveils New Tools to Make Websites More Adaptable, Mobile-Ready and Easier to Search
Skien, Norway - November 22, 2011 - eZ Systems AS, the award winning Open Source Web Content Management Platform provider, today announced the release of its newest update, version 4.6, titled Annapurna. Users can benefit from enhanced extensibility, simplified content access and App readiness.
22 Nov 2011 12:43pm GMT
eZ Systems Unveils New Tools to Make Websites More Adaptable, Mobile-Ready and Easier to Search
Skien, Norway - November 22, 2011 - eZ Systems AS, the award winning Open Source Web Content Management Platform provider, today announced the release of its newest update, version 4.6, titled Annapurna. Users can benefit from enhanced extensibility, simplified content access and App readiness.
22 Nov 2011 12:43pm GMT
eZ Systems Unveils New Tools to Make Websites More Adaptable, Mobile-Ready and Easier to Search
Skien, Norway - November 22, 2011 - eZ Systems AS, the award winning Open Source Web Content Management Platform provider, today announced the release of its newest update, version 4.6, titled Annapurna. Users can benefit from enhanced extensibility, simplified content access and App readiness.
22 Nov 2011 12:43pm GMT
21 Nov 2011
News
eZ Systems Welcomes Inclusion in the 2011 Magic Quadrant for Web Content Management
Skien, Norway, November 21, 2011 - eZ Systems AS, the creator of the award winning Open Source Web Content Management Platform, eZ Publish, today announced it has been included by Gartner, Inc. in the "Magic Quadrant for Web Content Management,"* based on an evaluation of the company's ability to execute and its completeness of vision.
21 Nov 2011 2:15am GMT
eZ Systems Welcomes Inclusion in the 2011 Magic Quadrant for Web Content Management
Skien, Norway, November 21, 2011 - eZ Systems AS, the creator of the award winning Open Source Web Content Management Platform, eZ Publish, today announced it has been included by Gartner, Inc. in the "Magic Quadrant for Web Content Management,"* based on an evaluation of the company's ability to execute and its completeness of vision.
21 Nov 2011 2:15am GMT
eZ Systems Welcomes Inclusion in the 2011 Magic Quadrant for Web Content Management
Skien, Norway, November 21, 2011 - eZ Systems AS, the creator of the award winning Open Source Web Content Management Platform, eZ Publish, today announced it has been included by Gartner, Inc. in the "Magic Quadrant for Web Content Management,"* based on an evaluation of the company's ability to execute and its completeness of vision.
21 Nov 2011 2:15am GMT
15 Nov 2011
News
eZ Systems Partners with UK-Based, Circdata
Skien, Norway, November 15th, 2011 - eZ Systems AS, the creator of the award winning Open Source Web Content Management Platform, eZ Publish, today announced a partnership with Circdata. The UK based company is a leader in circulation management and event registrations for the publishing and event industry. The partnership will extend the powerful eZ Publish content management platform by adding Circdata's services and expertise in circulation management, event registrations and overall audience relationship management.
15 Nov 2011 11:37am GMT
eZ Systems Partners with UK-Based, Circdata
Skien, Norway, November 15th, 2011 - eZ Systems AS, the creator of the award winning Open Source Web Content Management Platform, eZ Publish, today announced a partnership with Circdata. The UK based company is a leader in circulation management and event registrations for the publishing and event industry. The partnership will extend the powerful eZ Publish content management platform by adding Circdata's services and expertise in circulation management, event registrations and overall audience relationship management.
15 Nov 2011 11:37am GMT
eZ Systems Partners with UK-Based, Circdata
Skien, Norway, November 15th, 2011 - eZ Systems AS, the creator of the award winning Open Source Web Content Management Platform, eZ Publish, today announced a partnership with Circdata. The UK based company is a leader in circulation management and event registrations for the publishing and event industry. The partnership will extend the powerful eZ Publish content management platform by adding Circdata's services and expertise in circulation management, event registrations and overall audience relationship management.
15 Nov 2011 11:37am GMT
01 Nov 2011
News
eZ Systems takes over High-Tech Gruenderfonds
Successful exit for German IT technology and now one of the services offered by eZ Systems.
With the acquisition of the German high-technology start-up, YOOCHOOSE, the Norwegian company eZ Systems AS is expanding its content management system, eZ Publish Enterprise, with one of the world's leading recommendation engines. YOOCHOOSE was founded in 2009 by Dr. Uwe Alkemper and Michael Friedmann, and convinced High-Tech Gruenderfonds to provide seed financing at an early stage. Behind YOOCHOOSE - a spin-off company from Deutsche Telekom Laboratories in Berlin - lies a high-performance, patented recommendation system, which enables companies to significantly increase their revenues on the Internet using personalized recommendations.
01 Nov 2011 1:07pm GMT
eZ Systems takes over High-Tech Gruenderfonds
Successful exit for German IT technology and now one of the services offered by eZ Systems.
With the acquisition of the German high-technology start-up, YOOCHOOSE, the Norwegian company eZ Systems AS is expanding its content management system, eZ Publish Enterprise, with one of the world's leading recommendation engines. YOOCHOOSE was founded in 2009 by Dr. Uwe Alkemper and Michael Friedmann, and convinced High-Tech Gruenderfonds to provide seed financing at an early stage. Behind YOOCHOOSE - a spin-off company from Deutsche Telekom Laboratories in Berlin - lies a high-performance, patented recommendation system, which enables companies to significantly increase their revenues on the Internet using personalized recommendations.
01 Nov 2011 1:07pm GMT
eZ Systems takes over High-Tech Gruenderfonds
Successful exit for German IT technology and now one of the services offered by eZ Systems.
With the acquisition of the German high-technology start-up, YOOCHOOSE, the Norwegian company eZ Systems AS is expanding its content management system, eZ Publish Enterprise, with one of the world's leading recommendation engines. YOOCHOOSE was founded in 2009 by Dr. Uwe Alkemper and Michael Friedmann, and convinced High-Tech Gruenderfonds to provide seed financing at an early stage. Behind YOOCHOOSE - a spin-off company from Deutsche Telekom Laboratories in Berlin - lies a high-performance, patented recommendation system, which enables companies to significantly increase their revenues on the Internet using personalized recommendations.
01 Nov 2011 1:07pm GMT
26 Oct 2011
News
eZ Delivers Analytics Optimizing Customer Experience
Through the acquisition of odoscope, eZ extends the powerful eZ Publish content management platform with behavior analysis optimizing the end-customer engagement.
26 Oct 2011 6:53am GMT
eZ Delivers Analytics Optimizing Customer Experience
Through the acquisition of odoscope, eZ extends the powerful eZ Publish content management platform with behavior analysis optimizing the end-customer engagement.
26 Oct 2011 6:53am GMT
eZ Delivers Analytics Optimizing Customer Experience
Through the acquisition of odoscope, eZ extends the powerful eZ Publish content management platform with behavior analysis optimizing the end-customer engagement.
26 Oct 2011 6:53am GMT
20 Oct 2011
News
New Cockpit Available for Better Productivity
eZ Content Cockpit is the latest extension from the eZ Market that offers a cohesive website overview to facilitate better editing and maintenance of dynamic content.
20 Oct 2011 7:43am GMT
New Cockpit Available for Better Productivity
eZ Content Cockpit is the latest extension from the eZ Market that offers a cohesive website overview to facilitate better editing and maintenance of dynamic content.
20 Oct 2011 7:43am GMT
New Cockpit Available for Better Productivity
eZ Content Cockpit is the latest extension from the eZ Market that offers a cohesive website overview to facilitate better editing and maintenance of dynamic content.
20 Oct 2011 7:43am GMT
13 Oct 2011
share.ez.no > Articles and Tutorials
Building native mobile applications with the eZ Publish REST API
eZ Publish is a Web Content Management System that provides a platform to publish content via any channel. Its powerful presentation engine enables you to create websites and pages that display your content in a variety of renderings. Its powerful API directly and simply integrates your content with any web-enabled application on any device, such as the iPad, iPhone, or an Android device, without ever interfering with, or impacting the platform itself.
At the end of this tutorial, you will have learnt the basics of mobile application development for both iOS and Android platforms, consuming content from eZ Publish. CMS-side adjustments for the mobile channel will be acquired too. This cheatsheet will help you leverage the multichannel capabilities of eZ Publish, and its REST API in future projects, in a more systematic fashion.
13 Oct 2011 2:21pm GMT
19 Sep 2011
News
eZ receives SID-award “Innovation 2011”
Award cites the most important advantages of eZ Publish Enterprise: universal multichannel functionality and strict separation of form and content.
19 Sep 2011 8:08am GMT
eZ receives SID-award “Innovation 2011”
Award cites the most important advantages of eZ Publish Enterprise: universal multichannel functionality and strict separation of form and content.
19 Sep 2011 8:08am GMT
eZ receives SID-award “Innovation 2011”
Award cites the most important advantages of eZ Publish Enterprise: universal multichannel functionality and strict separation of form and content.
19 Sep 2011 8:08am GMT
16 Aug 2011
share.ez.no > Articles and Tutorials
Image Maps in ezwebin Banners
Beginners guide for learning how to use image maps in the ezwebin extension.
16 Aug 2011 12:40pm GMT
09 Aug 2011
News
eZ adds Recommendation Engine
With the acquisition of YOOCHOOSE GmbH, eZ Systems AS can now deliver personalized content through a new visitor recommendation engine.
09 Aug 2011 8:47am GMT
eZ adds Recommendation Engine
With the acquisition of YOOCHOOSE GmbH, eZ Systems AS can now deliver personalized content through a new visitor recommendation engine.
09 Aug 2011 8:47am GMT
eZ adds Recommendation Engine
With the acquisition of YOOCHOOSE GmbH, eZ Systems AS can now deliver personalized content through a new visitor recommendation engine.
09 Aug 2011 8:47am GMT
14 Jul 2011
News
eZ Systems expands in the Asian market
Opening two subsidiaries in Singapore and Beijing, eZ Systems announces today that it is going to intensify activities in the Asian market.
14 Jul 2011 11:42am GMT
eZ Systems expands in the Asian market
Opening two subsidiaries in Singapore and Beijing, eZ Systems announces today that it is going to intensify activities in the Asian market.
14 Jul 2011 11:42am GMT
eZ Systems expands in the Asian market
Opening two subsidiaries in Singapore and Beijing, eZ Systems announces today that it is going to intensify activities in the Asian market.
14 Jul 2011 11:42am GMT
07 Jul 2011
share.ez.no > Articles and Tutorials
Building mobile browser and hybrid applications with eZ Publish
eZ Publish is a Web Content Management System that provides a platform to publish content via any channel. Its powerful presentation engine enables you to create websites and pages that display your content in a variety of renderings. Its powerful API directly and simply integrates your content with any web-enabled application on any device, such as the iPad, iPhone, or an Android device, without ever interfering with, or impacting the platform itself.
At the end of this tutorial, you will have learnt the basics of mobile application development for both iOS and Android platforms, consuming content from eZ Publish. CMS-side adjustments for the mobile channel will be acquired too. This cheatsheet will help you leverage the multichannel capabilities of eZ Publish, and its REST API in future projects, in a more systematic fashion.
07 Jul 2011 1:29pm GMT
06 May 2011
share.ez.no > Articles and Tutorials
eZ Publish 4.2011 Community (4.5) with Nginx and PHP-FPM on Debian 6 (“Squeeze”)
After completing this tutorial, you should have a working eZ Publish 4.2011 Community (or 4.5) installation running on a single Debian 6 server with the following features:
- Nginx 1.0.0+ as web server
- PHP 5.3.6+ invoked through PHP-FPM (FastCGI Process Manager)
- APC (Alternative PHP Cache)
- Rewrites for friendly URLs (virtual host mode)
- Proper http cache headers for static files
- Gzip compression
06 May 2011 4:45pm GMT
18 Apr 2011
share.ez.no > Articles and Tutorials
Creating Custom Admin Modules
In this tutorial we will explore how to add custom modules and views to the CMS. By doing this you can extend the functionality of the back office to use your custom PHP to carry out various tasks. Once this tutorial is complete you should be comfortable with creating modules and views for any siteaccess with the CMS and be able to appreciate situations when creating custom modules and views would be suitable.
18 Apr 2011 9:42pm GMT
16 Mar 2011
share.ez.no > Articles and Tutorials
Running eZ Publish daemons in shared virtual hosting environment
At the end of this tutorial, you should have enough knowledge for setting up the eZ Find Solr daemon, and ezodf (OpenOffice.org) conversion daemon in a shared virtual hosting environment.
16 Mar 2011 10:51am GMT
01 Mar 2011
share.ez.no > Articles and Tutorials
How to contribute to eZ Publish using Git
At the end of this tutorial, you should be able to contribute to eZ Publish Community Project, eZ Publish's kernel developed by both eZ and the eZ Community. You will learn how to use git and github in the scope of this participation, and be given the bunch of best-practices to follow for smooth collaboration.
01 Mar 2011 9:07pm GMT
22 Feb 2011
share.ez.no > Articles and Tutorials
Translating
At the end of this tutorial, you should be able to contribute to the eZ Publish Localization project using GIT. Localizing means adding new translations to eZ Publish, enhancing existing ones, and adding or enhancing locales (currencies, week days names, date formats, etc. ).
22 Feb 2011 10:53am GMT
11 Feb 2011
share.ez.no > Articles and Tutorials
Transforming jQuery plugins into eZ publish extensions
In this tutorial we will see the main steps to transform a jQuery plugin into an eZ publish extension, in this case an eZ flow block.
11 Feb 2011 12:06pm GMT
24 Dec 2010
share.ez.no > Articles and Tutorials
Extending eZ Publish’s REST API - Developer Preview #2
At the end of this tutorial, you will be able to embed your custom RESTful interface into eZ Publish, to be further consumed by any 3rd party-service :
- mobile application
- external business application
- web service
24 Dec 2010 2:45pm GMT
10 Dec 2010
share.ez.no > Articles and Tutorials
An Introduction to Developing eZ Publish Extensions
Most Content Management System requirements can be fulfilled by eZ Publish without any custom PHP coding. But sooner or later experienced eZ Publish implementers get to the point where a project needs some special functionality and it becomes necessary to develop extensions.
(This tutorial was initially published on 21/01/2008, and refreshed to match the 4.x series on 10/12/2010)
10 Dec 2010 9:24am GMT
09 Dec 2010
share.ez.no > Articles and Tutorials
Creating a simple custom workflow event
This tutorial will guide you through the development of a simple eZ Publish workflow event. At the end of the tutorial, you should be able to create your own workflow event, configure a workflow that would execute the event and configure workflow triggers in the admin interface.
Note : the PDF version of this tutorial, as well as the downloadable extension are here.
09 Dec 2010 4:01pm GMT
18 Nov 2010
share.ez.no > Articles and Tutorials
A Quick and Friendly Introduction to eZPersistentObject
In this tutorial we will learn how to use CRUDfeatures by extending eZPersistentObject class, so it will be possible to Create, Read, Update, and Delete objects in the database in a straightforward way, without writing SQL queries.
18 Nov 2010 5:11pm GMT
26 Oct 2010
share.ez.no > Articles and Tutorials
Encapsulating e-mails for usability and spam protection
At the end of this tutorial you will have a new way of encapsulating e-mails avoiding crawlers to collect and use them as spam. Users at the frontend will have a well-known e-mail sequence to click thus avoiding confusion. Developers will not sacrifice usability versus spam-protection.
26 Oct 2010 8:15am GMT
18 Oct 2010
share.ez.no > Articles and Tutorials
Fetching User Objects with PHP - part 2
At the end of this tutorial you should be comfortable with exporting multiple users from PHP scripts into a external file using a cronjob. You should also be comfortable with filtering fetch statements in PHP.
18 Oct 2010 8:38am GMT
24 Sep 2010
share.ez.no > Articles and Tutorials
Fetching User Objects with PHP - part 1
At the end of this tutorial you should be comfortable with exporting user information from PHP scripts.
24 Sep 2010 2:57pm GMT