
05-19-2012, 07:13 AM
|
|
LiteSpeed Staff
|
|
Join Date: Sep 2009
Posts: 2,296
|
|
please check error.log. for log like:
Quote:
|
PHP Warning: session_start() [<a href='function.session-start'> function.session-start</a>]: Cannot send session cookie - headers already sent by (output started at /usr/local/lsws6/DEFAULT/html/evernote-evernote-sdk-php-2644e7f/sample/oauth/functions.php:268) in /usr/local/lsws6/DEFAULT/html/evernote-evernote-sdk-php-2644e7f/sample/oauth/index.php on line 35
|
change code of /oauth/index.php
Quote:
// Include our OAuth functions
require_once('functions.php');
// Use a session to keep track of temporary credentials, etc
session_start(); //--->this is 35th line
|
to
Quote:
// Use a session to keep track of temporary credentials, etc
session_start();
// Include our OAuth functions
require_once('functions.php');
|
will fix above error.
|