I am trying to use Webform 5-x-2.x-dev on Drupal 5.7 and can access the backend of the module. I can add componenets to the module and create a form, but if I try to view the form, I only get a blank white page. If I view the page source, it is blank.

I'm stumped.
Terry

Comments

quicksketch’s picture

You're getting a white page because PHP is throwing an error of some sort. You'll need to enable the display of errors in order to figure out what's causing the trouble.

In php.ini set these two settings (you'll find them in the error reporting section):

error_reporting  =  E_ALL & ~E_NOTICE
display_errors = On
terryit3’s picture

I have enabled error reporting and it is giving me this error:

Fatal error: Call to undefined function: conference_organizing_check_reg() in /var/www/html/drpl/themes/cod_organizing/template.php on line 265

Line 265 is: $conferences = conference_organizing_check_reg($user->uid);

I am not familiar with PHP, so I don't know what to change..
Thanks again..

GoofyX’s picture

This error appears in a file inside your theme's directory (themes/cod_organizing), so a first step would be to switch back to the default Garland theme and try again.

terryit3’s picture

I was just getting ready to post and say the exact same thing.
I changed themes and it works beautifully.

The CDO_Organizing theme requires additional modules and files that I didn't have installed.

quicksketch’s picture

Status: Active » Fixed

Great, thanks for following through on the solution!

Anonymous’s picture

Status: Fixed » Closed (fixed)

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