DEV Community

Alec
Alec

Posted on

PHP: Fixing WSOD

Short video on 2 methods to quickly fix a White Screen Of Death (WSOD) in PHP.

One trick uses the 50% method and actually will work with many languages for debugging where one character or line is killing an entire page.

These methods DO NOT require changing the php.ini.

Top comments (0)

Image of Checkly

4 Playwright Locators Explained: Which One Should You Use?

- locator('.cta'): Fast but brittle
- getByText('Click me'): User-facing, but can miss broken accessibility
- getByRole('button', { name: 'Click me' }): Most robust, best for a11y
- getByTestId('cta-button'): Stable, but ignores UX

Watch video

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay