Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a server variable in IIS

Tags:

iis-7

I am not very familiar with IIS7 and I need to create a server variable so that I can access it within my PHP code. I can easily accomplish this in Apache by using:

SETENV variable_name variable_value

in the .htaccess file. However accomplishing this in IIS seems to be a bit of a secret. I have looked online for info and the closest thing I can find states using the URL Rewrite Module using these steps:

  1. Clicking on View Server Variables
  2. Click the Add link and enter the variable name
  3. Go back to rules and click the View Rewrite Maps
  4. Click Add Rewrite Map and enter the default value.
  5. Restarted the server.

Full docs can be found at: http://www.iis.net/learn/extensions/url-rewrite-module/setting-http-request-headers-and-iis-server-variables

I followed that but it still doesn’t work. Any ideas how this is done? Is it even possible to do this in IIS? All I want to do is set up a server variable with a static value.

example: $_SERVER['MY_VARIABLE']

Thanks.

like image 729
user5013 Avatar asked Dec 11 '22 17:12

user5013


2 Answers

In IIS Manager click on your machine, open the "URL Rewrite" icon from the "IIS" icon group.

Under "Actions" (on the extreme right) click the innocuous little "View Server Variables" link, disregarding "Manage Server Variables"

In the "View Server Variables" screen's "Actions" (on the extreme right) click "Add..."

enter image description here

like image 80
sirhcsivad Avatar answered Jun 10 '23 01:06

sirhcsivad


I solved this by using the PHP auto_prepend_file directive. More information can be found here: http://www.php.net/manual/en/ini.core.php#ini.auto-prepend-file

Just create a file that adds the desired value to the $SERVER array, set that as the auto_prepend_file and you are good to go. This will work with any server, not just IIS.

like image 28
user5013 Avatar answered Jun 10 '23 02:06

user5013