Adding PDO pdo_mysql Extension in Apache + PHP Docker Container

Adding PDO pdo_mysql Extension in Apache + PHP Docker Container

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today I’m going to show you how to install the PDO pdo_mysql extension to use Codeigniter or RedBeans, etc… We have the following docker-compose.yml file: version: “3.1” services: miservicio_mariadb: image: mariadb container_name: mariadb_container env_file: – ./Dockerfile/mysql.env environment: MYSQL_DATABASE: “db_prueba” MYSQL_USER: “user_prueba” MYSQL_PASSWORD: “pass_mysql” MYSQL_ROOT_PASSWORD: “contra@prueba” volumes: – ./config/mariadb:/var/lib/mysql expose: – 3306 … Read more

Fixing error Message: mkdir(): Invalid path Session_files_driver in Codeigniter using Docker

Fixing error Message: mkdir(): Invalid path Session_files_driver in Codeigniter using Docker

Tiempo de lectura: < 1 minuto Reading time: < 1 minute In this post, we are going to solve an error related to sessions: Severity: Warning Message: mkdir(): Invalid path Filename: drivers/Session_files_driver.php Line Number: 136 Backtrace: File: /var/www/html/application/controllers/Home.php Line: 5 Function: __construct File: /var/www/html/index.php Line: 315 Function: require_once First, open application/config. Edit config.php and go to the line of the $config['sess_save_path'] ... Read more

Rb Library Error in CodeIgniter 3

Rb Library Error in CodeIgniter 3

Tiempo de lectura: 2 minutos Reading time: 2 minutes Red Bean is a PHP library that facilitates the development of a CRUD (for example) in CodeIgniter 3. As you start using it, I will show you how it works and what it allows us to do. Once you have configured the project as explained in Systematic Installation and Web Development … Read more

Private: CRUD in CodeIgniter 3 with RedBeans using MySQL DB

Private: CRUD in CodeIgniter 3 with RedBeans using MySQL DB

Tiempo de lectura: < 1 minuto Reading time: < 1 minute CRUD in CodeIgniter 3 with RedBeans using MySQL DB Photo by Pixabay on Pexels Good afternoon, continuing from the previous post Installation and Systematic Web Development with RedBean + CodeIgniter 3 and Bootstrap, we are now going to start by creating a fairly simple CRUD. CRUD is an acronym that ... Read more