I have a duplicate of a live Wordpress site on my local using Xampp. My session path in php.ini is session.save_path = "C:\xampp\tmp", and the file setting these session variables are below. After I set the session and redirect the session is empty on the callback page. What am I missing? The folder is visible in Xammp for the tmp folder.
I also have my host file pointing the Domain Url to my localhost if that matters.
session_start();
$_SESSION['oauth_token'] = $request_token['oauth_token'];
$_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];
Also it isn't working on the live site.
session_start()also on the callback page? - Jonhttp://example.comand the redirected page is athttp://www.example.com. - PureForm