Tapatalk Forum App for xenForo - iOS / Android / Windows Phone Mobile App [Deleted]

I haven't heard anymore complaints - working now with the Xenforo release 1.4.6?
You may don't hear it, but it does not mean that no body complaint. You can only hear it if you read it ;)
IMHO, bad ratings more than enough to explain about untouched complaints.
So, we have the same opinion. @tapatalk may got many complaints but they don't heard it. they stay enjoy with these situations. that's why i salute them. i can't do the same. clap clap clap...
 
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.

Screen Shot 2015-04-17 at 5.53.48 AM.webp

Screen Shot 2015-04-17 at 5.56.15 AM.webp
 
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.
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.

I presume it's because you've set your Google Analytics ID in the Tapatalk dashboard.
 
@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:

611c9d571ddc5f73312296d2f36e81e4.jpg


Tagging @JoshyPHP as well as he's author of the other add-on..
 
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 ??
 
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 ??
That shows up if you are using a version of PHP before 5.4 (see top of this page).
If upgrading PHP isn't an option, either uninstall Tapatalk and install an older version or try the following.

Add this to the bottom of the file mobiquo/mobiquo_common.php:
PHP:
// 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;
    }
}
 
So our Tapatalk installation took a dump this morning for no apparent reason. I upgraded to the newest one and am still having issues. Seems to probably be a permissions thing but even when I chmod -R mobiquo to 755 I still get this error in my Tapatalk owner panel

upload_2015-4-29_18-12-57.webp

tapatalk is definitely NOT disabled in the XF ACP.
 
Now the app is telling me the install wasn't finished, but I've run the add-on upgrade file several times now.

With mobiquo at 755, I get the incomplete installation thing.

With it at 644, I get forum not responding error.
 
Reef Central is not accessible via tapatalk right now, it says "Error 2205 Forum is not responding" but it's definitely online. It's not you.
 
Yeah, we're online too, at least via browsers. Very weird. I know they were having some problems this morning with the Tapatalk central servers but this seems to be another issue altogether.
 
Back
Top Bottom