-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
executable file
·64 lines (61 loc) · 2.22 KB
/
index.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<title>KumbiaError</title>
<style type="text/css">
body {
margin: 0px;
font-family: "Lucida Grande", "Tahoma","sans-serif";
}
div, li, ul {
font-family: "Lucida Grande", "Tahoma","sans-serif";
font-size: 12px;
}
h2 {
font-family: "Trebuchet MS","sans-serif";
font-size: 18px;
}
</style>
</head>
<body>
<?php
if(stripos($_SERVER['SERVER_SOFTWARE'], "Apache")!==false){
if(!in_array('mod_rewrite', apache_get_modules())){
echo
<div style='background:#ccdeff'>
<h2>Kumbia Enterprise Framework: No tiene Mod-ReWrite de Apache instalado</h2>
Debe habilitar/instalar mod_rewrite en su servidor Apache.
</div>
<div style='padding:10px'>
Consulte para más información:
<ul>
<li><a href='http://httpd.apache.org/docs/2.0/misc/rewriteguide.html'>http://httpd.apache.org/docs/2.0/misc/rewriteguide.html</a>
</ul>
</div>";
} else {
echo
<div style='background:pink;padding:1px'>
<h2>Kumbia Enterprise Framework: No se pudo utilizar reescritura de URLs </h2>
</div>
<div style='padding:10px'>
Verifique lo siguiente:
<ul>
<li>El archivo '".$_SERVER['DOCUMENT_ROOT'].dirname($_SERVER['PHP_SELF'])."/.htaccess' está presente
<li>".apache_get_version()." soporta archivos de sobreescritura de configuración '.htaccess'
<li>La opción de configuración de Apache 'AllowOverride All' no está presente
en el DocumentRoot '".$_SERVER['DOCUMENT_ROOT']."'
</ul>
Consulte para más información:
<ul>
<li><a href='http://httpd.apache.org/docs/2.0/misc/rewriteguide.html'>http://httpd.apache.org/docs/2.0/misc/rewriteguide.html</a>
<li><a href='http://httpd.apache.org/manual/howto/htaccess.html'>http://httpd.apache.org/manual/howto/htaccess.html</a>
<li><a href='http://httpd.apache.org/manual/configuring.html'>http://httpd.apache.org/manual/configuring.html</a>
</ul>
</div>";
}
} else {
echo
<div style='background:#ccdeff'>
<h2>Kumbia Enterprise Framework: Su Web Server no tiene configuradas reglas de reescritura</h2>
</div>
Consulte la documentación de su servidor web para informarse como hacer esto.";
}