Category: Ubuntu

how to enabled Zip extension status

To enable the Zip extension in PHP, you will need to follow different steps depending on your server environment (Windows, Linux, etc.) and how PHP is installed (e.g., using XAMPP, WAMP, or a standalone installation). Here’s a general guide for enabling the Zip extension For Windows (Using php.ini) Locate the php.ini file: If you are using XAMPP, […]

Buat dan Panggi Store Procedure di Mysql

Step Stepnya : Buat Store procedure di mysql Test panggil store tersebut Test query database apakah proces ke 2 jalan Buat Store procedure di mysql — DROP PROCEDURE DeleteAuditSheetData; DELIMITER $$ CREATE PROCEDURE DeleteAuditSheetData (     IN p_AuditSheetMonth SMALLINT,     IN p_AuditSheetYear SMALLINT ) BEGIN     — Mulai transaksi     START […]

How to change the port of Tomcat from 8080 to 80?

How to change the port of Tomcat from 8080 to 80? I want to execute my web app as http://localhost. 1) Go to conf folder in tomcat installation directory e.g. C:\Tomcat 6.0\conf\ 2) Edit following tag in server.xml file <Connector connectionTimeout=”20000″ port=”8080″ protocol=”HTTP/1.1″ redirectPort=”8443″/> 3) Change the port=8080 value to port=80 4) Save file. 5) Stop your Tomcat and restart it. On Ubuntu […]