Apr
30
2011
1

Html Form Buttons not displaying correctly in mobile safari [Solved]

This is problem caused by safari attempting to default buttons in the mobile browser to its own apple look. A simple fix can be done using CSS. First add a class to your input button tag in the form which you may already have put there:

<input type="submit" value="SUBMIT" name="submit" class="mySubmitClass" />

then in your stylesheet add the following to fix the issue once and for all:

.mySubmitClass {
    -webkit-appearance: none;
}


Written by Tris in: Apple,css,Mobile | Tags: , ,
Apr
23
2011
0

Unable to locate WordPress Content directory (wp-content)

When you try to update/install a WordPress plugin you get the following error:

“Upgrade Plugin: Unable to locate WordPress Content directory (wp-content)”

Add the following code to the end of your wp-config.php file:
if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );
}

Written by Pete in: wordpress |
Apr
22
2011
0

Disable ‘Windows is checking for a solution’

When Windows 7 detects an error it shows the message box ‘Windows is checking for a solution’, this is often time consuming and rarely finds anything, to disable this message:

1. Click Start -> All Programs -> Maintenance -> Problem Reports and Solutions.

2. In the Problem Reports and Solutions window,

3. Click Change settings -> Advanced settings and Turn off problem settings

Written by Pete in: windows 7 |
Apr
21
2011
0

BES Express Handset Server Activation

You can activate a Blackberry by plugging it into your BES Server with a USB cable.

1. Login to Blackberry Administration Service

2. Create User without activation password.

3. Plugin Blackberry via USB – wait 30 seconds.

4. Expand Attached Devices and click Scan if it doesn’t pick up automatically.

5. Click Mange Current Device

6. Click Assign the current device to a user

7. Search for User

8. Select User and Click Associate User

9. Wait upto 30 seconds.

 

Note: If Attached Devices comes up blank do the following:

1. Make sure you’ve enabled the ActiveX Control – The ActiveX Control is what lets BES See USB Devices.
2. Make sure you plugged the device in after logging into the BES Admin Service

 

If you can’t run the ActiveX Control:

Tools -> Internet Options -> choose the Security tab
Click the Custom Level button
Enable the following settings:
Run ActiveX controls and plug-ins
Initialize and script ActiveX control not marked as safe.

Written by Pete in: Blackberry |
Apr
21
2011
0

Internet Explorer has blocked this site from using an ActiveX control

In the Browser Toolbar:
Tools -> Internet Options -> choose the Security tab
Click the Custom Level button
Enable the following settings:
Run ActiveX controls and plug-ins
Initialize and script ActiveX control not marked as safe.

Written by Pete in: windows 7,Windows XP |
Apr
07
2011
0

How to get a file path box in OS X Finder

In other operating systems it is easy to enter the path of a file or folder in the address bar however OS X finder does not have this by default.

To show a path box in OS X use: ⌘-Shift-G

This will popup a file path box you then enter input your path.

Written by Pete in: OS X |
Apr
05
2011
0

How to find out the UID and GID on OS X

To find out the UID or GID of a user in OS X:

1. Open the terminal

2. Type: id

3.  This will show you the UID and GID of the currently logged in user.

Written by Pete in: Apple |

Powered by WordPress | Aeros Theme | TheBuckmaker.com WordPress Themes