-
Notifications
You must be signed in to change notification settings - Fork 90
/
create-server-config.php
32 lines (32 loc) · 1.13 KB
/
create-server-config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/********************************************************************/
// create-server-config.php
// Created by Yigit Kerem Oktay
// This file generates a .htaccess file that contains all necessary
// code for it.
// This is needed because some hosts do not either unzip hidden files
// or neither GitHub puts that file inside the zips.
/********************************************************************/
$apacheExampleName = "ApacheHtaccess";
$apacheProductionName = ".htaccess";
$iisExampleName = "IISWebConfig";
$iisProductionName = "web.config";
if(stripos($_SERVER['SERVER_SOFTWARE'],'apache')!== false){
if(!file_exists($apacheProductionName)) {
$f = fopen($apacheProductionName, "a+");
$f2 = fopen($apacheExampleName,"r");
fwrite($f, fread($f2, filesize($apacheExampleName)));
fclose($f);
fclose($f2);
}
// skipping renaming file if it already exists
} else {
if(!file_exists($iisProductionName)) {
$f = fopen($iisProductionName, "a+");
$f2 = fopen($iisExampleName,"r");
fwrite($f, fread($f2, filesize($iisExampleName)));
fclose($f);
fclose($f2);
}
}
?>