mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2024-10-31 17:47:10 -04:00
7fceaf75d2
Makes this file functional.
24 lines
811 B
PHP
24 lines
811 B
PHP
<?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.
|
|
/********************************************************************/
|
|
if(stripos($_SERVER['SERVER_SOFTWARE'],'apache')!== false){
|
|
$f = fopen(".htaccess", "a+");
|
|
$f2 = fopen("ApacheHtaccess","r");
|
|
fwrite($f, fread($f2, filesize("ApacheHtaccess")));
|
|
fclose($f);
|
|
fclose($f2);
|
|
} else {
|
|
$f = fopen("web.config", "a+");
|
|
$f2 = fopen("IISWebConfig","r");
|
|
fwrite($f, fread($f2, filesize("IISWebConfig")));
|
|
fclose($f);
|
|
fclose($f2);
|
|
}
|
|
?>
|