Site Builder
Editing:
check-slug.php
writable 0666
<?php require_once __DIR__.'/../lib/db.php'; header('Content-Type: application/json'); $kind = $_GET['kind'] ?? ''; $slug = trim($_GET['slug'] ?? ''); if ($kind==='business' && !preg_match('/^\d{10}$/',$slug)) { echo '{"ok":false,"msg":"Need 10 digits"}'; exit; } if ($kind==='social' && !preg_match('/^[A-Za-z0-9_-]{3,32}$/',$slug)) { echo '{"ok":false,"msg":"3‑32 chars A‑Z 0‑9 _ -"}'; exit; } $cnt = $db->prepare('SELECT COUNT(*) FROM users WHERE site_slug=?')->execute([$slug])->fetchColumn(); echo $cnt ? '{"ok":false,"msg":"Taken"}' : '{"ok":true,"msg":"Available"}';
Save changes
Create folder
writable 0777
Create
Cancel