The server-variables tag has no wiki summary.
0
votes
1answer
24 views
does $_SERVER['REQUEST_URI'] return the page it's programed in or the page that originated the call
i'm building a class which will house wrappers for the functions i most commonly use, one is a run query function which i will always call when i want to run a MySQL Query, inside it will clean up the ...
0
votes
1answer
36 views
HTTP_PRAGMA manually inserted into $_SERVER
When we output the $_SERVER variable like this:
die('<pre>' . print_r($_SERVER, true) . '</pre>');
We'll get alot of taha, and between them these items:
[HTTP_CONNECTION] => ...
-4
votes
5answers
90 views
What am I doing wrong [closed]
I have been struggling with this for a week or two now, and I just cant seem to resolve it. Here is my Script:
<?php
$Domain = $_SERVER['SERVER_NAME'];
$paryDomain = explode(".",$Domain);
$Array ...
1
vote
3answers
109 views
How to tell if web visitor is a robot
On an ASP website, is there a way to tell whether a visitor is a robot?
I'm thinking there might be a parameter in the ServerVariables collection that could be used, in a similar way to ...
-2
votes
2answers
566 views
Accessing the server data or variable in client side code (Javascript) [closed]
I know that we can use eval and access the public property in declared in the C# code to access the server side variable. however this is not recommended as the safest way to do this. what is the best ...
0
votes
1answer
51 views
MySQL Service startup error
When I am starting mysql service it shuts down after 5 seconds.
The error description is:
Faulting application mysqld.exe, version 0.0.0.0, faulting module mysqld.exe, version 0.0.0.0, fault address ...
1
vote
1answer
151 views
How to store a value( stored on PHP server variable ) to the extension made on crossrider when it is being installed into browser
Is there any way around to store a value( stored on server variable ) to the extension made on crossrider while the user installs the extension to his browser ? This is something when the user ...
1
vote
2answers
129 views
Unable to locate ft_min_word_len variable in my local mysql server
I was trying to edit the MySQL server variable ft_min_word_len, but unfortunately i could not find the file location on my hard disk containing these settings
I looked for the files my.ini and my.cnf ...
1
vote
2answers
336 views
Set a ServerVariable in a IIS 7.0 httpmodule
I'm trying to set a servervariable ("LOGON_USER") in a httpmodulle in IIS 7.0, but I'm not archieving it.
My BeginRequest function, so far...
BindingFlags temp = BindingFlags.NonPublic | ...
4
votes
2answers
586 views
Mysql: What is the difference between “slow_query_log” vs “log_slow_queries”
If there is not any difference, why having two server parameters to achieve one behavior?
0
votes
2answers
75 views
Server Variable is not recognizable in other pages
I have this code in the login.php file :
//save user data
$token=$user->getId().'_'.hash('sha256',$user->getUsername().microtime());
$name='fsusr_'.$user->getUsername();
//set ...
1
vote
1answer
205 views
komodo IDE -> remote debug php using komodo+xdebug: how to watch the $_SERVER variable?
I've setup komodo IDE together with xdebug to do remote debugging PHP. Everything is working fine. Now i want to watch some variables while debugging is in progress. I can watch any variables without ...
1
vote
2answers
783 views
vbscript not retrieving all server variables
I have a website that was written in VBSCRIPT that I am moving over to VB.NET. Until I have time to get to rewriting some pages/applications, I would like to update some of the code so they work a ...
1
vote
1answer
707 views
Setting HTTP_X_FORWARDED_FOR server variable in classic ASP
I need to set the HTTP_X_FORWARDED_FOR value in the Request.ServerVariables collection. I'm trying with Fiddler (see this article).
So I set up a custom HTTP request:
GET http://myhost/ HTTP/1.1 ...
1
vote
2answers
384 views
server variable document root is not playing nice with file_exists when virtual folder is involved
I've got a virtual folder on IIS.
When I do a server document root, I'm not getting file_exists find the files. But interestingly, if I use include (or require directives for that matter) same files ...
1
vote
1answer
217 views
HTTP_REFERER not displaying anything
I have two websites on two different servers. When I print the following on WEBSITE1 then it displays referrer name (if there is any referrer)
echo $_SERVER["HTTP_REFERER"]
But same code doesn't ...
1
vote
2answers
520 views
Jquery / .Net Passing a Server Variable in the Data of Ajax Call
I want to take a .Net server variable and user that in the data of an Ajax call.
$.ajax({
url: "get_user_info.aspx",
data: "user_id=<%=UserID%>"
});
However, I get an Object Expected ...
-2
votes
2answers
136 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 ...
0
votes
1answer
1k 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'])) {
...
0
votes
1answer
1k 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 ...
1
vote
1answer
2k 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:
...
2
votes
1answer
520 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 ...
1
vote
2answers
1k 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
4k 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 ...
0
votes
2answers
369 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
1k 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 ...
2
votes
2answers
311 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 ...
1
vote
2answers
321 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.
0
votes
3answers
1k 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 ! :)
2
votes
7answers
1k 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 ...
119
votes
6answers
55k views
1
vote
3answers
922 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
97 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?
3
votes
2answers
7k 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
2k 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 ...

