Approval Workflow

Author Message

Peter Putzer

Wednesday 15 June 2005 5:56:34 am

Hi!

I've got some trouble with approval workflows on our site (http://pluspunkt.at). I haven't got root access and no CLI PHP. I have so far edited the workflow scripts to allow them to be run via the normal web PHP.

My cronjobs are run from index.php since I don't know whether I would need to tell my ISP to set up the cronjobs. Since I doubt that they would work from the command line if there's no CLI PHP, I haven't done this yet.

Almost everything works fine, except that items (comments) that are /denied/ sometimes still show up as published. I haven't been able to determine the exact cause of this, but I guess it's some kind of race condition between the notification and workflow cronjob.

Does anyone in here know more about this phenomenon (and hopefully a workaround/fix)?

Greetings,

Peter

Accessible website starting from eZ publish 3.0 (currently: 4.1.0): http://pluspunkt.at

Xavier Dutoit

Wednesday 15 June 2005 6:47:49 am

Could you describe how you run the cronjobs from the index ? Don't get it...

X+

http://www.sydesy.com

Peter Putzer

Wednesday 15 June 2005 7:16:35 am

* Run Notification Filters */
$notifyFilterLastRunTimeFile = 'ezfilternotify_last_runtime';
$filterAutoRunInterval = 60; //every minute
$runFilter = false;
if( file_exists($notifyFilterLastRunTimeFile) )
{
  if( time() - filemtime( $notifyFilterLastRunTimeFile ) > $filterAutoRunInterval )
  {
	$runFilter = true;
  }
}
else
  $runFilter = true;

if( $runFilter )
{
  /* Run notifications */
  include_once( 'kernel/classes/notification/eznotificationeventfilter.php' );
  touch($notifyFilterLastRunTimeFile);
  eZNotificationEventFilter::process();
}

/* Run Workflow cronjob */
$workflowLastRunTimeFile = 'ezworkflow_last_runtime';
//$workflowAutoRunInterval = 300; //every 5 minutes
$workflowAutoRunInterval = 50; //every 50 seconds
$runWorkflow = false;
if( file_exists($workflowLastRunTimeFile) )
{
  if( time() - filemtime( $workflowLastRunTimeFile ) > $workflowAutoRunInterval )
  {
	$runWorkflow = true;
  }
}
else
  $runWorkflow = true;

if( $runWorkflow )
{
  /* Run workflow */
  $isQuiet = true;
  touch($workflowLastRunTimeFile);
  include_once( 'cronjobs/workflow.php' );  
}

Accessible website starting from eZ publish 3.0 (currently: 4.1.0): http://pluspunkt.at

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 31 2025 06:16:03
Script start
Timing: Jan 31 2025 06:16:03
Module start 'layout'
Timing: Jan 31 2025 06:16:03
Module start 'content'
Timing: Jan 31 2025 06:16:04
Module end 'content'
Timing: Jan 31 2025 06:16:04
Script end

Main resources:

Total runtime1.0532 sec
Peak memory usage4,096.0000 KB
Database Queries57

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0056 588.0078151.1953
Module start 'layout' 0.00560.0029 739.203136.6172
Module start 'content' 0.00851.0439 775.8203938.4922
Module end 'content' 1.05230.0008 1,714.312511.8750
Script end 1.0532  1,726.1875 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00320.3028160.0002
Check MTime0.00120.1162160.0001
Mysql Total
Database connection0.00100.095610.0010
Mysqli_queries1.002295.1586570.0176
Looping result0.00050.0450550.0000
Template Total1.015096.420.5075
Template load0.00170.157420.0008
Template processing1.013496.217220.5067
Template load and register function0.00140.132210.0014
states
state_id_array0.00140.131010.0014
state_identifier_array0.00090.083820.0004
Override
Cache load0.00140.1289180.0001
Sytem overhead
Fetch class attribute can translate value0.00090.082920.0004
Fetch class attribute name0.00200.192350.0004
XML
Image XML parsing0.00320.303720.0016
class_abstraction
Instantiating content class attribute0.00000.001360.0000
General
dbfile0.00320.2992220.0001
String conversion0.00000.000640.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
3content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
3content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
2content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 11
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs