This can be a number of things.
Is your Editors root path for your project setup correct?
Do you need a sub path mapping in your editor?
If you changed the CodeIgniter ./system and ./application paths did you set these in index.php ?
VHOST Settings:
Code:
#--------------------------------------------------------------
# HTTP:
#--------------------------------------------------------------
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/myproject/public_html"
ServerName myproject.localhost
ServerAlias myproject.localhost
<Directory "C:/xampp/htdocs/myproject/public_html">
Order allow,deny
Allow from all
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#--------------------------------------------------------------
# HTTPS:
#--------------------------------------------------------------
<VirtualHost *:443>
DocumentRoot "C:/xampp/htdocs/myproject/public_html"
ServerName myproject.localhost
ServerAlias myproject.localhost
SSLEngine on
SSLCertificateFile "conf/ssl.crt/server.crt"
SSLCertificateKeyFile "conf/ssl.key/server.key"
<Directory "C:/xampp/htdocs/myproject/public_html">
Options All
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#--------------------------------------------------------------
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )