Results 1 to 4 of 4

Thread: Bu PHP'deki sorun nedir?

  1. Go to Thank YouDownload #1
    Go to Thank You
    Kıdemli Üye Yazar Panda's Avatar

    Info

    Go to Top of Post

    Default Bu PHP'deki sorun nedir?

    Merhaba, uygulamamda trgoals'ın spor yayınlarını kullanıyorum. Ama artık elimle değiştirmekten çok yorulduğum için bu işlemi otomatikleştirmeye karar verdim. Tr goals bildiğiniz üzere sub domain sistemi ile çalışıyor. Mesela: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız...
    PHP kkodumun bu alt domaini otomatik olarak bulmasını sağlamaya çalıştım ama site ile aynı domaini buluyor. mesela [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız... Ve ben bunu nasıl düzeltebileceğimi bir türlü bulamadım.
    Aşağıda php kodunu veriyorum, isteyen çaladabilir zaten o kadarda büyük bir şey değil.

    PHP Code:
    1. <?php
    2. $targetAddress 'https://trgoals490.xyz';
    3. $otherAddresses = [
    4.     'https://trgoals491.xyz',
    5.     'https://trgoals492.xyz',
    6.     'https://trgoals493.xyz',
    7.     'https://trgoals494.xyz',
    8.     'https://trgoals495.xyz',
    9.     'https://trgoals496.xyz',
    10.     'https://trgoals497.xyz',
    11.     'https://trgoals498.xyz',
    12.     'https://trgoals499.xyz',
    13.     'https://trgoals500.xyz',
    14.     'https://trgoals501.xyz',
    15.     'https://trgoals502.xyz',
    16.     'https://trgoals503.xyz',
    17.     'https://trgoals504.xyz',
    18.     'https://trgoals505.xyz',
    19.     'https://trgoals506.xyz',
    20.     'https://trgoals507.xyz',
    21.     'https://trgoals508.xyz',
    22.     'https://trgoals509.xyz',
    23.     'https://trgoals510.xyz',
    24.     'https://trgoals511.xyz',
    25.     'https://trgoals512.xyz',
    26.     'https://trgoals513.xyz',
    27.     'https://trgoals514.xyz',
    28.     'https://trgoals515.xyz',
    29.     'https://trgoals516.xyz',
    30.     'https://trgoals517.xyz',
    31.     'https://trgoals518.xyz',
    32.     'https://trgoals519.xyz',
    33.     'https://trgoals520.xyz'
    34. ];
    35. function isAddressAccessible($address) {
    36.     $timeout 15;
    37.     $ch curl_init($address);
    38.     curl_setopt($chCURLOPT_TIMEOUT$timeout);
    39.     curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
    40.     $response curl_exec($ch);
    41.     $httpCode curl_getinfo($chCURLINFO_HTTP_CODE);
    42.     curl_close($ch);
    43.     return ($httpCode === 200);
    44. }
    45. function findYayin1M3U8($subdomain) {
    46.     $yayin1M3U8 "https://$subdomain.trgoals490.xyz/yayin1.m3u8";
    47.     echo "<script>window.location.href = '$yayin1M3U8';</script>";
    48. }
    49. if (isAddressAccessible($targetAddress)) {
    50.     $parsedUrl parse_url($targetAddress);
    51.     $subdomain explode('.'$parsedUrl['host'])[0];
    52.     findYayin1M3U8($subdomain);
    53. } else {
    54.     foreach ($otherAddresses as $address) {
    55.         if (isAddressAccessible($address)) {
    56.             $parsedUrl parse_url($address);
    57.             $subdomain explode('.'$parsedUrl['host'])[0];
    58.             findYayin1M3U8($subdomain);
    59.             break;
    60.         }
    61.     }
    62.     echo '<p>Unable to connect to any domain.</p>';
    63. }
    64. ?>




  2. The Following 3 Users Say Thank You to Yazar Panda For This Useful Post:

  3. Go to Thank YouDownload #2
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    Merhaba ustam, laptop a geçince dener bilgi veririm, şuan misafirim var.

    Sizin gibi uzmanları aramızda görmek mutlu ediyor.
    Selam ve Saygılarla İyi Forumlar...



  4. The Following 3 Users Say Thank You to yilmaz For This Useful Post:

  5. Go to Thank YouDownload #3
    Go to Thank You
    Kıdemli Üye Yazar Panda's Avatar

    Info

    Go to Top of Post

    Quote Originally Posted by yilmaz View Post
    Merhaba ustam, laptop a geçince dener bilgi veririm, şuan misafirim var.

    Sizin gibi uzmanları aramızda görmek mutlu ediyor.
    Teşekkür ederim estafirullah, sizler benden daha da uzmansınız.


  6. The Following 2 Users Say Thank You to Yazar Panda For This Useful Post:

  7. Go to Thank YouDownload #4
    Go to Thank You
    Yönetici yilmaz's Avatar

    Info

    Go to Top of Post

    Güncel domain devamlı bu kısa URL den yönlendiriyor.

    [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..
    Selam ve Saygılarla İyi Forumlar...



  8. The Following 2 Users Say Thank You to yilmaz For This Useful Post:

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •