Tagged Questions
The server-variables tag has no wiki summary.
41
votes
4answers
17k views
2
votes
1answer
219 views
what is equivalent function of $_SERVER['HTTP_REFERER'] in mobile web application
i m developing a PHP website as an application of android, but there is a problem i stuck.
i have a back button , where i write below logic using
$_SERVER['HTTP_REFERER'] to find out the page from ...
2
votes
2answers
132 views
How can you “footprint” a specific computer behind a firewall using HttpContext?
I have a need to be able to identify one system from another in ASP.Net using anything available in HttpContext. I've attempted to use many of the ServerVariables available, but often the systems are ...
2
votes
7answers
708 views
PHP - How to determine if request is coming from a specific file
I have fileA.php on SERVER_A and fileB.php on SERVER_B
fileB.php makes a curl request to fileA.php for it's contents
How can fileA.php determine that the request is coming specifically from ...
1
vote
1answer
332 views
mod_rewrite & PHP; $_SERVER['REQUEST_URI'] vs. mod_rewrite
Quick one:
I'm curious if anyone knows of certain circumstances under which $_SERVER['REQUEST_URI'] would contain a different value than $_GET['_uri'], given the following .htaccess for the latter:
...
1
vote
2answers
409 views
DOCUMENT ROOT variable on PHP-IIS
Does the $_SERVER["DOCUMENT_ROOT"] variable exist on IIS running PHP? Earlier I thought this variable is Apache specific and on IIS, you have to emulate it by string manipulation of SCRIPT_NAME and ...
1
vote
3answers
356 views
How can I use Basic HTTP Authentication in PHP?
I'm trying to use Basic HTTP Authentication and followed the example on the PHP manual page. But it doesn't work for me. The variable $_SERVER['PHP_AUTH_USER'] doesn't seem to be set. When a user try ...
1
vote
3answers
187 views
Simple PHP Server info request - not working at all
Going off of my other question and its pair.
I'm looking to grab the Hostname:Port value as found in the phpinfo() function. I can't seem to find it anywhere and it's not in $_SERVER.
1
vote
3answers
666 views
Accessing Server Tags inside Javascript in MVC project
I'd like to use some server tags inside a Javascript function:
<%=Model.HtmlProperty%>
In the past I have stored this value in a hidden input field, but when a property contains HTML you get ...
1
vote
2answers
71 views
Is relying on $_SERVER['HTTP_ACCEPT_LANG'] ok for multilingual support?
Is there any pitfalls or downsides to relying on $_SERVER['HTTP_ACCEPT_LANG'] for language detection?
0
votes
0answers
75 views
Cookies, Sessions & URL Rewriting - Missing Session Value Issue
I'm in the middle of a ASP.NET multilingual website project using VS and framework4,
It's a two parts question regarding URL Rewiting & asp.net website sessions
First, does cookies created ...
0
votes
1answer
239 views
Using $_server['document_root'] on localhost/the wild web
On my WAMP setup, I'm using $_server['document_root'] in a number of filepaths..
I had been using a static $ROOT variable, but thought it would be nice not to have to edit that constant when uploading ...
0
votes
1answer
237 views
serving different content based on the domain in codeigniter
I'm going to develop a website in codeigniter. But not sure if the methor i'm going to use is the best approach. There will be many addon domains for the same site. But content will be filtered based ...
0
votes
3answers
310 views
Server side variables in javascript
I suppose this isn't a huge deal, since there are other way around this issue, but I'm really curious as to the answer, since I thought this was possible to do.
I have a public property that returns ...
0
votes
3answers
629 views
Server variables and the .js file. Is it possible?
is it possible to invoke server variables in the external .js file ?
[Edit]
OK, I resolved the problem, thank for Your help ! :)
0
votes
2answers
2k views
What does the utmscr or utmcct values mean in reference to the Http cookie Server variable?
What does the utmscr and/or utmcct values mean in reference to the Http cookie Server variable? Are they acronyms or short for something?
We are getting Elmah errors with the title ...
0
votes
2answers
1k views
ASP Server variable not working on local IIS
I'm working on a simple ASP.Net page (handler, actually) where I check the value of the LOGON_USER server variable. This works using Visual Studio's built-in web server and it works in other sites ...
-1
votes
1answer
230 views
HTTP Auth via PHP - PHP_AUTH_USER not set?
I tried to implement a small authentication via http and copied this bit of code from the net to check whether this will work properly:
<?php
if(!isset($_SERVER['PHP_AUTH_USER'])) {
...
-2
votes
2answers
43 views
If IP addresses can be spoofed so
If IP addresses can be spoofed by creating false or manipulated http headers, and therefore it should not be relied upon in validating the incoming request in our PHP/ASP pages, how come servers take ...