cPAnel has not “aliases” or “nickname” facility as Google or standard *nix mail system have. The way to work around is to use the forwarding option. How it should work: – create an email address for example mymail@olala.com.au – go …
IE9, FF4 – something is going wrong
What was working perfect in Internet Explorer 8.x and Firefox 3.x is not working the same in the new versions. Problems appears in Zen Cart – Light box adds on (IE9 just ignore javascript ) and FF4 and Chrome display …
Additional images – tabbed module – bug
Additional images are not shown – ZenCart Tabbed Products Lite module Cause – file is not found Check if the file exists in your folder – file names array is not built. if you upload files with CAPITAL extensions like …
Website seen by humans vs. website seen by search engines
When you’re deciding to create a website you think about how to make this website attractive to catch the people that accessing him, but to see website must be known, optimized for search engines. The website is seen by the …
Alt vs Title
Alt and title attributes increase your site’s usability level and promotion possibilities. The alt and title attributes, when used with images, are often the source of many questions, because these attributes affect visitors and search engines. The alt attribute is …
WordPress 3.11.x – problems
There are no custom fields supported into administrative area. You can still use any custom field like before but you must manipulate name and values directinto database There are no history for posts /ages supported but you can extract any …
Manage Coupons – Zen Cart based ecommerce system
System: OLALA e-Commerce system – standard version (based on Zen cart) Licence: Commercial Company who request it: The French Organic Company (Melbourne,VIC) How to manage Coupons: Any coupon can be : – used a one or more times by one …
Jquery, Prototype and third part javascript frame work
What’s happening now is close to madness.. sometimes. Anyway, any web service provider / developer work around this issue and the consumers assume the risk he may pay double or triple. Facts: 2009 September – we put on the market …
Deal of the Day – Zencart module
Module name: Product of the day (Deal of the day) Build for: OLALA e-Commerce system – standard and enhanced version (based on Zen cart) Licence: Commercial Company who requested it: The French Organic Company (Melbourne, VIC) Sold in Australia, Europe …
How to chose your mobile (device)
Not many years ago to choose your mobile was more or less an issue of size/colour/brand/money. Now if you own a business, before buying a mobile it will be good to consider initially two main aspects: What platform are you …
SSU module and .htaccess
All looks good and it works as long as your ZenCart is imstalled in the root. Problems appear when you have ZenCart installed in /shop folder for example. To understand better I will take and example: website: olalawebsite.com/shop absolute path …
Your store online on Facebook
There are two ways you can have it: 1. Your online store customised for Facebook (template) is running on your domain name for example: http://mydomain.com.au/facebookshop You create a tab into your Facebook commercial page named “Shop” and using FBML for …
HTML5 – replacement of Adobe Flash?
This article is written because I have got this message/question from two different people, one of them is one of our clients. There is a confusion about HTML 5 and “animation and animation interactivity” with/without Adobe Flash. The HTML 5 …
SEO in WordPress
There are a couple plugins which allow to have or build automatily any page/post Title, Description(and keywords). A few words about WordPress from SEO perspective: – WordPress is a CMS build as a tool for editors and it is ready …
What really means to have a website?
There are two way of being present on the Net: a) as part of one or more social networks where you can really spend a good time. You may play; watch movie, chat or just browsing here and there. b) …
Adobe Flash replaced by a new technology?
Adobe Flash and Apple has something to share and it seems to be a “war” between the two. One of our clients was pretty upset he is not able to see any flash element on his iPad. The USA Apple …
Categories listing – Zencart
Basic files:used to display categories listing (caegories which have subcategories) /includes/YOUR_TEMPLATE/templates/tpl_index_categories.php Here is displayed categ image and description if exist and are enabled to be displayed. On #35you have: require($template->get_template_dir(‘tpl_modules_category_row.php’,DIR_WS_TEMPLATE, $current_page_base,’templates’). ‘/tpl_modules_category_row.php’); /includes/YOUR_TEMPLATE/templates/tpl_modules_category_row.php From now on is simple, there will …
Make an e-commerce website visible on the Net
E-commerce websites have different behaviour and are considered in a different way when I compared with “blog like” websites. For an e-commerce website there are three main aspects which must be considered: 1. SEO (keywords, tile, url, meta tags) Analyse …
Pages and IDs – WordPress
1) Get Current page/post ID: get_the_ID() is handy for templates in conjunction with the get_page and get_post functions. Using $post, the ordpress post global object global $post; if($post->post_type == ‘page’){ echo ‘ This is a page. ID= ‘.$post->ID; } elseif($post->post_type …
Transition to Apple (from no matter where)
Heavy windows users, like I am, may be very happy with a new MAC (apple) on their desk like I was. Anyway the transition is not quite smooth. 1) Where is the Insert key mate? Initially I supposed I took …
Redirection http://www to http://
# 301 redirect all domain request RewriteCond %{HTTP_HOST} ^www.YOURDOMAINNAME$ [NC] RewriteRule ^(.*)$ http://YOURDOMAINNAME/$1 [R=301,L] RewriteCond %{HTTPS_HOST} ^www.YOURDOMAINNAME$ [NC] RewriteRule ^(.*)$ https://YOURDOMAINNAME/$1 [R=301,L]
Commercial page on Facebook
If you have a business then a commercial page on Facebook can only help your business. To create you need at least 25 people to like your page and then you must go to http://facebook.com/username and assign a commercial name …
Google map API Key
If you get this error message it means you are using API V2. In Version 2 Google ask to register to be able to use Google map embedded into your website (except localhost). In version 3 you do not need …
ID and Name – INPUT
INPUT (in form) 1) To get value of a input elements based on ID : var obj = document.getElementById(‘IDname’); var val=obj.value; 1) To get value of a input elements based on Name : var obj=document.getElementsByName(“name”); var val=obj[0].value;
Flash Head – studio
They allow addition of light diffusors and sharpers and the light delivered is smoother and less harshness. Studio flash heads are big energy consumers (need big battery to be portable) See : http://www.michaels.com.au/index.php?option=com_virtuemart&Itemid=213
RAW vs JPG
RAW data is named NEF data by Nikon. RAW data can be stored on the memory card, or it can be further processed to get a viewable JPEG or TIFF Main advantage of RAW data: many of the shooting parameters …
Database – Zen Cart
Most of what you need is located into query_factory.php 1. standard way to browse extracted records ( no pagination): $sql= “YOUR SQL STATEMENT” $result_list = $db->Execute($sql) while (!$result_list->EOF) { …………….. YOUR PHP / HTML CODE …………….. $result_list->MoveNext(); } Eventually set …
htaccess – frendly URL – CMS Made simple
To have pretty URL in CMS made simple it is really easy if you don not move the website from root in a folder or on a subdomain. As long as you know what is htaccess file all is fine. …
Work with WordPress
1. Cleaning Check for the last version of WordPress From Control Panel go to File Manager in Root in www-Public Choose the website folder and clean it: Create a New Folder and Cut – Paste everything from website folder here …
Create a module – ZenCart
1) /includes/languages/english/my_module_name.php must have at least two lines define(‘NAVBAR_TITLE_1′, ‘Module Name’); define(‘HEADING_TITLE’, ‘Module Name more details’); 2) /includes/modules/pages/my_module_name Folder which must contain at least this file: /includes/modules/pages/my_module_name/header.php // This should be first line of the script: $zco_notifier->notify(‘NOTIFY_HEADER_START_MY_MODULE_NAME‘); require(DIR_WS_MODULES . zen_get_module_directory(‘require_languages.php’)); …
Google Places and Yellow Pages
Many of professional who are working in IT are using opens source: Operating System and applications. Google is one of the biggest company which are relaying and which is creating open source applications. At the same time Google has many alley …
Login, Register in Zencart
There is no init heandler for login / register The file where the user session is created / recreated is : /includes/module/pages/login/header_php.php action = process, around #84 there are interesting lines: $_SESSION['customer_id'] = $check_customer->fields['customers_id']; $_SESSION['customer_default_address_id'] = $check_customer->fields['customers_default_address_id']; $_SESSION['customers_authorization'] = $check_customer->fields['customers_authorization']; …
Home page in WordPress
Very often you can get twice” Home” in WordPress. It is happening if you wish to display entry page as a specific page for example “Home” and not a post or the standard list of last posts. To avoid problems …
Create box – ZenCart
To create a side box (left or right) for Zen Cart please follow instructions bellow. If you do not know what to write into new created files just open existing files already done. Look for them in the same folders …
Add field in products – ZenCart
Admin area: 1) Add new content which allow you to add/change data in the new fieed admin/includes/modules/product/collect_info.php Add a line, just copy and change all between <tr> …</tr> Consider <tr> …</tr> space as well. 2) Create a function which extract …
Basic storage / backup
If you have any storage device, a NAS (Network Area storage like Dlink, Qnap and so on you will need to know how to setup it. There are the following options: Single Disk Volume use every disk as separate storage …



(3 votes, average: 4.67 out of 5)