correct Unhandled exception. System.IO.FileNotFoundException: Could not find file '/opt/jellyfin/ServerSetupApp/index.mstemplate.html'.

This commit is contained in:
2026-07-08 13:28:06 -04:00
parent 72081ca13d
commit aca106bfe9
2448 changed files with 72988 additions and 1 deletions
@@ -0,0 +1,20 @@
# Add Supplementary Indexes - Quick Command
Write-Host "Connecting to jellyfin_testsdata and adding supplementary indexes..." -ForegroundColor Cyan
Write-Host ""
# Quick and simple - just run the SQL script
psql -U jellyfin -d jellyfin_testsdata -f sql\schema_init\10_create_supplementary_indexes.sql
if ($LASTEXITCODE -eq 0) {
Write-Host ""
Write-Host "✓ Success! Supplementary indexes added." -ForegroundColor Green
Write-Host ""
Write-Host "Next: Restart Jellyfin to see performance improvements" -ForegroundColor Yellow
} else {
Write-Host ""
Write-Host "❌ Failed. Check that:" -ForegroundColor Red
Write-Host " - PostgreSQL is running" -ForegroundColor Gray
Write-Host " - Database 'jellyfin_testsdata' exists" -ForegroundColor Gray
Write-Host " - You have the correct password" -ForegroundColor Gray
}