Moderators: jmacgreg, michael, John
jerico wrote:lightshadow306 wrote:I still get blank page while goto >editor>unassigned
It's unfortunate that I cannot reproduce this and that you don't get an error message in the log. It's quite rare that no error message at all appears but it is possible. This can be anything ranging from a bug in the code, php.ini/Apache config problems, problems with a missing library, permission trouble, etc.
What I'd do now if this was on my machine is trying to step through the code, either with a debugger like xdebug or Zend debugger or place debug messages within the code to find out where exactly the problem is occurring. This can then lead us to better understand what's actually happening. Do you feel comfortable enough with PHP so you could find out where the problem is located? I can try assisting you in this but it's not so easy to do this remotely without actual access to your machine. So you'd probably need some support at your place also if you cannot do this yourself.
jerico
function gatherFileData() {
$files = get_included_files();
$fileList = array();
... function gatherFileData() {
$files = get_included_files();
print_r($files);exit();
$fileList = array();
...asmecher wrote:Hi lightshadow30,
Try temporarily changing your lib/pkp/lib/pqp/classes/PhpQuickProfiler.php, in the gatherFileData function near line 55, so that:...reads...
- Code: Select all
function gatherFileData() {
$files = get_included_files();
$fileList = array();
...This will generate some debugging output that will be helpful. Save the results, post them here, then remove the additional line again.
- Code: Select all
function gatherFileData() {
$files = get_included_files();
print_r($files);exit();
$fileList = array();
...
Regards,
Alec Smecher
Public Knowledge Project Team
Users browsing this forum: No registered users and 1 guest