Libraries tagged by 500
unirend/php-static-server
9 Downloads
PHP companion to StaticWebServer — deploy Unirend SSG output on shared hosting with clean URLs, proper 404/500 status codes, range requests, and custom routes.
triyak/react-performance
0 Downloads
The world's most advanced React performance optimization toolkit - Built on 500+ enterprise website optimizations
tetra7/laravel-error-issue-creator
6 Downloads
Automatically creates or updates a GitHub issue for every HTTP 500 error in production.
softgala/laravel-claude-button
8 Downloads
Adds an error copy button to Laravel 500 pages. Clipboard + VS Code integration for AI-assisted debugging.
sirmekus/otu
5 Downloads
Otu is a PHP-based package that handles fine-formatting of string representation of (very) large numbers with their 'magnitude'. For instance, '50m' means 50000000. We can decide to write the entire 50000000 or just pass it to this package in the form of '50m' and have it take care of the presentation. It also works vice-versa. Walk with me.
per-seo/jsonerror
27 Downloads
JSON Error for Slim 4. This Renderer print a JSON when a 500 error occours
padam87/error-log-bundle
104 Downloads
A bundle to log 500 errors in the database
onlyfanssearch/onlyfanssearch
0 Downloads
OnlyFans Search - the OnlyFans search engine. Search 500k+ creators by name, location, price or photo. Website: https://onlyfanssearch.co - Contact: [email protected] - California, USA. Also listed on https://github.com/onlyfanssearch/onlyfanssearch , https://www.producthunt.com/products/onlyfans-search , https://linktr.ee/onlyfanssearch , https://pypi.org/project/onlyfanssearch/ , https://rubygems.org/gems/onlyfanssearch , https://hub.docker.com/r/onlyfanssearch/onlyfanssearch , https://codeberg.org/onlyfanssearch/onlyfanssearch , https://wakelet.com/@onlyfanssearch
magekwik/attribute-set-limit
1 Downloads
A Magento 2 module to enforce a maximum limit of 500 attributes per product attribute set, preventing additions via admin or API when the limit is reached.
lubna/custom-error-bundle
273 Downloads
Symfony bundle to customize and override default error pages (404, 403, 500, 401) with Twig templates and error controller support.
kruegge82/jumingo
31 Downloads
## About With the JUMINGO shipping API you can import your shipments into your JUMINGO account from any source. The functionalities of the API include creating and updating shipment drafts, fetching suitable shipment rates for a given shipment and purchasing shipping labels. Furthermore, you can retrieve tracking data and fetch shipping labels and documents for all your purchased shipments. The current main purpose of the API is to connect your account to e-commerce systems and marketplaces. ## General The API is organized around REST. Our API has resource-oriented URLs and uses HTTP response codes to indicate API errors. We use built-in HTTP features, like HTTP authentication and HTTP verbs. All API requests must be made over HTTPS. Calls made over plain HTTP will return errors. Request data is passed to the API as JSON objects and JSON is also returned by all API responses, including errors, although our API SDKs convert requests and responses to appropriate language-specific objects. Best practice usage of the API and business logic is described in the supplementary [integration guide](https://www.jumingo.com/cms/JUMiNGO_API-integration-guide.pdf "JUMiNGO API Integration Guide"). ## Base URL The base URL for all calls is: `https://api.jumingo.com/v1` ## HTTP status codes HTTP response codes in the `2xx` range indicate success. Codes in the `4xx` range indicate an error on the client side (e.g. a required parameter is missing). Codes in the `5xx` range indicate an error with our servers. Each error should provide an error code and an error message with further information. HTTP status code | Description ---------------- | ----------- 200, 201, 204 - OK | Everything worked. 400 - Bad Request | The request was unacceptable, often due to missing a required parameter or a validation error. 401 - Unauthorized | No valid API key has been provided or your account is disabled. 403 - Forbidden | You are not allowed to talk to this endpoint. This can either be due to a wrong authentication or when you’re trying to reach an endpoint that your account isn’t allowed to access. 404 - Not Found | The requested resource doesn’t exist. 500, 502, 503, 504 - Server Errors | Something went wrong on our side. Please contact our support if you receive this error. ## Authentication All API requests requires authentication. Unauthorized calls will return errors. Authenticate by including your API key in the `X-AUTH-TOKEN` HTTP header of each API call, e.g.: `X-AUTH-TOKEN: INSERT_YOUR_API_KEY` You can find your API key in your JUMINGO user account. You can get access to the JUMiNGO customer API by enabling it in your [user account](https://www.jumingo.com/de-de/users/connections/create/8). After activation, you will get your personal API key. ## Date/Time Format All values of type `string ` are defined in a specific [RFC 3339](https://tools.ietf.org/html/rfc3339#section-5.6) format and must also be formatted accordingly for requests. The format is: YYYY-MM-DD hh:mm:ss Example: 2018-07-26 15:54:13 All dates and times are specified in UTC (Coordinated Universal Time).
justinholtweb/craft-heat
1 Downloads
Find out how hot your Craft site can run before it melts — measures what a page really costs, then predicts what happens at 500, 5,000 and 50,000 visitors.
jungleran/drupal-them-all
0 Downloads
Get ~5000 Drupal packages with one command -- almost all modules and themes of Drupal 8 and the latest Drupal 8 core.
hayrullah/lem
6 Downloads
404/500 Error record links and management Errors
griffnode/php-sdk
0 Downloads
Accept Bitcoin, Litecoin, Dogecoin, Dash, Ethereum and ERC-20 tokens. Server-to-server, authenticated with a secret API key (`Authorization: Bearer sk_live_…` for live, or `sk_test_…` for test mode — same base URL). All monetary amounts in API responses are JSON numbers; **webhook** amounts are strings to preserve decimal precision (see the `webhooks` section). **Rate limits.** Every request is rate-limited per API key in two windows — per minute and per hour — by plan tier (min/hour): starter 30/500, business 100/2000, professional 300/5000, enterprise 1000/20000. Every response carries `X-RateLimit-Limit`, `X-RateLimit-Remaining` and `X-RateLimit-Reset` (Unix seconds) for the per-minute window. On `429` the body is `error: "RATE_LIMIT_EXCEEDED"` (either window) with a `Retry-After` header (seconds) — clients should retry after it. A separate `429` with `error: "MONTHLY_LIMIT_REACHED"` means the plan's monthly transaction quota (not the request rate).