Monthly Archive: August 2013

How to install/uninstall Zimlets In Zimbra 8 5

How to install/uninstall Zimlets In Zimbra 8

TO INSTALL:

First place zip file in:

/opt/zimbra/zimlets

Then type

su zimbra
zmzimletctl install zimlet_archive_name.zip
zmzimletctl deploy zimlet_archive_name.zip
zmzimletctl enable zimlet_archive_name

 TO UNINSTALL/REMOVE:

su zimbra
cd /opt/zimbra/zimlets
zmzimletctl disable zimlet_name
zmzimletctl undeploy zimlet_name

(more…)

How to use Wordpess built-in Functions externally (in posts, widgets etc.) 1

How to use Wordpess built-in Functions externally (in posts, widgets etc.)

For our canvas lets use the Enhanced Text Widget plugin, it will let us type Javascript, Flash and even Php directly into the text box..

After you install put this widget box on your sidebar or wherever you insert the following at the top of your code.

require( '/home/my/absolute/path/wp-load.php' );

Here is a simple example which would output something along the lines of : “Hello World Mr facade”.

IMPORTANT: Remember to change the absolute path to the one for YOUR server.

<?php
require( '/home/my/absolute/path/wp-load.php' );
echo "hello world Mr ";
$current_user = wp_get_current_user();
echo $current_user->display_name;
?>

References:

WordPress Codex (get current user) : http://codex.wordpress.org/Function_Reference/wp_get_current_user

A complete list of PayPal’s fees by country 1

A complete list of PayPal’s fees by country

Fees are calculated as ‘Fee’ + ‘Fixed’:

Country Online Purchases Personal Payments Currency Conversion
Afghanistan
Albania 3.4 3.4 free
Algeria 4.9
American Samoa  –
Andorra unknown
Angola unknown
Anguilla unknown
Antarctica  N/A
Antigua and Barbuda 4.9
Argentina 5.4
Armenia unknown
Aruba
Australia
Austria
Azerbaijan
Bahamas (more…)