-
-
Save Attendize/46ddb941bf5ed7cc952b to your computer and use it in GitHub Desktop.
| git clone https://github.com/attendize/attendize | |
| cd attendize | |
| cp .env.example .env | |
| vi .env #Set the database and mail settings etc. | |
| composer install | |
| php artisan attendize:install |
That makes the assumption that you have composer installed globally (I don't). For those that want to install this you can do the following in your attendize folder:
sudo mkdir bin
sudo curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=bin --filename=composer
and then
sudo php bin/composer install
After all that I found I didn't meet the minimum requirements!
I had to run bower install at the end to pull in the necessary javascript packages.
Followed all the steps, I keep getting this:
ubuntu@ip-XXX-XX-XX-xx:~/attendize$ php artisan attendize:install PHP Fatal error: Uncaught ReflectionException: Class log does not exist in /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php:734 Stack trace: #0 /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php(734): ReflectionClass->__construct('log') #1 /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php(629): Illuminate\Container\Container->build('log', Array) #2 /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(697): Illuminate\Container\Container->make('log', Array) #3 /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php(849): Illuminate\Foundation\Application->make('log') #4 /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php(804): Illuminate\Container\Container->resolveClass(Object(ReflectionParameter)) #5 /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php(774): Illuminate\Container\Co in /home/ubuntu/attendize/vendor/laravel/framework/src/Illuminate/Container/Container.php on line 734
Trying to get this to work for a non-profit fundraiser event.
Running LEMP. PHP 7x.
What gives?
I am getting this error;
Sorry, the page you are looking for could not be found.
Apologies, running composer install is required before the install command. Updated now.