design & maintain by yuy@
Laravel 13.23.0 + SQL Server @unmanaged VPS, live di sqlserver.kbye.my — dihoskan di Windows Server (IIS) melalui VPS YeahHost.
Ini bukan aplikasi produk — ia projek template asas untuk mula-mulakan projek Laravel baharu yang guna SQL Server, di Windows/IIS. Halaman ini pulangkan status sambungan pangkalan data secara live (bukan data statik) sebagai bukti sambungan PHP → SQL Server berfungsi hujung ke hujung.
CLAUDE.md di root repo.misms) ke VPS yang sama:
ikut deploy/PANDUAN-DEPLOY.md — Bahagian B (Deploy Projek Baharu).deploy/new-site.ps1 (automatik app pool + binding + permission + DB + migrate).CLAUDE.md — arkitektur projek & cara guna template inideploy/PANDUAN-DEPLOY.md — proses penuh setup VPS & deploy projek baharu, termasuk jadual isu/punca yang pernah dihadapideploy/setup-vps.ps1 — provisioning VPS one-time (IIS, PHP, driver SQL Server)deploy/new-site.ps1 — provisioning site IIS baharu per-projek| Database | sqlserver |
|---|---|
| Server | v102989\SQLEXPRESS |
| Versi SQL Server | Microsoft SQL Server 2022 (RTM) - 16.0.1000.6 (X64) |
Query terus ke sys.tables pada database sqlserver:
SELECT t.name AS table_name, p.rows AS row_count FROM sys.tables t JOIN sys.partitions p ON t.object_id = p.object_id AND p.index_id IN (0, 1) ORDER BY t.name
| Jadual | Bilangan Baris |
|---|---|
cache |
0 |
cache_locks |
0 |
failed_jobs |
0 |
job_batches |
0 |
jobs |
0 |
migrations |
3 |
password_reset_tokens |
0 |
sessions |
41 |
users |
0 |
Query terus ke jadual migrations (rekod migration yang telah dijalankan di server ini):
| ID | Migration | Batch |
|---|---|---|
| 1 | 0001_01_01_000000_create_users_table |
1 |
| 2 | 0001_01_01_000001_create_cache_table |
1 |
| 3 | 0001_01_01_000002_create_jobs_table |
1 |
Dijana secara live dari App\Http\Controllers\StatusController — lihat kod sumber untuk query penuh.