Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at C:\Winginx\home\public_html\class\class.engine.php:107) in C:\Winginx\home\public_html\core.php on line 162 Warning: Cannot modify header information - headers already sent by (output started at...
so this is in the core
public function encrypt( $string, $encryption_key )
{
$password = hash( 'sha256', $string );
$length = strlen( $password ) / 2;
if ( strlen( $password ) % 2 ) {
$length++;
}...
Hello I am trying to convert my cms (Edited wCMS) from auth_ticket to user_tickets
here is the sso part of class.core
case "client":
$users->createSSO($_SESSION['user']['id'])...