• Hello
    I try to add .apk file (android app) on my web page to be download and install on mobile phone if someone connect on my site via mobile phone, I configure permission in wp-config.php. and in function.php. But, when you click on icon nothing happened only spin roll but no download and install start.
    Any help, ayn tips how to fix this.

    thx

Viewing 3 replies - 1 through 3 (of 3 total)
  • Without a link to the site in question, we can only guess.

    1) Have you verified that the file exists?

    2) Have you verified that the link is correct?

    3) Have you looked at your server error logs to see what, if any, errors are being logged?

    4) Have you tried this with a different phone?

    5) Have you tried this over both wifi and mobile data?

    I configure permission in wp-config.php. and in function.php.

    Are you sure you did this correctly? You can paste the relevant code snippets here to see if you did.

    Thread Starter dinkomali

    (@dinkomali)

    Hi thanks for answer:
    link: http://www.frizerskistudiosandra.com/o-salonu-frizerski-studio-sandra/
    in wp-config.php :
    define(‘ALLOW_UNFILTERED_UPLOADS’, true);
    in functions.php :
    add_filter(‘upload_mimes’, ‘acp_custom_mimes’);
    function acp_custom_mimes ( $existing_mimes=array() ) {
    $existing_mimes[‘apk’] = ‘application/vnd.android.package- archive‘;
    return $existing_mimes;
    }
    everything I done as needed, any tips.

    thx

    Thread Starter dinkomali

    (@dinkomali)

    Hi
    I noticed that all work on my other WP site, so must be something with theme, any suggestion where to look first.

    thx

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Download .apk file from WP’ is closed to new replies.