Commit b824f34c30aae319a3f0419461656878e82a77b8
1 parent
3fee8582
Exists in
master
by Eriksen: Adicionado lembrete para apagar arquivo quando em produção
Showing
1 changed file
with
8 additions
and
7 deletions
Show diff stats
ieducar/info.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | -// Show all information, defaults to INFO_ALL | ||
4 | -phpinfo(); | ||
5 | - | ||
6 | -// Show just the module information. | ||
7 | -// phpinfo(8) yields identical results. | ||
8 | -phpinfo(INFO_MODULES); | 3 | +/** |
4 | + * Visualização da configuração do PHP. | ||
5 | + * | ||
6 | + * Apague este arquivo uma vez que seu i-Educar estiver em produção por razões de segurança. | ||
7 | + * Utilize para verificar se os módulos necessários foram instalados. | ||
8 | + * | ||
9 | + */ | ||
9 | 10 | ||
10 | -?> | 11 | +phpinfo(); |