I download this version but its not complete. Missing folder Vendor Err to extract images…
When i m going to install i had these problems…
Without the folder vendor
Warning: require(D:\Dev\xampp\htdocs\MPS\public/…/vendor/autoload.php): Failed to open stream: No such file or directory in D:\Dev\xampp\htdocs\MPS\public\index.php on line 28
Fatal error: Uncaught Error: Failed opening required ‘D:\Dev\xampp\htdocs\MPS\public/…/vendor/autoload.php’ (include_path=‘D:\Dev\xampp\php\PEAR’) in D:\Dev\xampp\htdocs\MPS\public\index.php:28 Stack trace: #0 {main} thrown in D:\Dev\xampp\htdocs\MPS\public\index.php on line 28
Using folder vendor from previous version HTTP ERROR 500
The ver 0.11.0 is the last that i can download from the site…
Thanks in advance …
- MSAnswered
Hello,
Yes, the standard license file doesn’t come with vendor. Please run
composer install
to install the package for your php version.If you follow the installation instructuions from docs, it’s metnioned there. Please try and if you need any help, let me know.
Thank you
- JCAnswered
I read de documentation but when i run composer install i got this err
composer update Loading composer repositories with package information Updating dependencies Your requirements could not be resolved to an installable set of packages.
Problem 1 - Root composer.json requires tecdiary/omnipay-tillpayments 1.0.x-dev, found tecdiary/omnipay-tillpayments[dev-main] but it does not match the constraint.
Thanks for your help
- JCAnswered
i answer myself, maybe it helps others firts, I had to extract public/images from the zip, because the zip is corrupted or bad…
I used this commands and it works
- composer require tecdiary/omnipay-tillpayments
- mydomain/mps/install
Nothing of this in your doc!!!
Then i used this commands php artisan migrate:Fresh --To install a fresh DB (Empty) php artisan db:seed --To populate the DB with demo data
Too complicated, i cant understand why my friend…!
I am testing but i had some problems (slow, dont refresh the POS), maybe i spend my money here.
- MSAnswered
Hello,
You should run
composer install
it’s liked to version 0.1.0 The update command will try to update it to latest and as the package is not live so branch alias won’t work.You are the second one having issue with
public/images
folder. The zip is not corrupted but the folder is not a folder but symbolic link to storage folder. Installer runphp artisan storage:link --force
to link this to storage.We don’t encourage manual installation as this option will be removed in v1. The item should be installed by intaller package from the browser by adding at the end
/install
of your doamin.You can check the Laravel logs in
storage/logs/
folder and browser console if there are any JS errors? Unforfunately I can check the lcoal installation but if you have live installation, I can help you.Thank you
- Login to Reply