Error code - can anyone interpret please?

A

Anonymous

Guest
Hello everyone,

I am in the process of using some new software and after having issues with installing it (apparently it has to go into the C: drive and I only have 19Gb free after installing it).
Once installed, I started and set up a new site folder, tried right-clicking to access the WP site and received the following lines of information:

Warning: require(C:\easywplocalhost\sites\archontest/wp-includes/load.php): failed to open stream: No such file or directory in C:\easywplocalhost\sites\archontest\wp-settings.php on line 19

Warning: require(C:\easywplocalhost\sites\archontest/wp-includes/load.php): failed to open stream: No such file or directory in C:\easywplocalhost\sites\archontest\wp-settings.php on line 19

Fatal error: require(): Failed opening required 'C:\easywplocalhost\sites\archontest/wp-includes/load.php' (include_path='.;\easywplocalhost\php\PEAR') in C:\easywplocalhost\sites\archontest\wp-settings.php on line 19

I noticed that the string requesting the load.php is missing a folder name; namely 'wordpress'. Drilling down through the folders with the site on my PC you have to go through the wordpress folder to reach wp-includes. Could this be the error or does anyone have an exact more knowledgeable one?
I contacted the creator of the software through their support system but all they have said, is yes, it must be in the C: drive and you need more space. However, given that Microsoft Office is nearly 1Gb (this software is 1.3Gb) and runs fine within the same drive, I can't understand just how much more space it needs.
My C: drive is a SSD and is only 256Gb, so I can't find anymore space..... does anyone have any suggestions please?

Thanks :)
 
I don't use windoze so can't be sure, but, I'm betting it's the slashes in your path:

Code:
C:\easywplocalhost\sites\archontest/wp-includes/load.php

Try this

Code:
C:\easywplocalhost\sites\archontest\wp-includes\load.php
 
Back
Top