skip to Main Content

I used windows 10 as the operating system and I installed xampp it’s been a long time and it chews well, until yesterday after an error in mysql.

So I looked for solutions on the internet and I finally solved the error by copying the files from C:xamppmysqlbackup to C:xamppmysqldata.

then the service mysql is well marketed even as Apache.

PhpMyadmin chews well without a problem. phpmyadmin page shows, but my code, will not show.

The problem is: my old projects exist in htdocs only display “This page does not work” and “localhost” in the title head, and nothing loads from my project files.

Note: I used codeigniter as a framework.
Note: I can navigate to a new project but for existing projects beyond that it no longer works.

Thank you P.al

2

Answers


  1. The error in your picture appear an php script error
    Edit php.ini for display error and notice in browser

    display_errors = on
    

    save the php.ini restart apache and reload page.

    Login or Signup to reply.
  2. Use Directly like-
    http://localhost/projects/form.html

    Here your files should be inside C:XAMPPhtdocsProjectsyourfile.html

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search