Sunucu yanıtını kontrol edin

Sunucu yanıtı
NS kayıtları
Whois alanı
Yanıt başlıkları
İstek başlıkları
Ham HTML kodu
200 OK - tligy.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Fri, 23 May 2025 09:52:03 GMT
Server: Apache
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Set-Cookie: PHPSESSID=a23924083d2346a1ec46469e2060c246; path=/
Upgrade: h2,h2c
Connection: Upgrade
Last-Modified: Fri, 23 May 2025 09:52:03 GMT
Vary: Accept-Encoding
host-header: c2hhcmVkLmJsdWVob3N0LmNvbQ==
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8

HTTP Kodu 200 OK

200 OK, standart bir başarılı HTTP sunucu yanıtıdır. Bu, istemcinin isteğinin (örneğin, bir tarayıcıdan) başarıyla işlendiği ve sunucunun istenen verileri ilettiği anlamına gelir.

Kod 200 ne zaman kullanılır?

  • Bir web sayfası yüklenirken
  • Bir API yanıtı başarıyla alındığında
  • Bir form veya başka bir HTTP isteği işlenirken

Kod 200 kullanıcı için ne anlama gelir?

Kullanıcı içeriği hatasız alır ve sayfa veya uygulama düzgün çalışır. Kod 200'e veri eşlik ediyorsa, tarayıcı veya program bunu işler ve kullanıcıya görüntüler.

GET / HTTP/1.1
Host: tligy.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
    <!--    <meta http-equiv="refresh" content="3000;url=index.php?logout">-->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
    <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>

<div id="nav-header"></div>

<script>
    $(function(){
        $("#nav-header").load("header.php");
    });
</script>
<body>



<div class="container-fluid">
   <h3 class="display-4 text-center">Customers</h3>
        <div id="filterresults"></div>
        <div class="row">
            <form method="post">
                <div class="col-sm-4"><input type="text" class="form-control" required id="myInput" name="myInput" onkeyup="SearchandFilter()" placeholder="Search .." title="Search" ></div>
                <div class="col-sm-1"><button type="button"  id="button_view" name="button_view" class="btn btn-warning" data-toggle="modal"  
                                 data-id="0"  data-target="#myModal3">Add</button></div>
            </form>
        </div>

        <br>

        <table class="table  table-bordered" id="myTable">
            <tr><th hidden>ID</th><th>Name</th><th>Address</th><th>Telephone 1</th><th>Telephone 2</th><th>Email</th><th>DOB</th><th>Notification</th><th>Branch</th></tr>

            <tr>
                            <td hidden>2766df2f1e1e49afe0e942e9e3726e74</td>
                            <td>Sam</td>
                            <td>Weiss</td>
                            <td>6724567</td>
                            <td></td>
                            <td>[email protected]</td>
                            <td>1999-10-17</td>
                            <td>Text</td>
                            <td>Parika</td>
                            </tr>        </table>

</div>

<div class="modal" tabindex="-1" role="document" id="myModal3">
    <div class="modal-dialog modal-dialog-scrollable modal-xl">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">&times;</button>
                <h4 class="modal-title"><div id="TitleDetails" class="text-center"></div></h4>
            </div>

            <div id="personDetails" class="modal-body"></div>
            <div class="modal-footer">
                <button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
            </div>
        </div>
    </div>
</div>

</body>


<script>
    function SearchandFilter() {
        var inputfirstname, filter,  table,
            tr, tdcol0,tdcol1, tdcol2, tdcol3, tdcol4,  i,
            txttdcol0, txttdcol1value, txttdcol2,  rowcounter,txttdcol3value, txttdcol4value;



        inputfirstname = document.getElementById("myInput");
        filter = inputfirstname.value.toUpperCase();

        table = document.getElementById("myTable");
        tr = table.getElementsByTagName("tr");

        rowcounter=0;
        for (i = 1; i < tr.length; i++) {
         
            tdcol1 = tr[i].getElementsByTagName("td")[1];
            tdcol3 = tr[i].getElementsByTagName("td")[3];
            tdcol4 = tr[i].getElementsByTagName("td")[4];
            
            if ((tdcol1))  {
                txttdcol1value = tdcol1.textContent || tdcol1.innerText;
                txttdcol3value = tdcol3.textContent || tdcol3.innerText;
                txttdcol4value = tdcol4.textContent || tdcol4.innerText;
              
                if  ((txttdcol1value.toUpperCase().indexOf(filter) > -1)  || ((txttdcol3value .toUpperCase().indexOf(filter) > -1))
                    || ((txttdcol4value .toUpperCase().indexOf(filter) > -1)))

                {
                    rowcounter++;
                    tr[i].style.display = "";
                } else {
                    tr[i].style.display = "none";
                }
            }
        }

        if ((tr.length-1) == rowcounter)
        {
            $("#filterresults").html("");
        }
        else
        {
            $("#filterresults").html(rowcounter + " records found");
        }
    }
</script>
<script>
    $(document).ready(function(){
        
        $("#myModal3").modal({
            keyboard: true,
            backdrop: "static",
            show: false,

        }).on("show.bs.modal", function(event){
            var button = $(event.relatedTarget); // button the triggered modal
            var personId = button.data("id"); //data-id of button which is equal to id (primary key) of person
            
            customername =  'Add New Customer';

            $.ajax({
                type: "POST",
                url: "getcust.php?customerguid="+personId,

                success: function(data){
                    $('#personDetails').html(data);
                }
            });
            $(this).find("#TitleDetails").html($("<h2>"+ customername +"</h2>"));

        }).on("hide.bs.modal", function (event) {
            $(this).find("#personDetails").html("");
        });
    });
</script>

</html>                               

Alan adının whois bilgisi

Domain Name: TLIGY.COM
Registry Domain ID: 2926065072_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.networksolutions.com
Registrar URL: http://networksolutions.com
Updated Date: 2024-10-16T19:42:29Z
Creation Date: 2024-10-16T19:42:29Z
Registry Expiry Date: 2025-10-16T19:42:29Z
Registrar: Network Solutions, LLC
Registrar IANA ID: 2
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.8777228662
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.BLUEHOST.COM
Name Server: NS2.BLUEHOST.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-23T09:51:47Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass