Yanz
12-10-2010 07:31 PM
#1
Hi MF,
I'm having trouble with my facebook commenting I recently added to my webpage
http://www.yanzcity.com/news.php
It sometimes wishes to work, but as soon as a new comment is created & the page is reloaded/refreshed or left and came back to, it simply refuses to work. No errors, just a blank text box. I've tried multiple browsers & still have the same problem.
Is it possible there could be a bug or a setting I have not correctly applied?
matt9875
12-11-2010 01:13 AM
#2
Judging by the fact you are getting a blank screen i am going to assume one of the following:
- The page is erroring and errors/warnings are turned off
- You are simply not being returned any data.
In the case of 1 i am assuming your using php, so you might want to try the following:
PHP Code:
error_reporting(E_ALL);
Add this to the top of your page under your first <?php tag, see if any errors are being thrown.
In the case of 2 then you may want to re-check your facebook api integration.
Yanz
12-11-2010 07:19 AM
#3
(12-11-2010 01:13 AM)matt9875 Wrote: Judging by the fact you are getting a blank screen i am going to assume one of the following:
- The page is erroring and errors/warnings are turned off
- You are simply not being returned any data.
In the case of 1 i am assuming your using php, so you might want to try the following:
PHP Code:
error_reporting(E_ALL);
Add this to the top of your page under your first <?php tag, see if any errors are being thrown.
In the case of 2 then you may want to re-check your facebook api integration.
Okay,
Thankyou for this, but as I thought, nothing turned up for the facebook commenting that has disappeared, so I'm going to overlook this and move onto the api. I'll let you know if it worked or not.