Download & Extend

Compatibilty with content_profile module : no registration

Project:Content Construction Kit (CCK)
Version:6.x-3.x-dev
Component:Usability
Category:support request
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

On my site (http://www.afterfoot.com), i use the content_profile module and when you register, you have to fill some fields (date, autocomplete nodereference, text..). I used to use teh rconstantine tarball before upgrading to the 6.x-3.x-dev version of cck (to use the multigroup option), and it was working well.

Since I have updated the cck module, the registration no longer works and I have a blank page when I click on the "save" button.
I use many module such as
- auto nodetitle
- unique field
- jquery update
- jquery UI
- fieldgroup tabs

I opened a issue (#493250: Registration impossible: blank page when validation) but nobody answers.. Is anyone have an idea where it might come from ?
Thanks in advance for your help

Comments

#1

Hi,
I think you should try to narrow down the possible problems. So take a new drupal installation and install Content profile + CCK 3 branch. Test that out. If it doesn't work that way, come back and report your findings. This way more people might actually help.

Cheers !

#2

i did it with a fresh new installation and it worked... i really don't understand where the problem might come from...

#3

Do you set field permissions for anonymous role?

#4

yes, anonymous users can create profile node... i use autonodetitle also (i tried to desactivate it and I had the same result)

#5

thanks to the dtools module, i could get my blank page

array(4) { ["type"]=> int(1) ["message"]=> string(46) "Call to undefined function _content_is_empty()" ["file"]=> string(63) "C:\wamp\www\afterfoot-test\sites\all\modules\cck\content.module" ["line"]=> int(935) } n/a

I hope it could help you...

#6

Status:active» fixed

If you have tried with a version of CCK that has not even been committed to CVS, then it is quite impossible to guess what's going on, and you should try to fix this yourself. I would suggest making a full backup, then try saving the fields in the content type one by one, also submit the "Manage fields" and "Display fields" screens to see if that helps.

Marking this fixed as you already stated in #2 that it worked on a fresh installation.

#7

Status:fixed» closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

#8

Status:closed (fixed)» active

I believe this is an issue for content_profile, I solved it by this way:

content_profile_registration.module, line 207

<?php
      node_validate
($node);
?>

replace with:

<?php
      node_validate
($node, $form);
?>

#9

Status:active» closed (fixed)

@Cristhian: Please, file a new report into the Content Profile issues queue. Thanks