Журнал изменений

Фильтр и поиск

Всего: 928 Доступных коммитов | Отфильтровано: 928 Коммиты | Страница: 1 / 93
Вчера (24.06.2026)
Fix: drop CDATA wrapper in error.html inline logo SVG
Автор: Eduard Laas | Дата: 22:17 24.06.2026

Remove the XML <![CDATA[ ]]> markers around the inlined logo's inner <style>. They are unnecessary in an HTML document (style content is already raw text) and were flagged by the HTML validator. The logo renders identically since the .fil* rules remain in the <style> block.

Feature: self-contained error page and consistent branded error responses
Автор: Eduard Laas | Дата: 22:12 24.06.2026

Route every web-server error code to the SLAED branded page and add a fully self-contained static fallback for 502/504, so visitors always get the themed error UI instead of a bare nginx/Apache page even when PHP is down. Several modules that silently fell back to the home page now return SEO-correct 404s.

Core changes:

  1. Static 502/504 fallback (error.html):
  2. New self-contained page served by the web server when PHP is unavailable

    • Inline CSS (theme rules), inline SVG logo and icons, no external file
    • Inline JS sets the current year; 2026 is the no-JS fallback
    • noindex; renders identically to the live branded error page
  3. ?error= contract and status reasons (core/security.php):
  4. Whitelist ?error= codes 400 401 402 403 404 500 502 503 504

    • Forged or unknown codes fall through and cannot emit arbitrary statuses
  5. Extend the setError() status-reason map (401, 402, 502, 504)
  6. SEO-correct 404s instead of soft home redirects:
  7. index.php: unknown, inactive or unservable module now setError(404)
  8. modules/changelog/index.php: out-of-range page now setError(404)
  9. Web-server wiring and documentation:
  10. .htaccess: ErrorDocument 502/504 to /error.html for Apache parity
  11. docs/PERFORMANCE.md and admin/info/editor/ru.md: nginx/Apache recipes, fastcgi_intercept_errors off, the ?error= whitelist and the static page

  12. Error-page card styling (templates/lite/assets/css/theme.css):
  13. Adjust .sl-msg-search and .sl-msg-foot widths and spacing to fit the card
  14. Regression guard (tests/ErrorPageContractTest.php):
  15. Assert error.html is self-contained (no external CSS/JS/img) and branded
  16. Assert the ?error= whitelist is fully covered by setError() reasons

Benefits:

  • Correct HTTP status on every error path, improving SEO and crawler signals
  • Branded, no-store error UI even during a PHP-FPM outage
  • One error-rendering contract shared by nginx and Apache

Technical notes:

  • error.html is generated from the lite theme with only used rules and tokens
  • nginx still serves real 502/504 from the static file; 502/504 are whitelisted only so a manual ?error= still renders when PHP is alive

  • No database or schema changes; backward compatible
Feature: consistent gated responses for uncaught errors and DB failure
Автор: Eduard Laas | Дата: 15:49 24.06.2026

Uncaught exceptions, fatal errors, and the DB-connection failure now produce a consistent response: the full error detail in debug mode, a clean 500 in production, and never an HTML page inside a non-HTML response. Detail goes to the log; nothing internal is shown to visitors in production.

Core changes:

  1. Error responder (core/security.php):
  2. Add setErrorOut(): recursion-guarded; skips non-HTML requests (go=1/2/3/4/5/asset/captcha/rss/xsl or headers already sent) with a status-only 500; debug shows the detail via setExit() (status 200, so nginx never intercepts it); production renders setError(500)
  3. set_exception_handler() now routes through setErrorOut() and logs the full trace; rendering is decoupled from security.error_log so a clean 500 page appears even with logging off
  4. register_shutdown_function() logs fatals (when enabled) and sets a 500 status without a heavy render (process state may be broken)
  5. setError() status map gains 503 Service Unavailable
  6. Database connection (core/classes/pdo.php):
  7. On PDOException, gate the detail by security.error: debug shows it (setExit), production renders setError(500); the detail is logged in both cases

Technical notes:

  • App-emitted errors render the SLAED page with Cache-Control: no-store; status via http_response_code() (HTTP/2 safe)
  • Debug detail is served as 200 so it survives nginx without fastcgi_intercept_errors off; the full stack trace is written to the log
  • Behavior change: uncaught errors no longer fall through to raw PHP output; production no longer leaks DB internals to the page
Docs: clarify nginx error-page handling for PHP 4xx/5xx
Автор: Eduard Laas | Дата: 15:13 24.06.2026

Document that PHP-generated 404/403/503/500 must pass through (fastcgi_intercept_errors off) so SLAED's branded page and no-store headers reach the client, and separate app-emitted 5xx from infrastructure 5xx (502/504) that only nginx can answer.

