-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 87eb228
Showing
15 changed files
with
1,552 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<module> | ||
<name>securitylite</name> | ||
<displayName><![CDATA[Security Lite]]></displayName> | ||
<version><![CDATA[2.0.0]]></version> | ||
<description><![CDATA[This module increases the overall security of your PrestaShop website.]]></description> | ||
<author><![CDATA[Mathias Reker]]></author> | ||
<tab><![CDATA[administration]]></tab> | ||
<is_configurable>1</is_configurable> | ||
<need_instance>0</need_instance> | ||
<limited_countries></limited_countries> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
/** | ||
* 2019 Mathias R. | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This file is licensed under the Software License Agreement | ||
* With the purchase or the installation of the software in your application | ||
* you accept the license agreement | ||
* | ||
* @author Mathias R. | ||
* @copyright Mathias R. | ||
* @license Commercial license (You can not resell or redistribute this software.) | ||
*/ | ||
|
||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); | ||
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); | ||
|
||
header('Cache-Control: no-store, no-cache, must-revalidate'); | ||
header('Cache-Control: post-check=0, pre-check=0', false); | ||
header('Pragma: no-cache'); | ||
|
||
header('Location: ../'); | ||
|
||
exit; |
Oops, something went wrong.