I have installed the module, and everything seems okay, but when I post an entry it doesn't cross post.
I double checked my login info. Is there supposed to be a specific hash used on the password field when inserting into the database?

Also, is there an easy way to view some debug data? I wouldn't mind it just dumping out info for testing, and would love to contribute to this module.

I am using drupal 5.1, with the category module. Thanks in advance.

Comments

riothamus-1’s picture

Just to clarify, there is no status message displayed (success or failure).

kmv’s picture

There is a problem in 5.x-1.1, you might try my patch here: http://drupal.org/node/150217

Klopp’s picture

With this patch does not work too :( Some debug logging: here $op is equal 'load' only, never 'update' or 'insert'. Why?

function ljxp_nodeapi(&$node, $op, $arg1, $arg2) 
{
/* ... skipped... */
  switch ($op) 
  {
    case 'insert':
    case 'update':
/* ... skipped ... */
   case 'delete':
/* ... skipped ... */
   }
kmv’s picture

@Klopp: Thats odd, that works for me. Are you sure you have enabled the content type to be cross-postable (in the module settings), given the users permission to use the module AND edited the user profile with the LJ settings?