This guide walks you through cloning the CashMan H.A. repository, installing its Composer dependencies, and performing the URL and CSS configuration changes that are required before the application will run. Because the codebase embeds a default server port ofDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/DanielRivera03/SistemaBancario/llms.txt
Use this file to discover all available pages before exploring further.
90 in several places, these post-clone edits are mandatory — the application will not redirect or render styles correctly until they are applied.
Installation Steps
Navigate to the application directory
The PHP application lives inside the
CashManHA sub-folder of the repository:Install Composer dependencies
Run Composer to download Composer will create a
bramus/router and luecano/numero-a-letras:vendor/ directory inside CashManHA/ containing all resolved packages.Configure your web server
Point your web server’s document root at the project root (Restart Apache after making changes:
SistemaBancario/) or configure a virtual host. The application expects to be reachable at a path like /CashManHA/.Apache virtual host example:apachectl restartGlobal URL Configuration
The codebase constructs the base application URL dynamically using$_SERVER['SERVER_NAME'] but always appends the hardcoded port :90. This variable must reflect the actual address and port your web server uses.
Files to update:
controlador/cIniciosSesionesUsuarios.phpcontrolador/cGestionesCashman.php
$UrlGlobal declaration and update the port (and path if necessary) to match your environment:
CSS URL Configuration
Several icon font stylesheets are imported insidevista/css/style.css using absolute @import url(...) rules that also hardcode http://localhost:90/. If your server uses a different port or hostname, these imports will silently fail and the application will display without icons or correct styling.
File to update: vista/css/style.css
Find and replace every occurrence of http://localhost:90 with your server’s base address. The affected lines begin around line 62:
Profile Images
Thevista/images/ directory stores user profile pictures. If images appear broken after cloning, download the complete images folder from the external Google Drive link referenced in the README and place (or replace) its contents at:
https://drive.google.com/file/d/1BUKOcMmnws7Am91ilkKR6j9IoDXlmzkd/view?usp=sharing