autoload.php issue: failed to open stream: no such file or directory

nav100

I am new to PHP and trying to figure out issues with autoload.php. I downloaded php-amqplib package and it's dependencies and trying to test PHP page. I am getting failed to open stream: No such file or directory 'D:\inetpub\wwwroot\test\vendor\videlalvaro\php-amqplib\demo/../vendor/autoload.php' (include_path='.;C:\php\pear'). I am using 5.3.13 and it's installed in 'D:\PHP5313' folder. There is no 'pear' folder. Could you please let me know if I am missing something? Thanks for any suggestions.

autoload.php

require_once __DIR__ . '/composer' . '/autoload_real.php';

return ComposerAutoloaderInit5e74aaf68e13rfe5f321c5a586eb96f22::getLoader();
René Höhle

Your path to the required file it not correct (autoload.php).

__DIR__ is the actual directory where the file is located. I think you have to go back to come to the folder where the autoload.php is located.

D:\inetpub\wwwroot\test\vendor\videlalvaro\php-amqplib\demo/../vendor/autoload.php' 

I think you have to go back to the vendor folder in your case where normally the autoload file is located. I think its 3 folders higher.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

PHP - Failed to open stream : No such file or directory

From Java

require(vendor/autoload.php): failed to open stream

From Java

failed to open stream: No such file or directory (Laravel)

From Dev

Warning: failed to open stream: No such file or directory in C:\wamp\www\laravel\bootstrap\autoload.php on line 17

From Dev

Warning: include(PHPExcel.php): failed to open stream: No such file or directory

From Dev

SplFileObject error failed to open stream: No such file or directory

From Dev

Failed to open stream: No such file of directory in... PHP fopen

From Dev

php artisan migrate:reset failed to open stream: No such file or directory

From Dev

File exists but PHP throwing "failed to open stream: no such file or directory"

From Dev

app/bootstrap.php.cache : failed to open stream: No such file or directory

From Dev

Laravel classloader.php error failed to open stream: No such file or directory

From Dev

PHPUnit error "Failed to open stream: No such file or directory"

From Dev

PHP failed to open Stream no such file or directory when trying to execute a php file

From Dev

PHP - failed to open stream: No such file or directory in

From Dev

Warning: failed to open stream: No such file or directory in C:\wamp\www\laravel\bootstrap\autoload.php on line 17

From Dev

yii PDO.php error: failed to open stream: No such file or directory

From Dev

File exists but PHP throwing "failed to open stream: no such file or directory"

From Dev

drush failing with autoload.php failed to open stream

From Dev

Warning: include(dbconn.php): failed to open stream: No such file or directory

From Dev

Failed to open stream: No such file or directory in...? PHP Specific

From Dev

include(MultiModelForm.php): failed to open stream: No such file or directory

From Dev

Failed to open stream: No such file or directory

From Dev

PHP/SQL - failed to open stream: No such file or directory

From Dev

failed to open stream: No such file or directory

From Dev

Laravel include(DatabaseSeeder.php): failed to open stream: No such file or directory

From Dev

failed to open stream: No such file or directory issue

From Dev

include_once(): failed to open stream: No such file or directory - PHP

From Dev

PHP Warning: require_once: failed to open stream: No such file or directory in

From Dev

Google Calendar API vendor/autoload.php: failed to open stream

Related Related

  1. 1

    PHP - Failed to open stream : No such file or directory

  2. 2

    require(vendor/autoload.php): failed to open stream

  3. 3

    failed to open stream: No such file or directory (Laravel)

  4. 4

    Warning: failed to open stream: No such file or directory in C:\wamp\www\laravel\bootstrap\autoload.php on line 17

  5. 5

    Warning: include(PHPExcel.php): failed to open stream: No such file or directory

  6. 6

    SplFileObject error failed to open stream: No such file or directory

  7. 7

    Failed to open stream: No such file of directory in... PHP fopen

  8. 8

    php artisan migrate:reset failed to open stream: No such file or directory

  9. 9

    File exists but PHP throwing "failed to open stream: no such file or directory"

  10. 10

    app/bootstrap.php.cache : failed to open stream: No such file or directory

  11. 11

    Laravel classloader.php error failed to open stream: No such file or directory

  12. 12

    PHPUnit error "Failed to open stream: No such file or directory"

  13. 13

    PHP failed to open Stream no such file or directory when trying to execute a php file

  14. 14

    PHP - failed to open stream: No such file or directory in

  15. 15

    Warning: failed to open stream: No such file or directory in C:\wamp\www\laravel\bootstrap\autoload.php on line 17

  16. 16

    yii PDO.php error: failed to open stream: No such file or directory

  17. 17

    File exists but PHP throwing "failed to open stream: no such file or directory"

  18. 18

    drush failing with autoload.php failed to open stream

  19. 19

    Warning: include(dbconn.php): failed to open stream: No such file or directory

  20. 20

    Failed to open stream: No such file or directory in...? PHP Specific

  21. 21

    include(MultiModelForm.php): failed to open stream: No such file or directory

  22. 22

    Failed to open stream: No such file or directory

  23. 23

    PHP/SQL - failed to open stream: No such file or directory

  24. 24

    failed to open stream: No such file or directory

  25. 25

    Laravel include(DatabaseSeeder.php): failed to open stream: No such file or directory

  26. 26

    failed to open stream: No such file or directory issue

  27. 27

    include_once(): failed to open stream: No such file or directory - PHP

  28. 28

    PHP Warning: require_once: failed to open stream: No such file or directory in

  29. 29

    Google Calendar API vendor/autoload.php: failed to open stream

HotTag

Archive