lazy llama
Well-known member
As long as you download the current ZIP file and you're running at least PHP 5.4, it seems to be okay.I haven't heard anymore complaints - working now with the Xenforo release 1.4.6?
As long as you download the current ZIP file and you're running at least PHP 5.4, it seems to be okay.I haven't heard anymore complaints - working now with the Xenforo release 1.4.6?
Tapatalk seems to use the http_response_code() function which is only present in PHP 5.4 and later.I keep getting this:
Fatal Error: Call to undefined function http_response_code()
mobiquo/avatar.php:84
You may don't hear it, but it does not mean that no body complaint. You can only hear it if you read itI haven't heard anymore complaints - working now with the Xenforo release 1.4.6?
Not absolutely certain but that looks like it's asking to associate your site with the Tapatalk Pro Android app, so that access to your site by people using Tapatalk Pro gets correctly tracked by Google webmaster tools.Does anyone know what this is? It's something to do with Tapatalk, I wasn't sure if I should approve it, it was in my Google webmaster tools area in the messages.
We all know you hate it. There's no need to continually beat it into everyone.that way i never use tapatalk, to much involve in personal details, worst then facebook
Yes, I saw this too, just thought it was an unsupported media via Tapatalk.@tapatalk we are having a confliction with another add-on (https://xenforo.com/community/resources/s9e-media-bbcodes-pack.2476/) (guessing its this one) and getting this for images:
![]()
Tagging @JoshyPHP as well as he's author of the other add-on..
That shows up if you are using a version of PHP before 5.4 (see top of this page).Hundreds of server errors since upgrade.
"Fatal Error: Call to undefined function http_response_code() - mobiquo/avatar.php:84"
Any idea how to resolve this ??
// For 4.3.0 <= PHP <= 5.4.0
if (!function_exists('http_response_code'))
{
function http_response_code($newcode = NULL)
{
static $code = 200;
if($newcode !== NULL)
{
header('X-PHP-Response-Code: '.$newcode, true, $newcode);
if(!headers_sent())
$code = $newcode;
}
return $code;
}
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.