This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
friendica
/
friendica
mirror of
https://github.com/friendica/friendica.git
Watch
1
Star
2
Fork
1
Code
Issues
Releases
49
Wiki
Activity
Browse Source
Check if the vendor path is missing and complain about it
pull/6464/head
Michael
2 years ago
parent
678004e15a
commit
3b5f55d3c6
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
index.php
+ 4
- 0
index.php
View File
@ -4,6 +4,10 @@
*
Friendica
*/
if
(
!
file_exists
(
__DIR__
.
'/vendor/autoload.php'
))
{
die
(
'Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.'
);
}
require
__DIR__
.
'/vendor/autoload.php'
;
// We assume that the index.php is called by a frontend process
Write
Preview
Loading…
Cancel
Save