-
PHP
essential- version:
>=7.0
(recommended) - extension
pdo_mysql
required - Is recommendable enable
shell_exec
- version:
-
MySQL
essential- version
>=5.6
(recommended)
- version
-
Composer
essential- version
>=1.2
(recommended) - extensions
mbstring
anddom
required
Composer to install the dependencies needed to run...
- version
jQuery
- Version
^3.3
- Version
Bootstrap
- Version
^4
- Version
Font Awesome
- Version
^4.7
- Version
Jquery Inputmask
- Version
^3
- Version
Datatables
- Version
^1.10
- Version
Fullcalendar
- Version
^3.9
- Version
sudo apt-get install composer
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');"
https://getcomposer.org/doc/00-intro.md#installation-windows
Navigate to the apache folder where the project files are via terminal/cmd and type:
composer install --no-dev
After it, two folders named vendor
and components
are generated containing all the necessary dependencies.
Create a new database in your mysql server named bd_veterinaria
and upload the sql file which is located in db/mariadb-mysql/BD_Veterinaria.sql
in the same.
Access conf/database.php
and put your mysql configurations.
$conf = array( "server" => "localhost", "db_name" => "bd_veterinaria", "db_user" => "root", "db_password" => "root" );
Access conf/navigation.php
and edit the information to your liking.
$config = array( "name" => "VS - Vet System", "url" => "http://localhost/vet" );
in url
var, put your application link.
After this step, the application has configured perfectly, do not forget to enable apache and mysql server.
View all screenshots on Imgur.