Author Archives: tabcom

WordPress – Block Settings | Permalinks menu option from Dashboard

When you change the Permalinks settings in WordPress, you effectively change the Apache mod_rewrite rule that rewrites URLs.

The .htaccess file auto-generated by WordPress does not always suit the server hosting the web site.

To prevent administrators from accessing the Permalinks menu option in the dashboard you can use the following code and create a ‘must-use’ (mu) WordPress plugin:

…/wp-content/mu-plugins/block-permalinks.php

<?php

add_action( 'admin_menu', 'tabcom_remove_menus' );

add_action( 'admin_init', 'tabcom_block_permalinks' );

function tabcom_remove_menus() {
    remove_submenu_page( 'options-general.php', 'options-permalink.php' );
}

function tabcom_block_permalinks() {
        global $pagenow;
        if ( 'options-permalink.php' == $pagenow ) {
                wp_die( 'Not allowed' );
        }
}

?>
WordPress – Block Settings | Permalinks menu option from Dashboard was last modified: August 17th, 2016 by tabcom

How to quickly determine what version of Windows you are using

To determine the version of Microsoft Windows that you are running, follow these steps:

  1. Press the [Windows] key on your keyboard, together with the [R] key.
  2. The “Run” dialog window should appear on your screen.
  3. Type “winver” and press [ENTER] or click OK.
  4. The “About Windows” popup window should appear.

The version number is now displayed.

How to quickly determine what version of Windows you are using was last modified: July 29th, 2016 by tabcom

Introduction into 3D modelling using SketchUp Make

Next Training Session

Date: Wednesday 17 August 2016
Time: 08:00pm – 10:00pm
Location: (Rangeview) Tolga, QLD
Cost: $90
Subject Introduction to SketchUp Make

Description

SketchUp (formerly Google Sketchup) is a 3D modeling computer program for a wide range of drawing applications such as architectural, interior design, civil and mechanical engineering, film, and video game design—and available in a freeware version, SketchUp Make.  In this hands-on guided training session we will use ‘SketchUp Make’ 3D editing software to explore basic 3D modelling.

This 2 hour training session will teach you how to create and edit 2D shapes and 3D objects.  This course will provide basic training that will help master high-end 3D modelling software products like Autodesk’s 3dsmax and Maya or the open source product Blender.  If you are interested in 3D printing, this course will increase your understanding of rapid prototyping focused products like Solidworks or Slic3er.

Continue Reading →

Introduction into 3D modelling using SketchUp Make was last modified: July 15th, 2016 by tabcom