42.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

01-27-2015, 04:59 PM
Post: #11
RE:
Sure thing.... this is how to fix....


search file system/libraries/Session.php

on line 656 cut all function ( lines 661 to 724) and replace with this...

* Write the session cookie
*
* @access public
* @return void
*/
function _set_cookie($cookie_data = NULL)
{
if (is_null($cookie_data))
{
$cookie_data = $this->userdata;
}

// Serialize the userdata for the cookie
$cookie_data = $this->_serialize($cookie_data);

if ($this->sess_encrypt_cookie == TRUE)
{
$cookie_data = $this->CI->encrypt->encode($cookie_data);
}

$cookie_data .= hash_hmac('sha1', $cookie_data, $this->encryption_key);

$expire = ($this->sess_expire_on_close === TRUE) ? 0 : $this->sess_expiration + time();

// Set the cookie
setcookie(
$this->sess_cookie_name,
$cookie_data,
$expire,
$this->cookie_path,
$this->cookie_domain,
$this->cookie_secure
);
}


Basically completes the nulling of the software.

After that it works perfectly Smile
01-27-2015, 11:37 PM (This post was last modified: 01-27-2015 11:40 PM by reishi.)
Post: #12
RE:
(01-14-2015 12:04 PM)inspire9000 Wrote:  Ok... I fixed the problem.

under system/libraries/session.php
There are a few lines of code
Code:
http://joyonto.net/envato_validation/index.php?xmlrpc_server

I nulled that and it now works perfectly Smile
how to fix it ? thanks for share!

(01-27-2015 04:59 PM)inspire9000 Wrote:  Sure thing.... this is how to fix....


search file system/libraries/Session.php

on line 656 cut all function ( lines 661 to 724) and replace with this...

* Write the session cookie
*
* @access public
* @return void
*/
function _set_cookie($cookie_data = NULL)
{
if (is_null($cookie_data))
{
$cookie_data = $this->userdata;
}

// Serialize the userdata for the cookie
$cookie_data = $this->_serialize($cookie_data);

if ($this->sess_encrypt_cookie == TRUE)
{
$cookie_data = $this->CI->encrypt->encode($cookie_data);
}

$cookie_data .= hash_hmac('sha1', $cookie_data, $this->encryption_key);

$expire = ($this->sess_expire_on_close === TRUE) ? 0 : $this->sess_expiration + time();

// Set the cookie
setcookie(
$this->sess_cookie_name,
$cookie_data,
$expire,
$this->cookie_path,
$this->cookie_domain,
$this->cookie_secure
);
}


Basically completes the nulling of the software.

After that it works perfectly Smile


well done!
it's working now !
thanks rep+1
01-28-2015, 12:22 AM
Post: #13
RE:
Glad you got it sorted...

enjoy!
02-04-2015, 06:58 PM
Post: #14
RE:
in this script only English? Who works as a tab "Language Settings"?
02-04-2015, 07:05 PM
Post: #15
RE:
forgot to upload a file language.sql)))
30.gif




17.gif