• 05-02-2018, 12:38:51
    #1
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Merhaba dostlar,
    PHP ile sipariş takip uygulaması yapıyorum, herşey tamam ama bir eksik var ve sayfa çalışmıyor. Kafam iyice karıştı. Sizce eksik nerde ?
    Bu index.html
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title>ÜYE SİPARİŞ</title>
        <style type="text/css">
            #siparis span {display: block; font-size: 20 px Tahoma}
            #siparis input {border: 1px; solid:#fff; padding: 10px}
            #siparis button {display: block; border: 1px; solid:#555; padding:10px width:250px; margin-top: 10px; cursor:pointer}
        </style>
    </head>
    <body>
        <div id="siparis">
        <form action="gonder.php" method="post">
        <span>Ürünler :</span>
        <input type="radio" name="product" id="1 Adet" value="1 Adet">
        <label for="1 Adet">1 Adet</label>
        <input type="radio" name="product2" id="2 Adet" value="2 Adet">
        <label for="2 Adet">2 Adet Datca Macunu</label>
        <input type="radio" name="product3" id="3 Adet" value="3 Adet">
        <label for="3 Adet">3 Adet</label>
        <span>Adınız :</span>
        <input type="text" name="fullname">
        <span>Telefon Numaranız :</span>
        <input type="text" name="phone">
        <span>Adresiniz :</span>
        <input type="text" name="address">
        <button type="send">Sipariş Ver</button>
        </form>
        </div>
    </body>
    </html>
    Bu da gonder.php
    <?php
    mysql_select_db("musteriler", mysql_connect("localhost", "root"));
    $product    = $_POST["product"];
    $fullname    = $_POST["fullname"];
    $phone        = $_POST["phone"];
    $address    = $_POST["address"];
    if (($product=="") or ($fullname=="") or ($phone=="") or ($address=="") )
    {
        echo "Lütfen boş alan bırakmayınız !";
    }
    else
    {
        $kayit = mysql_query("insert into siparisler (product, fullname, phone, address) value ('$product', 'fullname', 'phone', 'address')");
        if ($kayit)
        {
            echo "Siparişiniz başarıyla alınmıştır !";
        }
        else
        {
            echo "Sipariş oluşturulurken bir hata oluştu. Lütfen tekrar deneyin !";
        }
    }
    ?>
  • 05-02-2018, 12:39:33
    #2
    hata var mı? varsa log atabilir misiniz
  • 05-02-2018, 12:43:17
    #3
    hesapadim adlı üyeden alıntı: mesajı görüntüle
    hata var mı? varsa log atabilir misiniz
    Var hocam. Log kayıtları şu şekilde ;
    [Sat Jan 27 13:38:30.759853 2018] [ssl:warn] [pid 4272:tid 652] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 13:38:30.850858 2018] [ssl:warn] [pid 4272:tid 652] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 13:38:32.101941 2018] [mpm_winnt:notice] [pid 4272:tid 652] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Sat Jan 27 13:38:32.101941 2018] [mpm_winnt:notice] [pid 4272:tid 652] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Sat Jan 27 13:38:32.102936 2018] [core:notice] [pid 4272:tid 652] AH00094: Command line: 'C:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Sat Jan 27 13:38:32.236939 2018] [mpm_winnt:notice] [pid 4272:tid 652] AH00418: Parent: Created child process 6860
    [Sat Jan 27 13:38:32.761973 2018] [ssl:warn] [pid 6860:tid 688] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 13:38:32.880974 2018] [ssl:warn] [pid 6860:tid 688] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 13:38:32.911976 2018] [mpm_winnt:notice] [pid 6860:tid 688] AH00354: Child: Starting 150 worker threads.
    [Sat Jan 27 15:17:17.476607 2018] [ssl:warn] [pid 3712:tid 664] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 15:17:17.601601 2018] [ssl:warn] [pid 3712:tid 664] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 15:17:18.714764 2018] [mpm_winnt:notice] [pid 3712:tid 664] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Sat Jan 27 15:17:18.714764 2018] [mpm_winnt:notice] [pid 3712:tid 664] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Sat Jan 27 15:17:18.714764 2018] [core:notice] [pid 3712:tid 664] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Sat Jan 27 15:17:18.824142 2018] [mpm_winnt:notice] [pid 3712:tid 664] AH00418: Parent: Created child process 4976
    [Sat Jan 27 15:17:19.437408 2018] [ssl:warn] [pid 4976:tid 668] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 15:17:19.531163 2018] [ssl:warn] [pid 4976:tid 668] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Jan 27 15:17:19.578039 2018] [mpm_winnt:notice] [pid 4976:tid 668] AH00354: Child: Starting 150 worker threads.
    [Sat Jan 27 15:19:46.172407 2018] [php7:warn] [pid 4976:tid 1960] [client ::1:51545] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\php\\mail.php on line 11, referer: http://localhost/php/form.php
    [Sat Jan 27 15:23:17.414572 2018] [php7:notice] [pid 4976:tid 1956] [client ::1:51762] PHP Notice:  Undefined variable: mesajlar in C:\\xampp\\htdocs\\html\\gonder.php on line 16, referer: http://localhost/html/
    [Sat Jan 27 15:23:17.415572 2018] [php7:warn] [pid 4976:tid 1956] [client ::1:51762] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\html\\gonder.php on line 23, referer: http://localhost/html/
    [Sat Jan 27 15:24:42.652038 2018] [php7:notice] [pid 4976:tid 1956] [client ::1:51767] PHP Notice:  Undefined variable: mesajlar in C:\\xampp\\htdocs\\html\\gonder.php on line 16, referer: http://localhost/html/
    [Sat Jan 27 15:24:42.653038 2018] [php7:warn] [pid 4976:tid 1956] [client ::1:51767] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\html\\gonder.php on line 23, referer: http://localhost/html/
    [Mon Jan 29 09:30:08.379604 2018] [ssl:warn] [pid 7656:tid 660] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Jan 29 09:30:08.488973 2018] [core:warn] [pid 7656:tid 660] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Mon Jan 29 09:30:08.488973 2018] [ssl:warn] [pid 7656:tid 660] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Jan 29 09:30:09.147219 2018] [mpm_winnt:notice] [pid 7656:tid 660] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Mon Jan 29 09:30:09.147219 2018] [mpm_winnt:notice] [pid 7656:tid 660] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Mon Jan 29 09:30:09.147219 2018] [core:notice] [pid 7656:tid 660] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Mon Jan 29 09:30:09.259224 2018] [mpm_winnt:notice] [pid 7656:tid 660] AH00418: Parent: Created child process 7836
    [Mon Jan 29 09:30:09.800942 2018] [ssl:warn] [pid 7836:tid 672] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Jan 29 09:30:09.911112 2018] [ssl:warn] [pid 7836:tid 672] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Jan 29 09:30:09.946114 2018] [mpm_winnt:notice] [pid 7836:tid 672] AH00354: Child: Starting 150 worker threads.
    [Mon Jan 29 09:30:53.404507 2018] [php7:warn] [pid 7836:tid 1944] [client ::1:50883] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\mail\\mail.php on line 11, referer: http://localhost/mail/form.php
    [Tue Jan 30 13:37:05.838379 2018] [ssl:warn] [pid 2536:tid 664] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Tue Jan 30 13:37:05.900874 2018] [core:warn] [pid 2536:tid 664] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Tue Jan 30 13:37:05.916499 2018] [ssl:warn] [pid 2536:tid 664] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Tue Jan 30 13:37:06.963381 2018] [mpm_winnt:notice] [pid 2536:tid 664] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Tue Jan 30 13:37:06.963381 2018] [mpm_winnt:notice] [pid 2536:tid 664] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Tue Jan 30 13:37:06.963381 2018] [core:notice] [pid 2536:tid 664] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Tue Jan 30 13:37:07.025881 2018] [mpm_winnt:notice] [pid 2536:tid 664] AH00418: Parent: Created child process 708
    [Tue Jan 30 13:37:07.713385 2018] [ssl:warn] [pid 708:tid 684] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Tue Jan 30 13:37:07.854010 2018] [ssl:warn] [pid 708:tid 684] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Tue Jan 30 13:37:07.900883 2018] [mpm_winnt:notice] [pid 708:tid 684] AH00354: Child: Starting 150 worker threads.
    [Tue Jan 30 14:06:13.356893 2018] [php7:error] [pid 708:tid 1912] [client ::1:56430] script 'C:/xampp/htdocs/KafurKrem/order/gonder.php' not found or unable to stat, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:06:53.329651 2018] [php7:notice] [pid 708:tid 1924] [client ::1:56455] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 28, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:06:53.370654 2018] [php7:warn] [pid 708:tid 1924] [client ::1:56455] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 37, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:08:46.934205 2018] [php7:notice] [pid 708:tid 1904] [client ::1:56494] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 23, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:08:46.934205 2018] [php7:warn] [pid 708:tid 1904] [client ::1:56494] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 32, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:15:00.928419 2018] [php7:notice] [pid 708:tid 1936] [client ::1:56568] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 23, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:15:00.929419 2018] [php7:warn] [pid 708:tid 1936] [client ::1:56568] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 32, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:16:24.019000 2018] [php7:notice] [pid 708:tid 1936] [client ::1:56602] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 24, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:16:24.019999 2018] [php7:warn] [pid 708:tid 1936] [client ::1:56602] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 32, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:17:51.976013 2018] [php7:notice] [pid 708:tid 1912] [client ::1:56618] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 23, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:17:51.976013 2018] [php7:warn] [pid 708:tid 1912] [client ::1:56618] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 31, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:19:37.624160 2018] [php7:notice] [pid 708:tid 1912] [client ::1:56668] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 21, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:19:37.624160 2018] [php7:warn] [pid 708:tid 1912] [client ::1:56668] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 28, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:32:40.557051 2018] [php7:notice] [pid 708:tid 1944] [client ::1:56837] PHP Notice:  Undefined variable: mesajveri in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 21, referer: http://localhost/KafurKrem/order/
    [Tue Jan 30 14:32:40.558051 2018] [php7:warn] [pid 708:tid 1944] [client ::1:56837] PHP Warning:  mail(): &quot;sendmail_from&quot; not set in php.ini or custom &quot;From:&quot; header missing in C:\\xampp\\htdocs\\KafurKrem\\order\\gonder.php on line 28, referer: http://localhost/KafurKrem/order/
    [Thu Feb 01 16:49:58.292182 2018] [ssl:warn] [pid 1824:tid 664] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Thu Feb 01 16:49:58.510932 2018] [core:warn] [pid 1824:tid 664] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Thu Feb 01 16:49:58.526558 2018] [ssl:warn] [pid 1824:tid 664] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Thu Feb 01 16:50:00.385939 2018] [mpm_winnt:notice] [pid 1824:tid 664] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Thu Feb 01 16:50:00.385939 2018] [mpm_winnt:notice] [pid 1824:tid 664] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Thu Feb 01 16:50:00.385939 2018] [core:notice] [pid 1824:tid 664] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Thu Feb 01 16:50:00.598361 2018] [mpm_winnt:notice] [pid 1824:tid 664] AH00418: Parent: Created child process 1076
    [Thu Feb 01 16:50:01.344118 2018] [ssl:warn] [pid 1076:tid 252] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Thu Feb 01 16:50:01.441124 2018] [ssl:warn] [pid 1076:tid 252] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Thu Feb 01 16:50:01.490126 2018] [mpm_winnt:notice] [pid 1076:tid 252] AH00354: Child: Starting 150 worker threads.
    [Sat Feb 03 10:00:04.161986 2018] [ssl:warn] [pid 7308:tid 696] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 10:00:04.332016 2018] [core:warn] [pid 7308:tid 696] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Sat Feb 03 10:00:04.339026 2018] [ssl:warn] [pid 7308:tid 696] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 10:00:06.728912 2018] [mpm_winnt:notice] [pid 7308:tid 696] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Sat Feb 03 10:00:06.728912 2018] [mpm_winnt:notice] [pid 7308:tid 696] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Sat Feb 03 10:00:06.728912 2018] [core:notice] [pid 7308:tid 696] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Sat Feb 03 10:00:06.895971 2018] [mpm_winnt:notice] [pid 7308:tid 696] AH00418: Parent: Created child process 4968
    [Sat Feb 03 10:00:07.771256 2018] [ssl:warn] [pid 4968:tid 672] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 10:00:08.191282 2018] [ssl:warn] [pid 4968:tid 672] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 10:00:08.484303 2018] [mpm_winnt:notice] [pid 4968:tid 672] AH00354: Child: Starting 150 worker threads.
    [Sat Feb 03 10:58:44.127453 2018] [php7:crit] [pid 4968:tid 1952] [client ::1:56443] PHP Parse error:  syntax error, unexpected '<', expecting end of file in C:\\xampp\\htdocs\\qwe\\index.php on line 5
    [Sat Feb 03 10:58:53.814010 2018] [php7:crit] [pid 4968:tid 1952] [client ::1:56445] PHP Parse error:  syntax error, unexpected '<', expecting end of file in C:\\xampp\\htdocs\\qwe\\index.php on line 5
    [Sat Feb 03 10:58:54.508047 2018] [php7:crit] [pid 4968:tid 1952] [client ::1:56445] PHP Parse error:  syntax error, unexpected '<', expecting end of file in C:\\xampp\\htdocs\\qwe\\index.php on line 5
    [Sat Feb 03 10:59:05.514677 2018] [php7:crit] [pid 4968:tid 1944] [client ::1:56451] PHP Parse error:  syntax error, unexpected '<', expecting end of file in C:\\xampp\\htdocs\\qwe\\index.php on line 5
    [Sat Feb 03 11:14:54.967319 2018] [php7:crit] [pid 4968:tid 1944] [client ::1:56640] PHP Parse error:  syntax error, unexpected 'gonder' (T_STRING), expecting ',' or ';' in C:\\xampp\\htdocs\\qwe\\index.php on line 7
    [Sat Feb 03 14:49:38.641850 2018] [ssl:warn] [pid 6396:tid 632] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 14:49:39.319437 2018] [core:warn] [pid 6396:tid 632] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Sat Feb 03 14:49:39.339940 2018] [ssl:warn] [pid 6396:tid 632] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 14:49:41.295217 2018] [mpm_winnt:notice] [pid 6396:tid 632] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Sat Feb 03 14:49:41.295217 2018] [mpm_winnt:notice] [pid 6396:tid 632] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Sat Feb 03 14:49:41.295217 2018] [core:notice] [pid 6396:tid 632] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Sat Feb 03 14:49:41.361732 2018] [mpm_winnt:notice] [pid 6396:tid 632] AH00418: Parent: Created child process 4808
    [Sat Feb 03 14:49:42.003308 2018] [ssl:warn] [pid 4808:tid 720] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 14:49:42.122328 2018] [ssl:warn] [pid 4808:tid 720] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Sat Feb 03 14:49:42.190831 2018] [mpm_winnt:notice] [pid 4808:tid 720] AH00354: Child: Starting 150 worker threads.
    [Mon Feb 05 11:27:38.185178 2018] [ssl:warn] [pid 5496:tid 680] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Feb 05 11:27:38.278923 2018] [core:warn] [pid 5496:tid 680] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
    [Mon Feb 05 11:27:38.294549 2018] [ssl:warn] [pid 5496:tid 680] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Feb 05 11:27:40.294556 2018] [mpm_winnt:notice] [pid 5496:tid 680] AH00455: Apache/2.4.29 (Win32) OpenSSL/1.1.0g PHP/7.2.1 configured -- resuming normal operations
    [Mon Feb 05 11:27:40.294556 2018] [mpm_winnt:notice] [pid 5496:tid 680] AH00456: Apache Lounge VC15 Server built: Nov  3 2017 10:30:36
    [Mon Feb 05 11:27:40.294556 2018] [core:notice] [pid 5496:tid 680] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache'
    [Mon Feb 05 11:27:40.372682 2018] [mpm_winnt:notice] [pid 5496:tid 680] AH00418: Parent: Created child process 1280
    [Mon Feb 05 11:27:40.997681 2018] [ssl:warn] [pid 1280:tid 684] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Feb 05 11:27:41.122683 2018] [ssl:warn] [pid 1280:tid 684] AH01909: www.example.com:443:0 server certificate does NOT include an ID which matches the server name
    [Mon Feb 05 11:27:41.169554 2018] [mpm_winnt:notice] [pid 1280:tid 684] AH00354: Child: Starting 150 worker threads.
    [Mon Feb 05 12:03:29.990922 2018] [php7:error] [pid 1280:tid 1928] [client ::1:53407] script 'C:/xampp/htdocs/gonder.php' not found or unable to stat, referer: http://localhost/asd.html
    [Mon Feb 05 12:03:38.757035 2018] [php7:error] [pid 1280:tid 1908] [client ::1:53411] script 'C:/xampp/htdocs/gonder.php' not found or unable to stat, referer: http://localhost/asd.html
    [Mon Feb 05 12:03:58.452527 2018] [php7:error] [pid 1280:tid 1908] [client ::1:53413] script 'C:/xampp/htdocs/gonder.php' not found or unable to stat, referer: http://localhost/asd.html
    [Mon Feb 05 12:05:40.255606 2018] [php7:error] [pid 1280:tid 1908] [client ::1:53431] script 'C:/xampp/htdocs/gonder.php' not found or unable to stat, referer: http://localhost/asd.html
    [Mon Feb 05 12:22:22.365262 2018] [php7:crit] [pid 1280:tid 1928] [client ::1:53668] PHP Parse error:  syntax error, unexpected 'or' (T_LOGICAL_OR) in C:\\xampp\\htdocs\\gonder.php on line 10, referer: http://localhost/asd.html
    [Mon Feb 05 12:23:07.162827 2018] [php7:error] [pid 1280:tid 1928] [client ::1:53678] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_select_db() in C:\\xampp\\htdocs\\gonder.php:3\nStack trace:\n#0 {main}\n  thrown in C:\\xampp\\htdocs\\gonder.php on line 3, referer: http://localhost/asd.html
    [Mon Feb 05 12:23:43.968935 2018] [php7:error] [pid 1280:tid 1928] [client ::1:53685] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_select_db() in C:\\xampp\\htdocs\\gonder.php:3\nStack trace:\n#0 {main}\n  thrown in C:\\xampp\\htdocs\\gonder.php on line 3, referer: http://localhost/asd.html
    [Mon Feb 05 12:24:07.199265 2018] [php7:error] [pid 1280:tid 1928] [client ::1:53694] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_select_db() in C:\\xampp\\htdocs\\gonder.php:3\nStack trace:\n#0 {main}\n  thrown in C:\\xampp\\htdocs\\gonder.php on line 3, referer: http://localhost/asd.html
    [Mon Feb 05 12:32:08.179127 2018] [php7:error] [pid 1280:tid 1928] [client ::1:53953] script 'C:/xampp/htdocs/musteri.php' not found or unable to stat, referer: http://localhost/stu.html
    [Mon Feb 05 12:40:31.288841 2018] [php7:error] [pid 1280:tid 1928] [client ::1:54066] PHP Fatal error:  Uncaught Error: Call to undefined function mysql_select_db() in C:\\xampp\\htdocs\\gonder.php:3\nStack trace:\n#0 {main}\n  thrown in C:\\xampp\\htdocs\\gonder.php on line 3, referer: http://localhost/asd.html
  • 05-02-2018, 12:45:52
    #4
    MySQL yerine MySQLi kullanmanız gerekli yeni versiyonda MySQL mevcut değil
  • 05-02-2018, 12:47:16
    #5
    hesapadim adlı üyeden alıntı: mesajı görüntüle
    MySQL yerine MySQLi kullanmanız gerekli yeni versiyonda MySQL mevcut değil
    hatanın tek nedeni bu mu peki hocam ?
  • 05-02-2018, 12:47:57
    #6
    1) mysql fonksiyonlarini kullaniyorsun. Bu da demekki PHP 5.5 veya daha eski bir surum kulaniyorsun. 3 yil once gelistirme destegi kesilen bir surum. PHP yi guncelle ve mysqli yada PDO kullan.
    2) Hata nerde veya ne yazmamissin. Ama buyuk ihtimalle sorun sorguda. Parantez, degisken herseyi karistirmissin. Bir daha kontrol et, bulacaksin sorunu.

    Edit: Log'u simdi gordum. PHP7 de mysql fonksiyonlari kaldirildi. mysqli veya PDO kullanman lazim. Ayrica dedigim gibi sorgu duzgun gorunmuyor. Bir kontrol et tekrar.
  • 05-02-2018, 12:49:53
    #7
    _LosT_ adlı üyeden alıntı: mesajı görüntüle
    1) mysql fonksiyonlarini kullaniyorsun. Bu da demekki PHP 5.5 veya daha eski bir surum kulaniyorsun. 3 yil once gelistirme destegi kesilen bir surum. PHP yi guncelle ve mysqli yada PDO kullan.
    2) Hata nerde veya ne yazmamissin. Ama buyuk ihtimalle sorun sorguda. Parantez, degisken herseyi karistirmissin. Bir daha kontrol et, bulacaksin sorunu.
    tamamdır, teşekkür ederim
  • 05-02-2018, 13:26:36
    #8
    yefy00 adlı üyeden alıntı: mesajı görüntüle
    hatanın tek nedeni bu mu peki hocam ?
    şu anlık evet.