Skip to content

Instantly share code, notes, and snippets.

@edica
edica / Codeigniter4 on VestaCP.md
Last active January 20, 2023 02:58
Codeigniter4: web templates for VestaCP - CentOS7
  1. Files should be put in /usr/local/vesta/data/templates/web/httpd

  2. Change the web template to codeigniter4 in panel vesta and upload your whole project into public_html

@jeffochoa
jeffochoa / Response.php
Last active February 4, 2026 06:20
Laravel HTTP status code
<?php
// This can be found in the Symfony\Component\HttpFoundation\Response class
const HTTP_CONTINUE = 100;
const HTTP_SWITCHING_PROTOCOLS = 101;
const HTTP_PROCESSING = 102; // RFC2518
const HTTP_OK = 200;
const HTTP_CREATED = 201;
const HTTP_ACCEPTED = 202;