Welcome Guest, Not a member yet? Register   Sign In
Load view from Controller issue
#16

That's because I use Virtual Host file.

Either you can change the web server to your own or add the below VHOST Code.

Code:
#--------------------------------------------------------------
# CodeIgniter 3.1.9 News Tutorial
#--------------------------------------------------------------

#--------------------------------------------------------------
# HTTP:
#--------------------------------------------------------------
<VirtualHost *:80>
    DocumentRoot "C:/xampp/htdocs/ci3news/public_html"
    ServerName ci3news.localhost
    ServerAlias ci3news.localhost
    <Directory "C:/xampp/htdocs/ci3news/public_html">
        Order allow,deny
        Allow from all
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

#--------------------------------------------------------------
# HTTPS:
#--------------------------------------------------------------
<VirtualHost *:443>
    DocumentRoot "C:/xampp/htdocs/ci3news/public_html"
    ServerName ci3news.localhost
    ServerAlias ci3news.localhost
    SSLEngine on
    SSLCertificateFile "conf/ssl.crt/server.crt"
    SSLCertificateKeyFile "conf/ssl.key/server.key"
    <Directory "C:/xampp/htdocs/ci3news/public_html">
        Options All
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

Hope that helps.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
RE: Load view from Controller issue - by InsiteFX - 06-12-2018, 03:11 AM
RE: Load view from Controller issue - by InsiteFX - 06-12-2018, 03:32 AM
RE: Load view from Controller issue - by InsiteFX - 06-12-2018, 06:42 AM
RE: Load view from Controller issue - by enelson - 06-12-2018, 09:17 AM
RE: Load view from Controller issue - by InsiteFX - 06-13-2018, 10:55 AM
RE: Load view from Controller issue - by InsiteFX - 06-15-2018, 06:36 AM
RE: Load view from Controller issue - by InsiteFX - 06-15-2018, 08:06 AM
RE: Load view from Controller issue - by InsiteFX - 06-15-2018, 09:33 AM
RE: Load view from Controller issue - by InsiteFX - 06-16-2018, 09:23 AM
RE: Load view from Controller issue - by InsiteFX - 06-22-2018, 10:34 AM



Theme © iAndrew 2016 - Forum software by © MyBB