I have entered a lot of organizations, people and projects today and I now wanted to start inputting tasks. When I go to /node/add/stormtask I get the right form and fill everyting in. After clicking on Submit I get a white screen, no watchdog or other error message I'm afraid.
Comments
Comment #1
Magnity commentedI can't reproduce this myself...
Would it be possible to go to
/admin/settings/error-reporting, selectWrite errors to the log and to the screenand try again? This should enable you to see the error message.Thanks
Comment #2
jurgenhaasUnfortunately not. I just get a white screen and no error message. If there is no other suggestion I should probably go into the code and try to build drupal_set_messages into it to be able to localize where the error happens.
Comment #3
Magnity commentedThat'd be useful - thanks.
Comment #4
jurgenhaasOK, found it.
file stormtask.module
line 624
wrong:
$node->datebegin = _storm_date_to_gsmtimestamp($node->datebegin);correct:
$node->datebegin = _storm_date_to_gmtimestamp($node->datebegin);Just unclear why I get a WSOD, but that's gone now ;)
Comment #5
Mark_Watson27 commentedHas also been mentioned in #531358: Call to undefined function _storm_date_to_gsmtimestamp()
Comment #6
GreyHawk commentedWe're having the same issue.
We updated to this version of the dev module 'cuz we were unable to add a Project. Now we can add a project, but no tasks...
We're getting closer. :)
Comment #7
avpadernoThis report seems a duplicate of #531358: Call to undefined function _storm_date_to_gsmtimestamp() .
Comment #8
GreyHawk commented@jurgenhaas -- that's it! Nicely done...thank you.
Comment #9
Magnity commentedThat's fixed - thanks.