issues Search Results · language:Dune language:HTML language:JavaScript language:JavaScript language:Java language:Java
Filter by
39.8M results
RecordService::findAll() wraps its body in try { ... } catch (Exception $e) { return []; }, silently swallowing database
failures and making an outage look like no records .
Goal: let infrastructure errors ...
cleanup
배경
13.4GB 백업을 브라우저로 업로드하려다 nginx(50M)/multer(10GB) 한도 초과 + 업로드가 끝나지 않아 UI가 무한 상태. 대용량 백업은 HTTP 업로드 자체가 부적합.
변경
1. 서버사이드 복원 (업로드 우회): /app/backups 에 둔 백업 .zip 을 UI 에서 선택해 복원
- GET /restore/server-files: ...
enhancement
v3.8.4
Criar camada controller para desafios
Mixed method naming conventions across the codebase: snake_case (get_num_rows, num_rows, free_result,
has_unique_username) alongside camelCase (getConnection, findAll). DatabaseConnection also has redundant ...
cleanup
composer.json pins PHP to =8.1 with a platform config of 8.1.0. PHP 8.1 reaches end of security support around the end
of 2025.
Goal: target PHP 8.3/8.4. Update composer.json require + config.platform, ...
dependencies
Problem
A formatter can rewrite a file after an agent has staged it, and the current hook baseline does not mechanically stop a
commit when the same path has staged content plus unstaged worktree changes. ...
.gitignore ignores composer.lock. For an application (not a library), the lockfile should be committed so installs are
reproducible across environments and CI.
Fix: remove composer.lock from .gitignore ...
dependencies
tooling
There is currently no automated quality safety net (no tests/ directory, no static analysis, no formatter, no CI).
Proposed
- PHPUnit — start with the service layer (RecordService, UserManager).
...
tooling
RecordService::__construct() calls ensureTableExists() on every request, running a schema check / CREATE TABLE on each
hit.
Goal: move schema management to migrations run at deploy time (e.g. robmorgan/phinx ...
architecture
The service container is a plain associative array ($app), and config/bootstrap.php defines global state: global
$sessionHelper and global functions h(), url_for(), csrf_token(), redirect_to(). KrateSettings ...
architecture

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.