Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I open URL in localhost it works And when we open it on server it shows Page not found 404 error .

The URL : http://site_name/index.php/admin/zooz_sample/openTrx/200/2?_=135956776989523423

The config file :

$config['uri_protocol'] = "AUTO";

The .htaccess file :

AcceptPathInfo on
RewriteCond %{REQUEST_URI} ^application.*
RewriteRule ^(.*)$ /index.php?/$1 [L]

#Checks to see if the user is attempting to access a valid file,
#such as an image or css document, if this isn't true it sends the
#request to index.php
#RewriteCond $1!^(index\.php|application/images|application/js|application/chart|application/css|application/uploadimages|application/photo_gallery)
RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

Please Tell what the actual problem is .Thanks in advance.

share|improve this question

closed as not a real question by Wesley Murch, Pekka 웃, tereško, Julius, hjpotter92 Jan 30 at 23:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

You will need to enable the AcceptPathInfo variable in the web server's configuration (assuming you're running Apache).

share|improve this answer
yes on local we run on apache – user2001057 Jan 30 at 18:41
Which Language is this on AcceptPathInfo .I just Can't understand this .. Can you please tell hoe to open this and from where ? – user2001057 Jan 30 at 18:43
@user this may have to be set in the Apache configuration. You may need to talk to the administrator who manages the server where your site runs. You can try adding a .htaccess file containing AcceptPathInfo on to the root directory, if that doesn't work you need to talk to the admin – Pekka 웃 Jan 30 at 18:49
What changes Had to done on server ? – user2001057 Jan 30 at 18:55
@user as said, you will need to enable the AcceptPathInfo variable in the web server's configuration. – Pekka 웃 Jan 30 at 19:03
show 4 more comments

I think your problem is $config['uri_protocol'] = "AUTO"; in config.php

Write this code in your controller constructor or function zooz_sample

print_r($_SERVER);
exit();

In that array see which index have the value admin/zooz_sample/openTrx/200/2?_=135956776989523423

If it is

[PATH_INFO] => "admin/zooz_sample/openTrx/200/2?_=135956776989523423"

set $config['uri_protocol'] = "PATH_INFO";

or

[ORIG_PATH_INFO] => "admin/zooz_sample/openTrx/200/2?_=135956776989523423"

set $config['uri_protocol'] = "ORIG_PATH_INFO";

Also check the file name case sensitive issue.

share|improve this answer
in both i get this . – user2001057 Jan 30 at 19:36
when I changed config. to $config['uri_protocol'] = "ORIG_PATH_INFO"; my whole site stop working and open index page for every URL . – user2001057 Jan 30 at 19:40
print $_SERVER global array – Md Atiqul Haque Jan 30 at 20:00
or use PATH_INFO – Md Atiqul Haque Jan 30 at 20:03
when i change config file all url stop working and redirect to index page . – user2001057 Jan 30 at 20:10
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.