I encountered the following issue:
All of the Content Complete blocks that I activated stay where I put them - for a while. And then they disappear without a notice or error.
They are back in the list of unused blocks. I activate them again, and the same happens...
First I checked the administration of the module - everything seems to be in order.
Then I thought, maybe it is a theme problem and I tried it with Acquia Slate, Danland and Garland - same thing.
Maybe someone can give me an idea where else to look for a solution - I'd be grateful.
Obviously I need help.
I' using
- the latest version of pressflow,
- the latest version of content complete,
- I have block caching disabled.
If more detailed information is needed, let me know...
Thanks in advance
Comments
Comment #1
flupphugat commentedComment #2
flupphugat commentedComment #3
eric_a commentedSee http://drupal.org/node/1173012#comment-4617086.
To be fair: the problematic behavior is a side effect of a bug that was fixed in Drupal 6.22.
Comment #4
ron williams commentedNote comment http://drupal.org/node/1173012#comment-4686924 which states changes must be made to the contrib modules.
Comment #5
christiaan_ commentedAs a work around to the issue, I used views and created content complete block, that uses the NID of node as an argument. This works as a replacement for the Content Complete: Current Node block.
Here is the views code for the block:
Comment #6
allandk commentedsubscribe
Comment #7
pvhee commentedThe suggestion from #5 is a good one since the blocks created by Views are different from the blocks provided by the module directly.
According to the link posted in #3, the problem is probably because of checking user_access in the function content_complete_block(). If you remove the line
if (user_access('access content complete')) {is the problem solved?Comment #8
allandk commentedno, now everything fails
Comment #9
allandk commentedtried views also, they are just blank
Comment #10
pvhee commentedI've tested the implementation as suggested in #7 and all seems to work fine, blocks do not disappear anymore after clearing the cache. I have created a new release 1.5 for this bugfix and I suggest you to update the module.
allandk in #9: Views integration for Content Complete was never affected by the changes in Drupal core, please refer to the documentation for setting up Views.