I'm using facebook-php-sdk with my codeigniter application. I have a problem with authentication when I'm trying to get rid off index.php from my URL.
My implementation of facebook connect is simple and works fine. (sdk core files are a library, and cofig file with app data) Authentication works great when I'm typing:
myapp.com/index.php/welcome
but when I'm trying:
myapp.com/welcome
I can click and click and click on login - and page just refreshes.
My Welcome controller:
public function __construct()
{
parent::__construct();
// Your own constructor code
$CI = & get_instance();
$CI->config->load("facebook",TRUE);
$config = $CI->config->item('facebook');
$this->load->library('facebook', $config);
}
public function index()
{
echo CI_VERSION;
$user = $this->facebook->getUser();
if($user) {
$user_info = $this->facebook->api('/me');
echo '<pre>'.htmlspecialchars(print_r($user_info, true)).'</pre>';
} else {
echo "<a href=\"{$this->facebook->getLoginUrl()}\">Login using Facebook</a>";
}
}
Simple as that: when authenticated it just prints my fb account data.
My .htaccess:
RewriteCond %{THE_REQUEST} ^GET\ /index\.php/?([^ ]*)
RewriteRule ^index\.php/?(.*) /$1 [R,L]
RewriteCond $0 !^index\.php($|/)
RewriteRule .* index.php/$0 [L]
UPDATE
My login url from mysite.com/welcome NOT WORKING
https://www.facebook.com/dialog/oauth?client_id=487********73&redirect_uri=http%3A%2F%2Fmysite.com%2Fwelcome&state=ae51191b8eabf884ead0c116e7e28b4d
and from mysite.com/index.php/welcome WORKING FINE
https://www.facebook.com/dialog/oauth?client_id=487********73&redirect_uri=http%3A%2F%2Fmysite.com%2Findex.php%2Fwelcome&state=ae51191b8eabf884ead0c116e7e28b4d
$config['index_page'] = '';inapplication/config/config.php? – Prasanth Aug 21 '12 at 10:07.htaccesscode seems to produce an error on my local server. Have you tried the cleaner htaccess code described in the CI docs: Codeigniter URLs. Also: is welcome your default controller? In this case you don't need to call/welcome; you should be able to redirect to your site root. – froddd Oct 1 '12 at 9:59