We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9720181 commit b013cd1Copy full SHA for b013cd1
public_html/installer.php
@@ -14,9 +14,13 @@
14
| This is the public entry point for all HTTP requests to the |
15
| Roundcube Installer. |
16
+-----------------------------------------------------------------------+
17
- | Author: Thomas Bruederli <roundcube@gmail.com> |
18
| Author: Aleksander Machniak <alec@alec.pl> |
19
20
*/
21
+if (!file_exists(__DIR__ . '/../installer/index.php')) {
22
+ http_response_code(404);
23
+ exit;
24
+}
25
+
26
require __DIR__ . '/../installer/index.php';
0 commit comments