Core changes:

  1. Performance guide (docs/PERFORMANCE.md):
  2. New "PHP error pages" subsection under the web-server configuration section
Fix: emit 500/503 instead of 200 for DB failure and maintenance
Автор: Eduard Laas | Дата: 15:13 24.06.2026

A DB-connection failure and the site-closed gate returned 200, which misleads crawlers and monitoring. They now carry the correct status, and the DB error detail is logged instead of shown to visitors.

Core changes:

  1. Database connection (core/classes/pdo.php):
  2. On PDOException, log the detail via Logger and render setError(500) instead of setExit() (was 200; also stops leaking the raw DB message to the page)
  3. Maintenance gate (index.php):
  4. Closed-site response now sends 503 Service Unavailable while keeping the _CLOSE_TEXT page
  5. Error helper (core/security.php):
  6. setError() status map gains 503 Service Unavailable

Technical notes:

  • App-emitted 5xx render the SLAED page (status via http_response_code(), Cache-Control: no-store)
  • captcha JSON 503 left as-is; infra 5xx (502/504) remain nginx's responsibility
Style: brand error page title and drop redirect wording
Автор: Eduard Laas | Дата: 11:10 24.06.2026

Align the error page presentation with the removed auto-redirect.

Core changes:

  1. Error page (templates/lite/pages/message.html):
  2. Render "<title> - <sitename>" when a page title is set
  3. Localization (lang/*.php):
  4. _ERROR_PAGE now invites returning home or using search instead of announcing a redirect (de/en/fr/pl/ru/uk)
Feature: return SEO-correct HTTP 404/403 instead of soft 200/302
Автор: Eduard Laas | Дата: 11:10 24.06.2026

Missing content, out-of-range list pagination and access-restricted pages now emit proper 404/403 instead of redirecting or returning 200, so crawlers stop indexing soft-error pages. Error rendering is consolidated into one setError() helper.

Core changes:

  1. Error helper (core/security.php):
  2. Add setError(int $code): status via http_response_code(), conditional logging, standard error page
  3. Drop the meta-refresh auto-redirect from setExit() (soft-404 / WCAG 2.2.1 anti-pattern)
  4. Route the bootstrap $_GET['error'] handler through setError(), removing the 40-line $http status map
  5. Frontend modules (modules/*/index.php):
  6. view(): 404 when the item does not exist
  7. list/liste(): 404 when a page beyond the first yields no rows
  8. forum: 404 for out-of-range topic pages and unpublished topics, 403 when category read is denied
  9. broken()/loading(): 404 on invalid requests
  10. Module gates (index.php):
  11. view=1 / view=2 access denials now send 403

Technical notes:

  • http_response_code() is HTTP/2-safe; error responses keep Cache-Control: no-store
  • Backward compatible; php -l and phpstan clean
Эта неделя (23.06.2026)
Fix: news block content init and fieldset top margin
Автор: Eduard Laas | Дата: 15:43 23.06.2026

Core changes:

  1. News block (blocks/news.php):
  2. Initialize $content before the result loop to avoid an undefined variable
  3. Base styles (templates/lite/assets/css/base.css):
  4. Fieldset uses margin-top instead of an all-sides margin
Fix: associate user-info block login inputs with labels (a11y)
Автор: Eduard Laas | Дата: 15:43 23.06.2026

Wrap the nickname/password inputs of the user-info block login form in <label> for implicit association, matching the block-login-form fix.

Core changes:

  1. block-user-info.html:
  2. Wrap nickname and password inputs in <label>
Fix: mobile and desktop horizontal overflow in lite theme
Автор: Eduard Laas | Дата: 15:41 23.06.2026

Remove horizontal scroll across phone, tablet and laptop widths in the lite theme and tidy the touched comments to the project style.

Core changes:

  1. Footer grid (theme.css):
  2. Mobile grid tracks use minmax(0, 1fr) and grid items get min-width:0 so content wraps instead of forcing the column wider than the viewport
  3. Header and side elements (theme.css):
  4. Login dropdown closed state is position:fixed on mobile so its off-screen box no longer widens the page; the JS-opened state still positions in view
  5. Demo-line version pane wraps on narrow screens; header version pane is hidden on mobile (duplicate of the demo-line and footer CTA)
  6. Remove the -30px bleed margins on the logo and header pane that pushed them past both viewport edges on laptops (<=1352px)
  7. Hide the fixed left-edge idea/feedback tabs on mobile (they overlapped the menu and blocked taps)
  8. Comments (theme.css):
  9. Single-line, no trailing period, ASCII per .rules/global.md

Benefits:

  • scrollWidth == clientWidth from 320px to 1680px
  • No clipped logo, button or footer text; no tap-blocking overlays on mobile

Всего: 928 на 93 страницах по 10 на каждой странице

Хотите опробовать SLAED CMS в действии?

Идеи и предложения
Обратная связь