Falcon1986

Members
  • Content Count

    250
  • Joined

  • Last visited

Posts posted by Falcon1986

  1. I know for a fact that sites created on WordPress.com can be upgraded (different fees for different upgrades) to use a custom domain name. Not sure about Blogger, but I wouldn't be surprised if it also had this feature.

    If you're looking at installing WordPress on your own server, it does not necessarily have to be installed on a subdomain in order to be used as such. The latest version of WordPress has multi-site management already built in and creating separate blogs on subdomains is easier.

  2. Even if the Creative drivers get removed, does sound still work? Is Windows replacing them with its own? Open Device Manager to see what is there.

    I notice from your signature that the audio adapter is on a machine running Windows 7. Windows Update now has the ability to detect [what it appears to be] drivers that have updates and offer them for installation. I don't think they should be automatically installed even if you have regular updates set to do this, since they are considered "optional". However, try changing the Windows Update setting to something like "check but let me choose", reinstall your audio drivers, reboot and see what happens.

    Another thing: Is the user account from which you are doing this one with administrative rights? If not, right-click on the driver installation file and choose 'Run as administrator' the next time you attempt to reinstall the drivers.

  3. About two days ago I noticed a few new updates and decided to install them all. Unfortunately, I ran into a similar issue. On reboot, the updater reported that a problem was encountered and reverted to a pre-update state.

    I eventually got all the updates installed by doing the following. I went into WU and saw that only one of the important updates was selected by default. I allowed this single update to install and reboot the system. Afterward, applying the other updates was successful.

  4. Didn't you get a response to at least one of those questions on the G4 Tech Support forum?

    Single-click can be activated within Windows Explorer > Tools > Folder Options.

    No, you should not defragment SSDs. First of all, they don't need to be defragmented because access time remains the same (i.e. pretty low) no matter where data is placed on NAND memory.

    Secondly, you shouldn't defragment because you are countering the drive's built-in wear distribution. Since SSDs have a limited number of write cycles before they reach the end of their lives, they are designed to intentionally "fragment" data so that all chips get even wearing. By doing this, you don't get chunks of memory failing at different points in time; instead, overall failure is delayed because "stress" is shared by all chips. That's just my interpretation of what I have learned about SSDs. There is no negative performance impact to be concerned about with this intentional "fragmentation" because, as I said before, there is hardly any delay in access time anyway.

    You should therefore realize that the process of defragmentation involves moving/writing data so this, in itself, contributes negatively to the life of the SSD.

  5. Crucial.com has compatible modules for your motherboard.

    Here is a review of the Asus P5E3 Deluxe WiFi. Your current items seem compatible.

    SATA 3 hard disks are backward-compatible with previous versions of SATA. The SATA controller will just be the bottleneck in maximum obtainable speed. Some newer hard disks have "force switches" that force them to use slower speeds on older SATA controllers.

  6. Your 32-bit version of Firefox won't be able to use the 64-bit version of Java. The 32-bit version of your browser will use the 32-bit version of Java. The 64-bit version of your browser will use the 64-bit version of Java. You need to install each individually.

    Uninstall both versions of Java then reinstall each. You can use JavaRa to clean up any traces of Java.

  7. I noticed a lot of link references to localhost, so perhaps Apache was still passing this information to WordPress when it should have been sending the domain name.

    Glad it worked out for you. BTW, WordPress was updated to v3.0.4, so you might want to update.

  8. In your wp-config.php file, add the following after define ('WPLANG', '');:

    /** Stop post revisions and extend autosave interval. */
    define('AUTOSAVE_INTERVAL', 900); // delay autosave
    define('WP_POST_REVISIONS', false); // turn of post revisions

    Some other wp-config.php edits that might speed things up a bit:

    /** Blog address and site address */
    define('WP_HOME', 'http://www.yourdomain.com'); // no trailing slash
    define('WP_SITEURL', 'http://www.yourdomain.com'); // no trailing slash

    /** Template path and stylesheet path specification */
    define('TEMPLATEPATH', '/home/user/public_html/mysite/wp-content/themes/mytheme');
    define('STYLESHEETPATH', '/home/user/public_html/mysite/wp-content/themes/mytheme');

    /** Automated trash emptying */
    define('EMPTY_TRASH_DAYS', 7); // empty weekly

    Note that the second definition will disable active theme switching within the Administrator's dashboard. Comment out when you need to switch themes; revert when done.

    These are theme-specific tweaks that must be added to your theme's functions.php file. They are not all performance-enhancing tweaks. The comments should give you a general idea, however.

    // Disable RSS feeds
    function disable_our_feeds() {
    wp_die( __('<strong>ERROR:</strong> We are sorry, but RSS feeds have been disabled on this website for privacy purposes. Please click <a href="http://www.monambbs2014.com/" >this link</a> to return to the homepage.') );
    }
    add_action('do_feed', 'disable_our_feeds', 1);
    add_action('do_feed_rdf', 'disable_our_feeds', 1);
    add_action('do_feed_rss', 'disable_our_feeds', 1);
    add_action('do_feed_rss2', 'disable_our_feeds', 1);
    add_action('do_feed_atom', 'disable_our_feeds', 1);

    // Custom Dashboard logo
    add_action('admin_head', 'my_custom_logo');
    function my_custom_logo() {
    echo '
    <style type="text/css">
    #header-logo { background-image: url('.get_bloginfo('template_directory').'/path/to/image.jpg) !important; }
    </style>
    ';
    }

    // Specify favicon for Dashboard
    function favicon4admin() {
    echo '<link rel="Shortcut Icon" type="image/x-icon" href="http://www.yourdomain.tld/favicon.ico" />';
    }
    add_action( 'admin_head', 'favicon4admin' );

    // Remove WordPress version from header
    add_filter( 'the_generator', create_function('$a', "return null;") );

    // De-clutter wp_head
    // Really Simple Discovery
    remove_action('wp_head', 'rsd_link');
    // Windows Live Writer
    remove_action('wp_head', 'wlwmanifest_link');
    // BbLD header ad
    remove_action('wp_head', 'bbld');
    // Post and comment feed links
    remove_action( 'wp_head', 'feed_links', 2 );
    // Category feed links
    remove_action( 'wp_head', 'feed_links_extra', 3 );
    // Index link
    remove_action( 'wp_head', 'index_rel_link');
    // Start, previous and current links
    remove_action( 'wp_head', 'parent_post_rel_link');
    remove_action( 'wp_head', 'start_post_rel_link');
    remove_action( 'wp_head', 'adjacent_posts_rel_link');

    // Add canonical links for comments
    function canonical_for_comments() {
    global $cpage, $post;
    if ( $cpage > 1 ) :
    echo "\n";
    echo "<link rel='canonical' href='";
    echo get_permalink( $post->ID );
    echo "' />\n";
    endif;
    }
    add_action( 'wp_head', 'canonical_for_comments' );

    // Disable WordPress autosave
    function disableAutoSave(){
    wp_deregister_script('autosave');
    }
    add_action( 'wp_print_scripts', 'disableAutoSave' );

    // Specify use of single custom gravatar
    if ( !function_exists('fb_addgravatar') ) {
    function fb_addgravatar( $avatar_defaults ) {
    $myavatar = get_bloginfo('template_directory').'/path/to/gravatar.png';
    $avatar_defaults[$myavatar] = 'Caduceus';
    return $avatar_defaults;
    }
    add_filter( 'avatar_defaults', 'fb_addgravatar' ); }

  9. As for the content of the website, you should be asking a knowledgeable person within the NGO. What is the organization about? Why should people provide donations? Once you get as much information as you can find, you can then proceed on organizing and presenting it.

    If the website is meant to generate discussion, a blog might be sufficient. Remember, a lot of blogging software already allow comments within posts. A forum might just be redundant and unnecessary. However, if you foresee lots of visitor-initiated discussion (i.e. those not guided by blog posts), then a forum might be required.

    Facebook and Twitter are good for getting your website noticed and driving traffic, but shouldn't replace it.

  10. Just curious, why does the method I am using, effect SEO?

    Within heading tags are found the topics and sub-topics for your page's content. They show search engines how your content is organized so that there can be better crawling and keyword association. A hierarchy is involved with heading tags: H1 can be thought of as the "major topic", H2 is a "sub-topic" of H1, H3 is a "sub-topic" of H2, etc. So when using heading tags in your HTML, you should do so as if writing a well-organized essay. Rarely is going beyond H3 necessary if your page's content is concise and properly arranged.

  11. I'm a fan of WordPress because it's free, easy to set up and use, is constantly under development and can be expanded to do a variety of things thanks to custom themes/plugins. Have never used the others, so cannot compare.

    Joomla! and Drupal are more "true" CMSes than WordPress although, with a bit of tweaking and plugins, WordPress can be transformed into a fully-functional CMS.

    What are you looking for in a CMS?

  12. You need to close your heading tags. Review the <div> with the 'feature' class and you will see the errors.

    <div class="feature">
    <h3>Come See Us!</h3>
    <h2>832 7th St NW, Rochester, MN (next to the Ye Olde Butcher Shop)</h2>
    <h3>Call Us Today!</h3>
    <h2>(507)252-0334</h2>
    <h3>Send Us An Email!</h3>
    <h2><a href="mailto:[email protected]">[email protected]</a></h2>
    <h3><strong>Business Hours:</strong></h3>
    <h2>9AM(We start answering the phone at 8AM) to 6PM Monday Through Friday</h2>
    <h2>10AM to 3PM Saturday</h2>
    <h2><strong>Please call anytime, anyday! We do our best to answer phones and provide service after hours</strong></h2>
    </div>

    Secondly, it seems like you are trying to use heading tags as a replacement for font sizes. This does not go against the standard, but you should try to use heading tags properly if SEO is of concern. After I ran the page's HTML through W3C's Validator it made the following observation:

    ...it is likely that the heading tags are not being used properly. (Headings should reflect the logical structure of the document; they should not be used simply to add emphasis, or to change the font size.)
  13. There are many HTML editors and these can fall into the categories of WYSIWYG or basic text editors. WYSIWYG editors are great if you're not really interested in learning about the raw code that goes into making web pages; with text editors you will be looking at the raw code.

    For the novice, I believe you should first learn about HTML before learning about the editors because many of the editors are quite similar. The only difference between editors might be the way in which they help developers get things done. Here are a few links you can check out:

    8 Website for Quality HTML Coding Examples - via MakeUseOf.com

    5 Best WYSIWYG HTML Editors - via Lifehacker.com

    Become a Better Web Developer - SitePoint.com

    HTML, Javascript and CSS Tutorials - EchoEcho.com

    Web Development Tutorials from Beginner to Advanced - Nettuts+

    1. Check to see if a driver update is available for the adapter. Uninstall the old version before installing the newer version.
    2. If your wireless adapter comes with its own wireless management software, decide whether you will use it or choose to go with the Windows Wireless Zero Configuration (WCZ). If you go with the former, you will have to deactivate WCZ via the Windows Services; if you go with the latter, simply disable the wireless management software from within the GUI or its corresponding startup item.
    3. Run a scan of the detected networks in your neighbourhood and take note of their wireless channels and SSIDs. Make sure that your wireless router is configured to use a unique SSID and broadcast on a channel that is as far away from the others as possible. Also configure your wireless adapter to transmit via same channel.
    4. In the list of preferred wireless access points for your adapter, ensure that your router's SSID is at the top of the list. Disable connecting to non-preferred networks.