Site Builder
Editing:
write-profile.php
writable 0666
<?php /***************************************************************** * Helper: create directory + write profile.json *****************************************************************/ function write_profile_json(string $dir, array $data): void { /* Ensure parent folders exist with 0755 perms */ if (!is_dir($dir) && !mkdir($dir, 0755, true)) { throw new RuntimeException("Cannot create $dir"); } /* Save JSON pretty‑printed, 0644 perms */ $json = json_encode($data, JSON_UNESCAPED_SLASHES|JSON_PRETTY_PRINT); if (file_put_contents($dir.'profile.json', $json) === false) { throw new RuntimeException("Cannot write profile.json"); } }
Save changes
Create folder
writable 0777
Create
Cancel