Download & Extend

Page not found error when trying to add a new pipe

Project:Transformations
Version:6.x-1.0-beta1
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:active

Issue Summary

Just wanted to see it working, but I'll have to wait a little :)

Comments

#1

The error I see is:
warning: Class __PHP_Incomplete_Class has no unserializer in /var/www/XXX/sites/all/modules/ctools/includes/object-cache.inc on line 40.

#2

I'm having the same issue. Enter name of pipe and submit, leads to "page not found"...

#3

Version:6.x-1.0-alpha3» 6.x-1.0-beta1

Amitaibu says it's still present in beta1, which is unfortunate because I don't get that error and thus am having a hard time fixing it.

#4

As mentioned, I'm pretty much out of ideas. My theory is that transformations_init() is called too late, and thus the TfPipeline class is not loaded when ctools needs it. Manually loading it is a hack, but please try anyways if it would work: insert the line

<?php
transformations_autoload_core
('TfPipeline');
?>

into the transformations_ui_persisted_pipeline_load() function in transformations_ui.module, just before the call to ctools_object_cache_get(). With a bit of luck, that should make it work for you (for now), and whether or not it does, we'll have one more hint as to why it doesn't work as is.

#5

@jpetso,
Code from #4 fixed the error.

#6

Confirmed. Code from #4 fixes this problem.