Skip to main content

Posts

Showing posts from April, 2018

How to change language of camtasia 9 to english (without understanding the previous language)

Windows and Mac os Just go to your installation folder ex.: c:\Program Files\TechSmith\Camtasia 9\ and rename the folder of the current language into anything else or force the folder to be non usable/writeable. For example, with german: c:\Program Files\TechSmith\Camtasia 9\de-DE The best solution is to download the trial from the official website that is in English language and when you can choose the language while installing

How to get the Zend Framework

How to get the Zend Framework (1) version from a standalone file. create your index.php and echo the 'VERSION' const or just open Zend/Version.php for Zend 1 <?php    require_once 'Zend/Version.php';    echo Zend_Version::VERSION; ?> for Zend 2 <?php    require_once 'Zend/Version/Version.php';    echo Zend\Version\Version::VERSION; ?>