How to fix fatal error in joomla 1.0? - php

This is the error:
Warning: require_once(/home/exhibit/public_html/includes/version.php) [function.require-once]: failed to open stream: No such file or directory in /home2/exhibit/public_html/includes/joomla.php on line 71
Fatal error: require_once() [function.require]: Failed opening required '/home/exhibit/public_html/includes/version.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home2/exhibit/public_html/includes/joomla.php on line 71
how to solve it?

/home/exhibit/public_html/includes/version.php
Sometimes FTP times out when uploading a file and this file might not have been uploaded correctly. Check that this file has a filesize larger than 0 and that it's there at all. If not then simply reupload this file to the correct spot.

Related

Webhost Storage Errors, how to solve

I am trying to add an application to webhost, and I am receiving the following error:
Warning: require(/storage/ssd1/111/16245111/vendor/composer/../laravel/framework/src/Illuminate/Support/helpers.php): failed to open stream: No such file or directory in /storage/ssd1/111/16245111/vendor/composer/autoload_real.php on line 71
Warning: require(/storage/ssd1/111/16245111/vendor/composer/../laravel/framework/src/Illuminate/Support/helpers.php): failed to open stream: No such file or directory in /storage/ssd1/111/16245111/vendor/composer/autoload_real.php on line 71
Fatal error: require(): Failed opening required '/storage/ssd1/111/16245111/vendor/composer/../laravel/framework/src/Illuminate/Support/helpers.php' (include_path='.:/usr/share/pear:/usr/share/php') in /storage/ssd1/111/16245111/vendor/composer/autoload_real.php on line 71
Can some of you help me understand and solve it?
Thanks in advance.

Connecting MySQL to php files (pear error)

Warning: require_once(book/autoload.php): failed to open stream: No such file or directory in C:\xampp\htdocs\book\book.php on line 48
Fatal error: require_once(): Failed opening required 'book/autoload.php' (include_path='C:\xampp\php\PEAR;;/book;/book/classes;/book/pear/PEAR') in C:\xampp\htdocs\book\book.php on line 48
I added this to the file:
require_once('book/autoload.php');
include_path('C:\xampp\php\PEAR;;/book;/book/classes;/book/pear/PEAR');
This is very rudimentary, but it's still not working. Have mercy, this is my first php project.
You can try this
require_once('book/autoload.php');
and must check that your folder path is correct.

WP-admin is not working, showing php errors

Warning: require(wp-blog-header.php) [function.require]: failed to open stream: No such file or directory in /home/tratam79/public_html/masoarafebra.ro/wp-admin/index.php on line 17
Warning: require(wp-blog-header.php) [function.require]: failed to open stream: No such file or directory in /home/tratam79/public_html/masoarafebra.ro/wp-admin/index.php on line 17
Fatal error: require() [function.require]: Failed opening required 'wp-blog-header.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/tratam79/public_html/masoarafebra.ro/wp-admin/index.php on line 17
Those are the errors I get when trying to access wp-admin. As of now I've tried forging the full URL to the files. Any ideas?
It could be your wordpress file is missing or not accessible. If you just upload it, it might be it is not uploaded completely.

Error loading CMSMS website

I just uploaded a CMSMS website, but cannot view the website. Am getting the error:
Warning:
require(/home/inkbran1/public_html/century21nigeria/lib/smarty/Smarty.class.php)
[function.require]: failed to open stream: No such file or directory
in /home/inkbran1/public_html/century21nigeria/include.php on line 153
Fatal error: require() [function.require]: Failed opening required
'/home/inkbran1/public_html/century21nigeria/lib/smarty/Smarty.class.php'
(include_path='.:/usr/lib/php:/usr/local/lib/php') in
/home/inkbran1/public_html/century21nigeria/include.php on line 153
Please, what can i do? I am a PHP dummy.
Make sure that the file Smarty.class.php is in the directory listed in the error message.

Troubleshooting "failed to open stream: No such file or directory" when require()ing twilio-lib.php

I have downloaded the Twilio PHP library but I am getting an error when I try to include the library in my code.
Below is the error I get:
Warning: require(twilio-lib.php) [function.require]: failed to open stream: No such file or directory in /websites-dev/dev.icalapp.rogersdigitalmedia.com/testing.php on line 11
Fatal error: require() [function.require]: Failed opening required 'twilio-lib.php' (include_path='.:/usr/share/pear:/usr/share/php') in /websites-dev/dev.icalapp.rogersdigitalmedia.com/testing.php on line 11
Someone fudged up somewhere - there is no such twilio-lib.php file in Twilio's PHP library.
Try removing the line in your downloaded PHP that looks exactly or similar to the following:
require "twilio-lib.php";

Categories