I'm new here. My name is Mike i'm responsible for some minor tweaks and modifications on www.reallol.com. I guess you could say I'm the webmaster, but I'm not very tech Savvy so I tend to make mistakes and I'm a bit slow when it comes to coding. Also I have read the numerous responses that were given to people with similar issues, yet I feel my issue is different and the answers provided to other users on stackoverflow cant fix my problem.
Anyways, let me cut to the chase. We have a script on our website that picks an image from our database and its title and url. And posts it on our wall. You can view the Facebook wall here : www.facebook.com/reallol . As of yesterday the script that posts these pictures on Facebook has been faulty. I've tried hiring a few people to fix it, all were unsuccessful.
But here is what I understand so far. The error code we get is this one:
Warning: Invalid argument supplied for foreach() in /home/*******/public_html/facebook/facebook_autoposter.php on line 54
Trying Doggy Clothesline GIF
Fatal error: Uncaught OAuthException: A user access token is required to request this resource. thrown in /home/*******/public_html/facebook/library/base_facebook.php on line 1107
Here is the line inside the php file.
foreach($accounts_list['data'] as $account){
if($account['id'] == $cfg['facebook_page_id']){
$access_token = $account['access_token'];
if($cfg['debug']) echo "<p>Page -- Access Token: $access_token</p>";
}
}
The way this script works is I have to install the script on some facebook user that has access to the facebook page. So technically an admin. Once the admin installs the app via */facebook_autposter.php?=install the facebook app is installed on his account and we can automatically set up a cron that will posts pictures on his behalf every now and then. The issue is since today, I have to reinstall the script everytime I want to send a picture. As if it's not saving my session or something. I ran out of ideas. I tried with different admins, and I tried remaking the "facebook app" both tries were unsuccessful.
Regards, Mike, Sorry for the long post