I have been trying to get feproc to work for about 3 weeks now to no avail. My feproc is unable to import handlers. Have you had success with importing the handlers with feproc? If so PLEASE share how you go this working...
Thanks...
Hi Julian,
Saw your PM over on Postnuke, so I'll reply here for the benefit of others.
I had the import handlers problem when trying to import pagestters & feprocs FE handlers. This is what I did to get around it:
--
Importing feproc handler for FE
--
->edit feproc/pnuserapi.php
-->added the below
function feproc_userapi_feprochandlerindex()
{
}
function feproc_handleruserapi_feprochandlerindex()
{
}
function feproc_handleradminapi_feprochandlerindex()
{
}
function feproc_sessionapi_feprochandlerindex()
{
}
--
->edit feproc/pnadminapi.php
-->added the below
function feproc_adminapi_feprochandlerindex()
{
}
--
Importing pagesetter handler
--
->edit pagesetter/pnadminapi.php
-->added the below
function pagesetter_adminapi_feprochandlerindex()
{
}
function pagesetter_editapi_feprochandlerindex()
{
}
function pagesetter_folderapi_feprochandlerindex()
{
}
function pagesetter_imageapi_feprochandlerindex()
{
}
function pagesetter_integapi_feprochandlerindex()
{
}
function pagesetter_topicaccessapi_feprochandlerindex()
{
}
function pagesetter_userapi_feprochandlerindex()
{
}
function pagesetter_workflowapi_feprochandlerindex()
{
}
--
That's it. HTH.
BTW thanks Blake, it helped but am still getting:
Failed to load module feproc (at function: "process")
Will post if/when I figure it out, Later!