Uploaded nodewords 6.x-1.3-beta5 into the modules folder of the drupal 6.4 site that I am building. However, when I go to enable nodewords and nodewords basic I receive a blank screen on saving the configuration. I have attempted to just install nodewords with the same issue. Any help would be greatly appreciated.

Comments

avpaderno’s picture

Component: Third-party modules integration » Code
Status: Needs work » Postponed (maintainer needs more info)

Do you see any error messages in Drupal, or server log?

Lucidity’s picture

I get this error:
Parse error: syntax error, unexpected '=', expecting ')' in xxxxxxxx/modules/nodewords/nodewords.install on line 340

avpaderno’s picture

Status: Postponed (maintainer needs more info) » Closed (duplicate)

The problem is caused by using a default value for a parameter that is passed by reference, which is not allowed in PHP 4. The code has been changed, and it doesn't use a default parameter that is not necessary (Drupal core code always passes that parameter, and it is never NULL).

The problem has been already fixed (see #620408: Default value assigned to a parameter passed by reference).