bd06fc7fbf
- Allows customization through .htaccess - No need to configure or reload a server when adding a site - Content negotiation
19 lines
747 B
PHP
19 lines
747 B
PHP
<?php
|
|
|
|
if (dirsStatuses('subpath')[$_POST['dir']] !== false)
|
|
output(403, 'Wrong value for <code>dir</code>.');
|
|
|
|
if (preg_match('/^[a-z0-9]{1,32}$/D', $_POST['path']) !== 1)
|
|
output(403, _('Invalid path.'));
|
|
|
|
if (query('select', 'sites', ['address' => $_POST['path'], 'type' => 'subpath']) !== [])
|
|
output(403, _('This path already exists on this service. Use another one.'));
|
|
|
|
rateLimit();
|
|
|
|
addSite($_SESSION['id'], $_POST['dir'], $_POST['path'], 'subpath');
|
|
|
|
if (symlink('../../fs/' . $_SESSION['id'] . '/' . $_POST['dir'], CONF['ht']['ht_path'] . '/uri/' . CONF['ht']['subpath_domain'] . '/' . $_POST['path']) !== true)
|
|
output(500, 'Unable to create symlink.');
|
|
|
|
output(200, sprintf(_('%s added on this directory.'), PAGE_METADATA['title']));
|