mirror of
https://github.com/anonaddy/anonaddy.git
synced 2026-04-26 06:35:50 +03:00
[GH-ISSUE #201] Self-host missing directory/files #747
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/anonaddy#747
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @gitrahab on GitHub (Sep 20, 2021).
Original GitHub issue: https://github.com/anonaddy/anonaddy/issues/201
In the self-hosting directions, the artisan file generates some issues
`php artisan key:generate
php artisan migrate
php artisan storage:link
php artisan config:cache
php artisan view:cache
php artisan route:cache
php artisan queue:restart
php artisan passport:install`
"PHP Warning: require(/var/www/anonaddy/vendor/autoload.php): failed to open stream: No such file or directory in /var/www/anonaddy/artisan on line 18
PHP Fatal error: require(): Failed opening required '/var/www/anonaddy/vendor/autoload.php' (include_path='.:/usr/share/php') in /var/www/anonaddy/artisan on line 18"
The entire git package does not include the vendor folder or files. This may be due to a semi-recent git ignore. Kindly update.
@willbrowningme commented on GitHub (Oct 14, 2021):
The vendor folder should not be included in git. You have forgotten to run
composer installplease run that command and try again.