Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Logged In Time Zone +5 hours

I'm running vanilla 2.2. I have not changed the bootstrap.php from the original utc. I added the "garden.guest" code to fix the guest time problem but when logged in the time stamps are running 5 hours fast for me. I also confirmed it with another user in a different time zone also showing +5 for them as well.

I'm new at this and really don't know where to look to fix it.
Thanks!

Comments

  • Options

    There was this error message:
    [16-Jan-2016 08:32:18 UTC] PHP Fatal error: Can't use method return value in write context in /home6/myfeexam/public_html/forum/applications/dashboard/controllers/class.utilitycontroller.php on line 299

    which I fixed using this: (around line 299)
    // The form requires a postback to do anything.
    $step = 'start';
    } else {
    $scan = $this->Form->getFormValue('Scan');
    $run = $this->Form->getFormValue('Run');
    $step = 'start';
    if (!empty($scan)) {
    $step = 'scan';
    } else if (!empty($run)) {
    $step = 'run';
    }
    }

        switch ($step) {
            case 'scan':
                $this->runStructure($appName, true);
                break;
            case 'run':
                $this->runStructure($appName, false);
                break;
            case 'start';
            default:
                // Nothing to do here.
    
Sign In or Register to comment.