Orange HRM wont load browser error 500 after update

Please share your suggestions and feedback to improve OrangeHRM.
Post Reply
ccars008
Posts:3
Joined:Thu Aug 29, 2019 8:49 am
Orange HRM wont load browser error 500 after update

Post by ccars008 » Thu Aug 29, 2019 10:53 am

Hi, We have a Synology NAS box and I upgraded to the latest version 4.3.2 and now the website wont load. Logs show error:

[28-Aug-2019 10:49:16 Europe/Dublin] PHP Fatal error: Cannot declare class Swift, because the name is already in use in /volume1/web/orangehrm/symfony/lib/vendor/symfony/lib/vendor/swiftmailer/classes/Swift.php on line 18

Line 18 just says: abstract class Swift


Copy of file below:

<?php

/*
* This file is part of SwiftMailer.
* (c) 2004-2009 Chris Corbyn
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

/**
* General utility class in Swift Mailer, not to be instantiated.
*
* @package Swift
*
* @author Chris Corbyn
*/
abstract class Swift
{

/** Swift Mailer Version number generated during dist release process */
const VERSION = '4.1.0-DEV';

/**
* Internal autoloader for spl_autoload_register().
*
* @param string $class
*/
public static function autoload($class)
{
//Don't interfere with other autoloaders
if (0 !== strpos($class, 'Swift'))
{
return false;
}

$path = dirname(__FILE__).'/'.str_replace('_', '/', $class).'.php';

if (!file_exists($path))
{
return false;
}

require_once $path;
}

/**
* Configure autoloading using Swift Mailer.
*
* This is designed to play nicely with other autoloaders.
*/
public static function registerAutoload()
{
spl_autoload_register(array('Swift', 'autoload'));
}

}

ccars008
Posts:3
Joined:Thu Aug 29, 2019 8:49 am

Re: Orange HRM wont load browser error 500 after update

Post by ccars008 » Fri Aug 30, 2019 1:53 pm

Looks like its trying to load it twice but I have no idea where from.

samantha
Posts:1
Joined:Thu Feb 22, 2018 3:54 am

Re: Orange HRM wont load browser error 500 after update

Post by samantha » Tue Sep 10, 2019 9:23 am

Hi ccars008,
please let us know how you get the 4.3.2 release.
did you download via sourceforge or get it via github ?

did you execute composer update command in your local env ?

Thanks,
Samantha

Post Reply