Support » Fixing WordPress » What consumes my bandwidth

  • Hey guys.

    After installing and configuring my site, everything is working as expected, but my majour problem now is bandwidth usage

    As at now, my maximum daily page view is 10, excluding admin page view, but my 1gb monthly bandwidth allocated to me by my host exhausted before the end of the month.

    How will I run a check on my site to know exactly what consumes my bandwidth?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Please post web url

    or use the following service to analyze the files yourself

    http://www.websiteoptimization.com/services/analyze/

    Thread Starter UgoDimma

    (@lovecoinz)

    @marvel Labs

    Thanks for your imediate reply. Here is my web address,
    http://lovecoinz.com/

    Please do have a look at it, I will love you professional analyses.

    Thanks ones again for your response.

    I just ran a test on my site, but it rturns this error report

    The following error has been returned.
    403 Forbidden
    Please check your url and try again

    Use your browser’s inspector and analyze the ‘Network’ part of the inspector. This will tell you everything that’s being loaded on a page and you can sort by size to view the biggest culprits.

    You can also use pingdom to analyze the files that use maximum bandwidth.

    I analyzed it and found that images and javascript files were taking maximum resources.

    You can always host them on google drive or a third place

    http://tools.pingdom.com/fpt/?testurl=lovecoinz.com#!/JoPIh/lovecoinz.com

    Thread Starter UgoDimma

    (@lovecoinz)

    @ben.greeley, thanks for your insight, I will also check it out, but if I encounter any difficulty, I will report back.

    @marvel Labs, thanks for your result.. Based on hosting else where. Am not familiar with that techniques other than making use of CDN, of which am using cloudflare now. Can you share me up on how to do so. If any tutorial is available, I will appreciate. That reminds me, am also making use of jetpack photon; how eddective could it be.

    Thanks again you guys for your help.

    Locate JS files and their location from your theme’s header.php file
    then change it relatively using this tutorial:

    http://helplogger.blogspot.in/2014/09/host-blogger-css-javascript-files-in-google-drive.html

    Thread Starter UgoDimma

    (@lovecoinz)

    @marvel Lab,
    Thanks for the link, amd going through it, and when am done with it, I will surely let you know what my idea is like.
    Thanks again to you guys.

    Thread Starter UgoDimma

    (@lovecoinz)

    @marvel Labs
    I went through my sute header.php but I did not see any instances of css and js, please can you have a look at my site header.php and tell me what I should be diting there please.
    Bellow is my site header.php file.

    <?php
    /**
    * Genesis Framework.
    *
    * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
    * Please do all modifications in the form of a child theme.
    *
    * @package Genesis\Templates
    * @author StudioPress
    * @license GPL-2.0+
    * @link http://my.studiopress.com/themes/genesis/
    */

    do_action( ‘genesis_doctype’ );
    do_action( ‘genesis_title’ );
    do_action( ‘genesis_meta’ );

    wp_head(); //* we need this for plugins
    ?>
    </head>
    <?php
    genesis_markup( array(
    ‘html5’ => ‘<body %s>’,
    ‘xhtml’ => sprintf( ‘<body class=”%s”>’, implode( ‘ ‘, get_body_class() ) ),
    ‘context’ => ‘body’,
    ) );
    do_action( ‘genesis_before’ );

    genesis_markup( array(
    ‘html5’ => ‘<div %s>’,
    ‘xhtml’ => ‘<div id=”wrap”>’,
    ‘context’ => ‘site-container’,
    ) );

    do_action( ‘genesis_before_header’ );
    do_action( ‘genesis_header’ );
    do_action( ‘genesis_after_header’ );

    genesis_markup( array(
    ‘html5’ => ‘<div %s>’,
    ‘xhtml’ => ‘<div id=”inner”>’,
    ‘context’ => ‘site-inner’,
    ) );
    genesis_structural_wrap( ‘site-inner’ );

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘What consumes my bandwidth’ is closed to new replies.