Installation

Installation

  1. Ensure Dependencies – Make sure you have the required dependencies:

  1. Upload Files – Upload all files to your server resources folder.

  2. Configure Database – The script will automatically create required database tables.

  3. Server Configuration – Add to your server.cfg:

   ensure ox_lib
   ensure finals-paycheck
  1. Add the SQL to the database (if you are getting SQL error in the database)

CREATE TABLE `payments` (
  `id` int(11) NOT NULL,
  `citizenid` varchar(50) NOT NULL,
  `amount` int(11) NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

Last updated