Do you know pnWebServices module from Mark West ?
It uses new hooks type and this thread says there is a problem with pagesetter: http://www.mark…opic-242.phtml
Is this problem solved ?
chaK!
Posted: 25.08.2005, 18:21
rank:
12
registered:
March 2009
Status:
offline
last visit:
Posts:
0
Hello chakal,
there is a solution for this problem, if you are willing to hack some code of the track-back-module.
You need to edit the file trackback/pnuser/displayhook.php
Look for this if-clause:
if (!isset($objectid) || !is_numeric($objectid)) {
pnSessionSetVar('errormsg', _MODARGSERROR);
return;
}
and change it into:
if (!isset($objectid)) {
pnSessionSetVar('errormsg', _MODARGSERROR);
return;
}
This worked just fine!
The problem is, that trackback expects a numeric object-id and pagesetter uses non-numeric ids.
Jan
Posted: 26.08.2005, 08:31
rank:
12
registered:
March 2009
Status:
offline
last visit:
Posts:
0
Thx Erunafailaro :)
I posted this myself after which I found out you submitted it yourself as well to pagesetter.org ...