Home » Archive

Articles in the 1 Category

1 »

[18 Apr 2012 | No Comment | ]

For any company to start any business of their choice they have to first get a website for their company and product. It is very important to get a website for their business to promote their product and increase their sales. In this current internet world we cannot do anything without an internet. It helps us to connect to people across the globe and helps them to buy the product from anywhere. So how do you create a website for your company? Its very simple we have domain registration companies …

1 »

[17 Apr 2012 | No Comment | ]

If you are planning to start a business, have you ever wondered how secure is your data or information in the company is? How best you can protect your company information like other successful organizations. Technology has grown to that extent that anything is possible. This technology has invented a platform which is known as Sharepoint Consulting. Sharepoint is not a program to install or run on the system it’s a platform where all the other Microsoft programs, visual network, web etc come together in one place and helps the …

1 »

[26 Feb 2011 | No Comment | ]

If you want to set cron into cerberus helpdesk go into cPanel and set below command for cron jobs
“wget http://YOURDOMAIN_NAME/cron?loglevel=3″

1, Zen Cart »

[17 Jan 2011 | No Comment | ]

In zen cart that is default that you can create admin coupon to give amount deduction or free shipping ,
you can not give customer both benefit of amount deduction as well as free shipping,
to do that you have to add code in two files that are
1) includes/modules/order_total/ot_coupon.php
2) includes/templates/[your template]/popup_coupon_help/tpl_main_page.php
In file 1 ot_coupon.php
find the code as

if ($od_amount['type'] == ‘S’) $order->info['shipping_cost'] = 0;
$order->info['total'] = $order->info['total'] – $od_amount['total'];
if (DISPLAY_PRICE_WITH_TAX == ‘true’) {
$od_amount['total'] …

1 »

[28 Dec 2010 | No Comment | ]

When integrate wordpress in to zen cart using the Zen cart CEON module then we might face the problem in the URL of woprdpress pages, posts and other links.
To solve the above problem, just go to wordpress admin -> Settings -> Permalinks
From the permalink settings of wordpress admin, select Default and then Save Changes

1 »

[13 Aug 2010 | No Comment | ]

<?php
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);

// Identify the browser. Check Opera and Safari first in case of spoof. Let Google Chrome be identified as Safari.
if (preg_match(‘/opera/’, $userAgent)) {
$name = ‘opera’;
}
elseif (preg_match(‘/webkit/’, $userAgent)) {
$name = ’safari’;