Kaydet (Commit) e74e2fb4 authored tarafından mertcelen's avatar mertcelen

DNS settings updated

Extension pages simplified.
üst 0188b233
......@@ -589,7 +589,7 @@ input(type=\"imtcp\" port=\"514\")";
public function getDNSServers()
{
$data = `grep nameserver /etc/resolv.conf | grep -v "#"`;
$data = `grep nameserver /etc/resolv.conf | grep -v "#" | grep nameserver`;
$arr = explode("\n", $data);
$clean = [];
foreach ($arr as $ip) {
......@@ -606,7 +606,7 @@ input(type=\"imtcp\" port=\"514\")";
{
`sudo chattr -i /etc/resolv.conf`;
$str = "
options rotate timeout:3
options rotate timeout:1 retries:1
";
foreach ([request('dns1'), request('dns2'), request('dns3')] as $ip) {
if ($ip == null) {
......
......@@ -21,6 +21,12 @@
<li class="breadcrumb-item active" aria-current="page">{{cities(request('city'))}}</li>
</ol>
</nav>
@if(count($servers) == 0)
<div class="alert alert-warning" role="alert">
Bu eklentiyi kullanan hiçbir sunucu yok, hemen <a href="{{route('servers')}}">sunucular</a> sayfasına gidip mevcut sunucularınızdan birini bu eklentiyi kullanması için ayarlayabilirsiniz.
</div>
@else
<div class="card">
<div class="card-header">
<h3 class="card-title">{{__(extension()->display_name)}} {{ __('Sunucuları') }}</h3>
......@@ -45,4 +51,5 @@
window.location.href = window.location.href + "/" + server_id
}
</script>
@endif
@endsection
\ No newline at end of file
......@@ -8,5 +8,12 @@
</ol>
</nav>
@include('errors')
@include('general.harita')
@if($cities == "")
<div class="alert alert-warning" role="alert">
Bu eklentiyi kullanan hiçbir sunucu yok, hemen <a href="{{route('servers')}}">sunucular</a> sayfasına gidip mevcut sunucularınızdan birini bu eklentiyi kullanması için ayarlayabilirsiniz.
</div>
@else
@include('general.harita')
@endif
@endsection
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment