Powiadomienia
Wyczyść wszystko
BugOverflow
1
Wpisy
1
Użytkownicy
0
Reactions
9,899
Widoki
0
27/08/2015 4:02 pm
Rozpoczynający temat
Kohana : Untrusted host localhost. If you trust localhost, add it to the trusted hosts in the `url` config file.
1 odpowiedź
0
27/08/2015 4:03 pm
Rozpoczynający temat
Create new file: my_project/application/config/url.php
and put this code
<?php
return array(
'trusted_hosts' => array(
'localhost',
'another.host.com'
),
);
You can always change line ("localhost") to Your domain
