• 28-02-2023, 00:10:39
    #1
    Merhabalar websiteme pcden girilmesini istemiyorum cloudflareden bu ayarı yapmak mümkünmüdür ?
  • 28-02-2023, 00:13:36
    #2
    Merhaba,


    Waf rule dan user agent eklenebilir.

    İyi çalışmalar.
  • 28-02-2023, 00:13:50
    #3
    Tabiki
    • Hostranot
    Hostranot bunu beğendi.
    1 kişi bunu beğendi.
  • 28-02-2023, 00:15:14
    #4
    Üyeliği durduruldu
    Oradan değil ama kodlamadan kapatabilirsiniz

    // Include and instantiate the class.
    require_once 'Mobile_Detect.php';
    $detect = new Mobile_Detect;

    // Any mobile device (phones or tablets).
    if ( $detect->isMobile() ) {

    }

    // Any tablet device.
    if( $detect->isTablet() ){

    }

    // Exclude tablets.
    if( $detect->isMobile() && !$detect->isTablet() ){

    }

    // Check for a specific platform with the help of the magic methods:
    if( $detect->isiOS() ){

    }

    if( $detect->isAndroidOS() ){

    }

    // Alternative method is() for checking specific properties.
    // WARNING: this method is in BETA, some keyword properties will change in the future.
    $detect->is('Chrome')
    $detect->is('iOS')
    $detect->is('UC Browser')
    // [...]

    // Batch mode using setUserAgent():
    $userAgents = array(
    'Mozilla/5.0 (Linux; Android 4.0.4; Desire HD Build/IMM76D) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.166 Mobile Safari/535.19',
    'BlackBerry7100i/4.1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 VendorID/103',
    // [...]
    );
    foreach($userAgents as $userAgent){

    $detect->setUserAgent($userAgent);
    $isMobile = $detect->isMobile();
    $isTablet = $detect->isTablet();
    // Use the force however you want.

    }

    // Get the version() of components.
    // WARNING: this method is in BETA, some keyword properties will change in the future.
    $detect->version('iPad'); // 4.3 (float)
    $detect->version('iPhone') // 3.1 (float)
    $detect->version('Android'); // 2.1 (float)
    $detect->version('Opera Mini'); // 5.0 (float)
    // [...]

    Örnek olarak Siteyi sadece mobil cihazlara ve tabletlere açmak için ( yani PC ye kapatmak için ) aşagıdaki kodu kullanabilirsiniz.

    require_once 'Mobile_Detect.php';
    $detect = new Mobile_Detect;
    if(!$detect->isMobile() && !$detect->isTable
  • 28-02-2023, 00:15:24
    #5
    CliaWeb adlı üyeden alıntı: mesajı görüntüle
    Merhaba,


    Waf rule dan user agent eklenebilir.

    İyi çalışmalar.
    Rica etsem nasıl yapıldığını anlatabilirmisiniz
  • 28-02-2023, 00:27:54
    #6
    Misafir adlı üyeden alıntı: mesajı görüntüle
    Tabiki
    Rica etsem nasıl yapıldığını anlatabilirmisiniz