I am having issues with the code to access a remote website server2
from another website server1
. The code I use from inside the server2 to log in is the following code:
require_once("http://server2.com/access/models/config.php");
if (!securePage($_SERVER['PHP_SELF'])){die();}
//Prevent the user visiting the logged in page if he/she is already logged in
if(isUserLoggedIn()) { header("Location: http://server2.com/access/account.php"); die(); }
On server2 it looks like I can not use require_once()
because the page does not pass and when I use include()
then prevent the user visiting does not pass. I think I am missing a code like cURL
or path. Can anybody post the code to call my server2
from a another remote server1?