In my www folder I have a folder called openslopeone. Inside openslopeone I have a file called OpenSlopeOne.php. In my www folder I have a file called test.php in which I did:
require_once (‘openslopeone/OpenSlopeOne.php’);
however, now I am getting the following error:

Here’s the include/require code from OpenSlopeOne.php
set_include_path('./inc');
require_once 'Zend/Db.php';
require_once 'Zend/Loader.php';
Inside the folder inc I have the folder Zend, which contains Db.php and Loader.php
What am I missing here
This is telling you that it cannot find the “Zend/Db.php” file. Edited for brain fart, thx.