Multibyte string input conversion in PHP is active and must be disabled.

Multibyte string input conversion in PHP is active and must be disabled. Check the php.ini mbstring.http_input setting. Please refer to the PHP mbstring documentation for more information.

please put below code in settings.php

ini_set(‘mbstring.http_input’, ‘pass’);
ini_set(‘mbstring.http_output’, ‘pass’);

 

Advertisement

Responsive table scrollbar not showing in mobile

To show the scrollbar in responsive table put use below CSS code.

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-track {
    border-radius: 10px;  
    background-color: #ffffff; 
}

Debugging android chrome from desktop

In mobile device

  1. Settings > Developer options on
  2. In Developer options, select the USB debugging checkbox:
  3. An alert prompts you to allow USB debugging. Tap OK.

Desktop chrome

  1. Need to check about android version and install specified android debugging suite.
  2. On your desktop Chrome browser, navigate to chrome://inspect. Confirm that Discover USB devices is checked:
  3. Tip: You can also get to chrome://inspect by selecting Chrome menu > More tools > Inspect Devices.

On your device, an alert prompts you to allow USB debugging from your computer. Tap OK.

If you have problems finding your device on the chrome://inspect page

enable USB debugging (Android 4.3).

Step 1: Go to Settings.

Step 2: Click About.

Step 3: Open Software information.

Step 4: Tap Build number continuously until a pop-up hint informs you that you’ve entered the developer mode.

Step 5: Return to Settings.

Step 6: Find and open Developer options.

Step 7: Select USB debugging and click OK.