initial commit

This commit is contained in:
2026-06-29 14:51:56 +06:00
commit c5c4b7c509
2400 changed files with 725568 additions and 0 deletions

13
.htaccess Normal file
View File

@@ -0,0 +1,13 @@
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
<IfModule mod_php5.c>
php_value post_max_size 16M
php_value upload_max_filesize 5M
php_value memory_limit 128M
php_value max_execution_time 600
</IfModule>