Archive for May, 2013
May
06
Posted under
Coding Below are a few useful modifications for the Twenty Eleven theme in WordPress.
1. How to remove the Search box.
Locate the HEADER.PHP file and remove the code below;
<?php
// Has the text been hidden?
if ( 'blank' == get_header_textcolor() ) :
?>
<div>
<?php get_search_form(); ?>
</div>
<?php
else :
?>
<?php get_search_form(); ?>
<?php endif; ?>
2. How to remove the Page Title description on each page.
Locate the CONTENT-PAGE.PHP file and remove the code below;
h1 class=”entry-title”><?php the_title(); ?></h1>
3. How to reduce whitespace below menu and Page Title .
Locate the STYLE.CSS file and add the code below to the end of the file;
#main,.singular.page .hentry{padding:0;}
4. How to modify the footer.
Change..
” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?>” rel=”generator”><?php printf( __( ‘Proudly powered by %s’, ‘twentyeleven’ ), ‘WordPress’ ); ?>
To
” title=”<?php esc_attr_e( ‘Semantic Personal Publishing Platform’, ‘twentyeleven’ ); ?>” rel=”generator”><?php printf( ‘Yoursite copyright 2011’ ); ?>
May
02
Posted under
Exchange,
IIS,
SBS,
Servers The other day I Found A Fix for a recent problem I was having. The issue is described as follows;
My clients new Nokia 920 windows phone could not connect to an SBS 2011 server running exchange 2010. All other smart devices connect no problem.
The phone could successfully setup the account but it would not sync. There error was as follows;
– Outlook Error
– Not Updated
– You’ll need a personal certificate to connect to remote.XXX.YYY
– error code: 85030027
The solution was to open ISS Manager on the server, navigate to the Microsoft-Server-ActiveSync folder (as below) and in the SSL settings. set Client Certificates to IGNORE.
you’ll need a personal certificate to connect to
Outlook Error
Not Updated
You’ll need a personal certificate to connect to remote.XXX.com
last tried 11 minutes ago
error code: 85030027
I hope you too have found a fix.
May
02
Posted under
Encryption,
Laptops
The other day I Found A Fix for a recent problem I was having. The issue is described as follows;
While trying to encrypt a laptop using Truecrypt, I realised I had no CD drive (or CD’s). Luckily there is a simple workaround you can use to bypass this requirement.
In the Run or Search box, type the following;
Alternatively type the path via the DOS Command Prompt i.e
– CD\
– Cd “C:\Program Files\Truecrypt”
– “TrueCrypt Format.exe” /n
I hope you too have found a fix.