Closed (fixed)
Project:
Case Tracker
Version:
5.x-1.1
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
7 Feb 2007 at 16:21 UTC
Updated:
12 Nov 2007 at 22:41 UTC
Jump to comment: Most recent file
Comments
Comment #1
oneighty commentedAlso getting a blank page when I go to the Manage Fields tab in Cases under Content Management -> Content Types.
I've tried increasing the memory as this link suggests, http://drupal.org/node/31819, but still get a Blank screen.
Help! Pleeeeeeeeeeease!!!!
Comment #2
oneighty commentedI've looked at my Apache log files and get the following:
[Fri Feb 09 07:44:34 2007] [error] [client 127.0.0.1] PHP Fatal error: Only variables can be passed by reference in C:\\Program Files\\Apache Group\\Apache2\\htdocs\\Exacct\\modules\\casetracker\\casetracker.module on line 393, referer: http://localhost/Exacct/?q=admin/content/types/casetracker-basic-case
[Fri Feb 09 07:45:25 2007] [error] [client 127.0.0.1] PHP Fatal error: Only variables can be passed by reference in C:\\Program Files\\Apache Group\\Apache2\\htdocs\\Exacct\\modules\\casetracker\\casetracker.module on line 393, referer: http://localhost/Exacct/?q=casetracker/projects
[Fri Feb 09 07:45:57 2007] [error] [client 127.0.0.1] PHP Fatal error: Only variables can be passed by reference in C:\\Program Files\\Apache Group\\Apache2\\htdocs\\Exacct\\modules\\casetracker\\casetracker.module on line 1142, referer: http://localhost/Exacct/?q=admin/settings
Comment #3
oneighty commentedFor the error on ine 393, I made the following changes (after reading up "variables can be passed by reference") :
...
: variable_get('casetracker_default_case_status', array_shift(array_keys($case_status_options))),
to
$form['casetracker_case_information']['case_status_id'] = array(
...
: variable_get('casetracker_default_case_status', array_shift($temp_akeys)),
Did the same for case_priority_options and case_type_options.
For the error on ine 1141, I made the following changes:
...
'#default_value' => variable_get('casetracker_default_case_'.$state, array_shift(array_keys($options))),
...
to
$temp_akeys = array_keys($options);
...
'#default_value' => variable_get('casetracker_default_case_'.$state, array_shift($temp_akeys)),
...
Hope this all makes sense, 'cause for someone who have never written anything in PHP, it's quite confusing.
Comment #4
stephthegeek commentedThanks oneighty, I was having the same issue and that worked for me.
Comment #5
zero2one commentedIs fixed in http://drupal.org/node/116842
Comment #6
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.