Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error 6 (net::ERR_FILE_NOT_FOUND): The files c or directory could not be found

I am working with scriptcase php code generator, which is installed in a server but i access it via the web. It was fine till someone logged off the administrator of the server (which is the user I use). I restarted the server and logged on as admin, but now I cant access scriptcase from chrome! It shows:

Error 6 (net::ERR_FILE_NOT_FOUND): The file or directory could not be found.

What should i do?![enter image description here]

like image 356
Mirela Avatar asked Jun 13 '12 13:06

Mirela


2 Answers

Big one I see that causes this is filename. If you have a SPACE then any number such as 'Site 2' the file path with look like something/Site%202/index.html This is because spaces or rendered as %20, and if another number is immediately following that it will try to read it as %202. Fix is you never use spaces in your filenames.

like image 146
22 revs, 16 users 42% Avatar answered Oct 12 '22 18:10

22 revs, 16 users 42%


I fixed the same problem on Google Chrome with the following:

  1. Choose Customize and control Google Chrome (the button in the top right corner).

  2. Choose Settings.

  3. Go to Extensions.

  4. Unmark all the extensions there. (They should show as Enable instead of Enabled.)

like image 31
Anaryel Avatar answered Oct 12 '22 18:10

Anaryel