- This topic has 4 replies, 2 voices, and was last updated 13 years, 7 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP Affiliate Platform › WP Affiliate General Questions › Redirects to Login Page
I got the plugin installed and setup, but every time I login it redirects back to the same page. The URL is here: http://bestqualityhcg.info/affiliates/
Thanks!
Do you have a test login that I can try and checkout what it does? What version of the Affiliate plugin are you using?
You can try this information:
Username: demo
Password: demo123
I am using version 4.4.8
Looks like PHP session on your server is not working properly. This post has more info on this:
https://support.tipsandtricks-hq.com/forums/topic/php-session-not-working-correctly
As a workaround you can try the following.
Open the “wp_affiliate_platform1.php” file and search for the following line:
$_SESSION['user_id']= $userid;
Once you find that line just add the following line immediately after it:
setcookie("user_id", $userid, time()+60*60*6, "/");
Save and upload the modified file then test it out. Let me know how you go.
That worked perfectly. Thanks you!