Site Builder
Editing:
paths.php
writable 0666
<?php /***************************************************************** * Helper: decide where a profile’s folder lives on disk * (you can change the rules later in one place) *****************************************************************/ define('BDO_BASE', dirname(__DIR__, 2)); // /public_html/members define('BDO_SITE_ROOT', BDO_BASE . '/sites'); // we’ll create this /** * Business slugs are 10‑digit phone numbers. * Example 7276101188 → /sites/business/727/610/1188/ */ function business_path(string $phone): string { $phone = preg_replace('/\D/', '', $phone); // keep digits $a = substr($phone, 0, 3); // 727 $b = substr($phone, 3, 3); // 610 $c = substr($phone, 6); // 1188 return BDO_SITE_ROOT . "/business/$a/$b/$c/"; } /** * Social slugs (influencers) go under first letter: * rfsafe → /sites/social/r/rfsafe/ */ function social_path(string $handle): string { $first = strtolower($handle[0]); return BDO_SITE_ROOT . "/social/$first/$handle/"; }
Save changes
Create folder
writable 0777
Create
Cancel