Posts

How to remove alfrecso footer.

Edit file footer.css located in <alf_home>/tomcat/webapps/share/components/footer Add following code : .sticky-push, .sticky-footer {display:none !important;} #bd {padding-bottom:0px !important;} Looking for how to modify footer ? http://mcqueeney.com/blog/how-to-modify-the-alfresco-share-page-footer/ Looking for how to customizing Alfresco for demo purpose? https://angelborroy.wordpress.com/2015/04/24/customizing-alfresco-for-demo-purposes/

How to migrate magento live site to localhost or another server.

Here is the step on how to migration live magento site to local : 1. Copy all the file from server and paste in root local server. 2. Export the database from phpmyadmin. 3. Create a database in local with the same name with live server database and import the database. Note : after we installed magento site , it will create one local.xml file , with contain configuration of host and database ( host,data base name , and password ). For this case in file we have copied from server is installed side, ofcourse it has local.xml file. 4. Open the local.xml file , check username and password. 5. Add user to database in phpmyadmin contain user and password according to local.xml 6. Delete Var folder from root. 7. Flush cache magento with :    a. add a file .php named : flush.php       contain : <?php  require_once 'app/Mage.php';  $app = Mage::app();   echo "<pre>";   if($app != null) {        echo "The ap...

Bootstrap Theme

http://ilovethisfame.com/ http://webapplayers.com/inspinia_admin-v2.3/

What-i've-learn-so-far

1. Limesurvey 2. Drupal - CiviCRM - Civibooking 3. OpenERP 6 4. Odoo 8 - Odoo 9 5. Apache Cordova - Ionic Framework - Gimbal Beacon - Django - SQLite (Not to mention AngularJS, Python, Java, SQL, REST API)

What is Cache, Cookies, and History

What is Cache, Cookies, and History? Each time you access a file through your web browser ( Internet Explorer, Firefox, Chrome , etc), the browser caches (i.e., stores) it so it doesn't have to keep retrieving the same files or images from the remote web site each time you click Back or Forward . You should periodically clear the cache to allow your browser to function more efficiently. A cookie is a file created by a web browser, at the request of a web site, that is stored on a computer. These files typically store user-specific information such as selections in a form, shopping cart contents, or authentication data. Browsers will normally clear cookies that reach a certain age, but clearing them manually may solve problems with web sites or your browser. A browser's history is a log of sites that you visit. When you press a browser's Back button, you are moving back one entry in the history log. Browsers will normally clear history at regular intervals,...

NGINX redirect configuration

http://bojanweb.com/nginx/2014/12/04/nginx-ssl-non-www-configuration/ http://www.nginxtips.com/nginx-redirection-www/ https://www.digitalocean.com/community/tutorials/how-to-redirect-www-to-non-www-with-nginx-on-centos-7 http://stackoverflow.com/questions/7947030/nginx-no-www-to-www-and-www-to-no-www https://rtcamp.com/tutorials/nginx/www-non-www-redirection/ https://bosnadev.com/2015/06/26/how-to-redirect-www-to-non-www-and-vice-versa-with-nginx/ http://serverfault.com/questions/634415/nginx-https-www-to-non-www-redirect-issue http://serverfault.com/questions/624848/redirect-non-www-to-www-over-ssl-with-nginx http://serverfault.com/questions/35955/how-to-get-nginx-to-redirect-from-www-to-non-www-domain

How to setup a VPS using Ubuntu 14.04

https://chubbable.com/build-a-virtual-private-server-using-ubuntu-14-04