Blog

Archive for August, 2009

Why Ruby on Rails?

By taking help of Ruby programming language you can manage most of the complicated aspects of developing web applications. With most of the other programming languages it becomes harder for the developers to manage all issues that occur in the web environment. To overcome these problems Ruby on Rails was introduced in the market, which later gained remarkable popularity and took web development by storm. The two basic guidelines of Rails framework are – ‘Limited Software’ and ‘Convention over Configuration’.

An application becomes competent if it is developed using less code and can be implemented easily in any environment. It has been observed that complexities in code result problems in understanding the system and maintaining it. Moreover, writing too much of code not only consumes time and effort of the developers but also complicates the debugging process of the application. Here comes the necessity of Rails, as it comes with limited software and improves the implementation process by reducing time and effort of the developers. Another approach is simplifying XML configuration. There is no need of configuring files in Rails application because it follows simple programming conventions – it can figure out everything through reflection and discovery (E.g. Rails uses intelligent reflection to automatically map database tables to Ruby objects).

Posted in: General, Open Page

Leave a Comment (0) →

FFMPEG Webhosting

FFmpeg Webhosting allows anyone to create their very own video sharing website like YouTube and Google Videos.

Webhosting company who specialize in FFmpeg Webhosting make the process easy by packaging and pre-installing the FFmpeg tools you need. These may include:

FFmpeg software for uploading, converting and encoding video files.
Fast web servers which are optimized for video streaming.
Easy installation of video sharing scripts such as Clipshare, PHPMotion, Vshare, Rayzz and OsTube.

Posted in: Hosting Service, Open Page

Leave a Comment (0) →

CPanels and other features

Apart from these facilities, other features of Shared Hosting are quite similar to VPS Hosting. While ‘Custom Control Panel’ is available in the Shared Hosting, VPS Hosting, on the other hand, offers Advanced Control Panel.

Advanced control panel is a user-friendly tool that lets you control all features of hosting account. This control panel is based on database and offers inbuilt help function on every page of the control panel.

Components of VPS Control Panels are:
System Administrator – it provides the facility to manage users, groups, system services and other necessary operations in a VPS environment.
Workgroup Administrator – it provides the facility to manage website’s settings, file, directory, email, mailing lists, applications and other features of websites.
My Control Panel – it manages personal directory and email account of the end-users.

‘POP3 e-mail account’, ‘Web based e-mail’, ‘E-commerce’ and ‘immediate account setup’ are some common features available in both Shared Hosting and VPS Hosting.
For the beginners, it is recommended to select the option Shared Hosting to host their websites. Though it is described that VPS Hosting option provides better control and security of the website, the cost of subscribing for VPS Hosting matters. In a Shared Hosting environment, all websites use common operating system and server resources. This is the main reason behind the slow performance of the web server and is regarded as a drawback of Shared Hosting option. But still it is true that both ‘Shared Hosting’ and ‘VPS Hosting’ have their own advantages.

Posted in: General, Open Page

Leave a Comment (0) →

VPS Hosting

VPS stands for Virtual Private Server. VPS is the collection of virtually separated entities of a single server. VPS Hosting environment has the ability to host unlimited domains through a web server. Security and Root-level accessibility – these are two reasons that make Virtual Private Server hosting – a popular web-hosting platform. It has been observed that websites designed for individual or business processes require customized solution. VPS hosting is the right option for clients, who require ‘Super-User’ accessibility, customized solution and necessary security.

Posted in: General, Open Page

Leave a Comment (0) →

Select the right web hosting plan

Be it a small business or a MNC (Multi National Corporation), choosing a right hosting option is vital and this task becomes easy if you have a little knowledge about the hosting technologies and services. Web Hosting Service is broadly divided in two categories – Dedicated Web Hosting Service and Shared Web Hosting Service.

Dedicated Web Hosting Service allows the client (individual/organization, who want to host their websites) to take full control of the server including the operating system and hardware. Dedicated Web Hosting Service does not allow multiple clients to host their website from a single server. On the other hand, Shared Web Hosting Service provides the facility to host multiple websites from a single server. Compared to ‘Dedicated Web Hosting’, the option ‘Shared Web Hosting’ is quite economical and has become popular across the globe.

To satisfy different choice and preferences of the clients, technological improvement has taken place in this arena to fill up the gap between Shared Web Hosting Services and Dedicated Web Hosting Services. This has given the birth of ‘VPS Hosting Service’. Though it is true that ‘VPS Hosting Service’ and ‘Shared Hosting Service’ supports hosting of multiple websites through a single Web Server, but they are different from technological aspect.

Posted in: General, Open Page

Leave a Comment (0) →

What is Wap?

Wireless Application Protocol (commonly referred to as WAP) is an open international standard[1] for application layer network communications in a wireless communication environment. Its main use is to enable access to the Mobile Web from a mobile phone or PDA.

A WAP browser provides all of the basic services of a computer based web browser but simplified to operate within the restrictions of a mobile phone, such as its smaller view screen. WAP sites are websites written in, or dynamically converted to, WML (Wireless Markup Language) and accessed via the WAP browser.

Posted in: Mobile Web (WAP), Open Page

Leave a Comment (0) →

5 CSS3 Design Enhancements That You Can Use Today

thumb

Cascading Style Sheets (CSS) is the language of Web design, and the next generation of CSS design properties is just chomping at the bit to be released.

Are you eager to start using them, but don’t know where to start?

Although many of the new properties are not yet “official”, some browsers have already implemented many of the features of the coming CSS Level 3 specifications.

The problem is that many browsers—most notably Internet Explorer—has not.

The trick to using these new CSS3 features is to treat them as design enhancements.

A design enhancement is any flourish you add to your site designs that increases its visual appeal without diminishing its usability if the style is not rendered.

This can be a tricky call, with there being a fine line between enhancement and not diminishing usability:

  • Design Enhancement Example: Using border-radius to round box corners, creating a more appealing design. However, if the corners are not rendered, the site is still just as usable.
  • Example of Design Diminishing Usability: Using an RGBA color value in the backgrounds of overlapping elements that all need to be visible, expecting the upper elements to be semi-transparent. This will make it impossible for some people to use the site, thereby diminishing the page’s usability.

Let’s take a look at 5 different CSS3 properties that you can start playing with right now, provided that you always keep in mind that they should only be used to enhance your design, and not be relied upon for site usability.

This is the original design, before applying any CSS3 design enhancements

1-original

1. Transparent Colors

Supporting Browsers: Apple Safari 4, Firefox 3.0.5, Google Chrome 1

RGBA allows you to control the opacity of a particular color fill, whether it is for text, background, border, or shadow colors.

Setting the color transparency requires you to specify the color value using RGB notation—hexadecimal values are not allowed—with an additional A value being from 0 (transparent) to 1 (opaque).

rgba(0-255,0-255,0-255,0-1)

You should also include a simple RGB, or hex color value as a fallback for other browsers to use:

.topbox {
color: rgb(235,235,235);
color: rgba(255,255,255,0.75);
background-color: rgb(153,153,153);
background-color: rgba(0,0,0,0.5);
border-color: rgb(235,235,235);
border-color: rgba(255,255,255,0.65);
}

The good news is that there is also a fallback solution—at least for background colors—in Internet Explorer, which supports transparent colors using a filter and conditional styles:


Note: Due to the fact that WordPress could not display the above code in the content of this post, it has been included as an image, therefore you will need to type this code manually.


2-color

2. Rounded Corners

Supporting Browsers: Apple Safari 3, Firefox 1, Google Chrome 1

Border radius sets the curvature of each corner of the box, as if there is an imaginary circle on the corner with a specific radius (r):

border-radius: r;

Although border-radius will be a part of the coming CSS3 specification, both the Mozilla Project (Firefox) and Webkit (Safari and Chrome) implemented their own versions which have to be included for maximum cross-browser compatibility:

-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;

You can also set the radius for the corners individually:

CSS3 Mozilla WebKit

border-top-right-radius

-moz-border-radius-topright

-webkit-border-top-right-radius

border-bottom-right-radius

-moz-border-radius-bottomright

-webkit-border-bottom-right-radius

border-bottom-left-radius

-moz-border-radius-bottomleft

-webkit-border-bottom-left-radius

border-top-left-radius

-moz-border-radius-topleft

-webkit-border-top-left-radius

border-radius

-moz-border-radius

-webkit-border-radius

3-borderradius

3. Text Shadows

Supporting Browsers: Apple Safari 3, Firefox 3.0.5, Google Chrome 1

Add a shadow underneath any text, controlling the left/right and up/down offset, as well as the color:

text-shadow: x y blur color;

You can combine the text shadow with a transparent color to control the darkness of the shadow:

text-shadow: -2px 2px 10px rgba(0,0,0,.5);

You can also include multiple text shadows just by repeating the values separated by a comma:

text-shadow: 0 0 10px rgba(0,255,0,.5),
-10px 5px 4px rgba(0,0,255,.45),
15px -4px 3px rgba(255,0,0,.75);

4-textshadow

4. Box Shadows

Supporting Browsers: Apple Safari 4, Firefox 3, Google Chrome 1

Adding a drop shadow to any box on the screen follows the same format as adding a text shadow:

box-shadow: x y blur color;

Just like text-shadows, Mozilla and Webkit have implemented their own vocabulary in advance of the
final CSS standard:

-webkit-box-shadow: 0 0 10px rgb(0,0,0);
-moz-box-shadow: 0 0 10px rgb(0,0,0);
box-shadow: 0 0 10px rgb(0,0,0);

You can add multiple shadows just by including multiple values separated by spaces:

-webkit-box-shadow:
0 0 20px rgb(0,255,0), -10px 5px 4px rgba(0,0,255,.45),
15px -20px 20px rgba(255,0,0,.75);
-moz-box-shadow: 0 0 20px rgb(0,255,0), -10px 5px 4px rgba(0,0,255,.45),
15px -20px 20px rgba(255,0,0,.75);
box-shadow: 0 0 20px rgb(0,255,0), -10px 5px 4px rgba(0,0,255,.45),
15px -20px 20px rgba(255,0,0,.75);

5-boxshadow

5. Multiple Backgrounds

Supporting Browsers: Apple Safari 1.3, Google Chrome 1

Including multiple background images in a single element simply requires additional sets of
values to be added to the background properties, separated by commas. You should include a single
background image as a back-up for other browsers:

background-image: url(astro-127531.png);
background-image: url(astro-127531.png),url(Hubble-112993.png);
background-repeat: no-repeat;
background-position: bottom left;
background-position: bottom left, top right;

6-multiplebackground

SPECIAL BONUS

Rotate Anything!

Supporting Browsers: Apple Safari 4, Firefox 3.5, Chrome 1

Although not even a part of the CSS3 specification yet, Webkit has implemented its own
transformation property, which Mozilla is following suit with. Transform can include a number
of different value types, but one of the most intriguing—and useful as a design enhancement
— is rotate:

-webkit-transform: rotate(-15deg);
-moz-transform: rotate(-15deg);

7-rotate

Appearance as seen in browsers that do not support CSS3 (e.g. Opera 9)

8-nosupport

Do you use any design enhancements in your websites using CSS3? Please share your examples with us!

Posted in: Open Page, Web Design

Leave a Comment (1) →

17 Reason why you should choose XeonBD as your hosting provider !!

We take your web hosting seriously.

Please take a moment to read the following 17 reasons why you should do business with us. They are a simple summary of how we operate our business and our obligations to your business.

(1) Instant Activation & Setup. Our advanced system creates new business web hosting accounts automatically 24/7/365. Your new business web hosting account with XeonBD will be created instantly after you make an order and have made an approved payment. You will then receive your account activation email along with account login details so that you can start uploading and managing your new account.

However, we do restrict automated account creation from high-risk countries. For those countries, account activation will be reviewed within 24 hours (this procedure takes place to prevent fraudulent transactions from occurring).

(2) Unconditional No Questions Ask 30 Day Money Back Guarantee.
At XeonBD customer satisfaction is our main priority! We know that all hosting companies promise reliable webhosting services and support. However you really have no way of knowing the quality of the service until you pay for hosting.

We are so confident all XeonBD’s hosting plans have an Unconditional 30 Day Money Back Guarantee: If for whatever reason, you become unsatisfied with our hosting services within the first 30 days of your account activation, we will refund your hosting fees, no questions asked, excluding setup fees, domain registration fees, addon/upgrade fees and overages. Setup fees are refundable only if the account order is canceled prior to account activation. Please see the Acceptable Use Policy (AUP) section (Cancellation) for complete details.

(3) 100% Total Customer Satisfaction Guarantee. While our competitors force half – or full-year commitments, here at XeonBD you can pay month-to-month or the option of pre-paying 3 months – 5 years in advance to receive a moderate – hefty discount. We even provide an Unconditional 90 Day Money Back Guarantee for your peace of mind.

All our server packages come feature-rich, Software and Applications, 2 Hours Free Phone Consultation and real live 24 hour free technical support.

Because of our guarantee for “100% customer satisfaction”, we have grown quickly to hosting sites for businesses in over 50 countries since 2005. If your site requires secure server, FrontPage, Real Audio/Video or any of our other cutting-edge features then XeonBD is the only choice for your web hosting needs. We guarantee that you will NEVER find any other hosting company that offers all the same premium services for the same competitive prices.

You might find many “cheap” hosting companies on the net, but can you trust them, can you talk to someone live, or can you even reach them? Can you afford to trust your online business with them? We host more companies, organizations, governmental and individual business web sites than anyone else!

(4) Rock Solid 99.99% Uptime Guaranteed. We guarantee that your website will be up all through the year! Any time of the day or night, 365 days a year. We work hard to run a solid, hassle-free service.

At XeonBD we are serious about ensuring that your online business is always accessible. We realize that you are serious about your online business. We have taken great strides to provide reliable access to you. Our bandwidth saturation average (a measure of how crowded our systems are) is less than 30%. We have 1500GB of Pure, High-Quality Bandwidth lines with diverse routes to the Internet Backbone, ensuring our servers always have an active connection to the Internet. BGP Peering allows us to automatically re-route traffic away from “Internet Traffic Jams.” This means when one part of the Internet slows down your site will not be caught in the bottleneck. All of our servers are fast Quad Intel Xeon based technology with 8Gb ECC/Reg DDR Ram. We keep our servers at less than 50% capacity so even when traffic peaks, our servers won’t overload.

However, anything is possible. Guaranteeing 99.99% uptime isn’t about eliminating the possibility of downtime. It’s simply about making it such a small possibility that we can confidently guarantee 99.99% uptime. On even the most advanced systems with the most experienced staff like ours downtime can accure and when we cannot guarantee 99.99% reliability our Uptime Guarantee on refund credit takes over. If downtime is lower than 99.99%, we will give your account a refund / credit on hosting charges for that particular time of that effected month. Please read the Service Level Agreement (SLA) section for complete coverage details.

(5) Superior Support. We Guarantee to always provide 24/7/365 Customer Service! Daytime query or night-time emergency, we are ready to help you.

(7) Confidence and Trust. We are in good standing with our customers and our customers like us too! Look to the left of the web page to verify our report or verify our customer testimonials.

(8) Expert Experience. We Guarantee to be here tomorrow In an industry where continuity is truly critical, it pays to go with a company that has experience and that will be around in years to come. XeonBD is such a company with thousands of customer domains hosted from all over the world.

(9) Site Protection. Our Servers and site is hacker tested and every business hosting plan we offer includes Spam and virus protection. Professional hosting should include commercial software (not shareware) to protect you.

(10) Constant Availability. We use only premium grade bandwidth. We do not restrict server performance, bandwidth, or oversubscribe data in any way. We simply provide premium bandwidth that meets any load in a cost-effective user-pays model. There are no hidden conditions, ratios or excessive bandwidth penalties. There are no deceptive “free data” offers.

(11) Price Freeze Guarantee. We guarantee you that for as long as you are a continuous customer, in good financial standing, and you keep renewing your contract for business web hosting services, you will be locked into paying today’s web hosting prices forever. If your web hosting package gets upgraded with new features, more web space or bandwidth we will add these additional new services to your account for Free while keeping your current price in tact. This guarantee applies to all XeonBD business web hosting account plans.

(12) Certainty of your Applications. If we say your applications will run, they’ll run. Particularly applications that might prove difficult elsewhere. XeonBD is one of only a very few business hosting providers in the USA to offer unlimited specialised application support, right down to code level if you need it.

(13) Sure Business Growth Path. Start as small as you need to be. Grow as big as you want to be. We’ll help you get there. XeonBD guarantees never to “lock you in”, so you’ll never be limited by inadequate or outdated technology. If you need an upgrade, just go to your control panel and do upgrade your plan with just the click of your mouse.

(14) Unmatched Reliability. We provide all of its clients with cutting-edge hardware, software and technology. All of the XeonBD servers are custom-built with the most reliable equipment for higher performance. Best of all, there are less than 256 domains hosted on each of our servers, unlike the majority of our competitors who host anywhere from 500 to 1000 domains per server. With such a small number of domains on each server there is a lower server load, disk access time decreases and network speed increases.

(15) Lightning-Fast Network Connectivity. We have chosen five of the best backbone providers to relay all traffic. This means that all our clients have a 99.99% uptime guarantee. The network is designed around redundancy and efficiency. BGP4, five DS3 lines and one OC3 connection to diverse backbones and a fully 100 Mbps Cisco Switched network make the XeonBD network top-notch.

(16) Custom Hosting Environment. We strongly believe that the environment where the servers are located is as important to our client’s websites as the services our clients are receiving. The XeonBD Data Center is geographically located near an Internet Exchange Point to minimize traffic hops and optimize performance.

Our Data Center features a Power Management System which includes 2.5 megawatts premise power, a customer dedicated power backed up by an Uninterpretable Power Supply (UPS), a 235,000 watt diesel generator, customer dedicated circuit breaker protection and scalable customer power. We also have fire zones above the ceiling and below the floor, specialized heat/smoke sensors and automatic fire department notification. Our Mainframe Style Construction includes HVAC, separate cooling zones, and seismically braced racks. Our server hosting facility also uses scalable areas; cabinets, full open racks, shared open racks, and are secured by motion sensors, key-card access, video camera surveillance, a security breach alarm, and 24/7 police monitoring.

Our Network Operations Center is a high security facility, and no customer is permitted to enter this area. Certified technicians are monitoring the equipment 24 hours a day.

(17) Innovative Support Technology.
We currently host over 2,000 business customers whose skills range anywhere from novice-level to experts. These range from personal websites to Fortune 500 corporations. The XeonBD customer service center is staffed 24 hours a day to offer assistance in any area.

When the call center cannot resolve a customer’s issue, the dedicated Customer Care Team steps in to facilitate the resolution of any problem, whether billing, technical or administration. At no point does a XeonBD customer ever feel alone; they know that we are standing by waiting for their call. With 24/7 technical support, 24/7 online support chat and a dedicated online support center, XeonBD is constantly rated in the Top 10 for its support and dedication.

Go on and choose a hosting plan and open your account today. We invite you to test our power, speed and reliability, test our excellent technical support, test our advanced easy to use SSL secure Next generation advanced cPanel hosting control panel.

What ever your choice you can rest secure in the knowledge that if we do not provide the service we promise, you do not have to pay us a single cent. And remember, at XeonBD there are never any setup charges with our hosting packages and your accont will be set up instantly!

Posted in: Announcement, General, Hosting Service, Open Page

Leave a Comment (0) →

What is Ruby On Rails?

As a newer solution that is designed to help increase the speed with which web sites can be created, Ruby on Rails has both its supporters and detractors. Here is some background on how Ruby on Rails works, and what people have to say about the application.

Known popularly as ROR or Rails for short, Ruby on Rails is a web application framework option that seek to use logical steps to help create workable code for the creation of web sites. As an open source project that is written in Ruby program language, Ruby on Rails uses the Model-View-controller design pattern as the foundation for how the framework functions. Ruby programming language has the advantage of being relatively easy for anyone to learn and also follows a logic sequence that many people find easy to follow.

There are two basic principles that govern the way that Ruby on Rails works. The first is often referred to as DRY, or Don’t Repeat Yourself. The idea is to keep the language as simplistic as possible, so the code remains simple as well. This means that the person writing the programming does not have to specify column names in class definitions. Ruby on Rails will simply pull the information from the database source.

The second principle is COC or Convention over Configuration. What this means is that the programmer can rely on defaults on the naming of the classes and tables. For instance, if there is a class that is named “date” in the model, then the related table in the database source will automatically be named “date.” This means that the programmer only has to take the time to name tables if he or she wishes to assign a different name to the table. Use of this logical solution can result in speeding up the process of writing the code and getting the web pages ready to go.

Supporters of Ruby on Rails hail the solution as a great way to maximize time spent on developing web pages, as it makes the mechanics of the process simpler. Ruby on Rails is also viewed as allowing more energy to be directed at the creative end of the process, providing more time to look for creative ways to have the web site stand out among so many.

At the same time, detractors of Ruby on Rails say that the solutions stifle the creativity of the programmer, as it creates a cookie-cutter predilection in the process. Dismissed as nothing more than a rigid software option that does not really save much in the way of time, opponents sometimes refer to Ruby on Rails as opinionated software.

In spite of the controversy, Apple announced in August 2006 that the company would begin to ship Ruby on Rails with the Mac OS X v10.5 beginning in October 2007. Once Ruby on Rails is on the mass market, it will be interesting to see how consumers react to the ease of use and the defaults built into the framework.

Posted in: Open Page

Leave a Comment (0) →

Master Reseller Hosting first time in Bangladesh !!

XeonBD is a Bangladeshi web host specializing in domain registration, web hosting. We offer shared, reseller and master reseller hosting packages. And we have provided powerful, reliable web hosting ever since – all backed by responsive support. We’re industry leaders, offering the best technology and unsurpassed technical support.

XeonBD is the first webhosting provider based on Bangladesh who is offering master reseller hosting plans to Bangladesh and worldwide. XeonBD’s master reseller hosting is best choice for all as its flexible and can be added to any time to any of our reseller hosting plan as add-on.

Total Dedication to Customers’ Satisfaction

Quite simply, we provide quality telephone and online technical support for our web hosting:

Knowledgeable. If we cannot answer your question immediately, we will find someone who can. Fast to solve our clients problem

Experienced. Our web hosting knowledge is first rate, of course. But we also try and understand your challenges, so we can help you better. .

It’s our superior support that sets us apart. We pride ourselves on offering you the best and the most reliable support in our country. We’re there when you need us.

UP TIME: 99.99% Guarantee 99.99% Uptime Guarantee on all of our Web Hosting, Reseller Hosting, and Dedicated Server packages!

SUPPORT: 24 x 7 Live Support 24×7 Support 365 days a year via Phone, Live Chat, Instant Messenger, and Helpdesk!

MONEY BACK GUARANTEE: 30 Days Money Back Guarantee 30-Days Money Back Guarantee on all packages in case you’re not satisfied with our service.

OUR SERVER

After loads of studies and analysis XeonBD has started offering the world’s best Hosting Service. We have implemented the best technologies to take high load and get it balanced at loaded situation. We are also using the world’s best hardware’s and networks.

Server Specification

Intel® Core™2 Quad Processor @ 2.66 GHz
8 GB DDRII RAM
2 x 1,000 GB SATA II HDD
Firewall Protection
Brute Force Detection and Evasion
Apache Dos Prevention/Protection
E-Mail Virus Filtering, lots more
Premium Bandwidth Supplied By several provider (Quality Assured with ten 10G Network).
Nightly Offshore and on site Backup.

To know more about our server and our data center please visit https://www.xeonbd.com/datacenter-server/index.php

WEB HOSTING

Power your Web site with a feature-packed Web hosting plan. We offer high quality, affordable, and reliable web hosting services. Our All-Inclusive plan includes great features, fast and secures servers, multiple free tools, and high quality customer service!

Master Hosting Reseller Plans:

XeonBD’s master reseller hosting plan comes with next generation web hosting hosting environment ever offered by any web hosting provider based on Bangladesh and XeonBD’s master reseller plan allow the user create both end user hosting account as well as sub reseller too.
Master Reseller -1
All features unlimited
1 GB (1,000 MB) Disk Space
35 GB (35,000 MB) Bandwidth
Unlimited Sub Domain
Unlimited PoP3/SMTP/IMAP Email
Unlimited MySQL Database

12-Month BDT 7,000 (105.00 USD)

Master Reseller -2
All features unlimited
5 GB (5,000 MB) Disk Space
70 GB (70,000 MB) Bandwidth
Unlimited Sub Domain
Unlimited PoP3/SMTP/IMAP Email
Unlimited MySQL Database

12-Month BDT 9,000 (135.00 USD)

Master Reseller -3
All features unlimited
10 GB (10,000 MB) Disk Space
150 GB (150,000 MB) Bandwidth
Unlimited Sub Domain
Unlimited PoP3/SMTP/IMAP Email
Unlimited MySQL Database

12-Month BDT 12,000 (180.00 USD)
Our master reseller hosting plan includes following major features:

Both PHP 5 and PHP 4 support, Ruby On Rails, Cronjobs/suPHP/SuExec
RVSitebuilder, FFMPEG, Mplayer, Mencoder, Flvtool Support
Video Sharing / Streaming Scripts Support
Fantastico Installer, Advanced WAP (wml) support

XeonBD’s shared cPanel hosting plan can be found at:
http://www.xeonbd.com/pricing-regular/linux-hosting/index.php

XeonBD’s reseller hosting plan can be found at:
http://www.xeonbd.com/hosting-reseller/index.php

Contact Us:

Client Management & Product Order Area:
https://www.xeonbd.com/clients/index.php

Multiple payment method accepted:

  1. 1. Online:
    1. PayPal
    2. Major Credit Cards
    3. 2. Offline:
      1. Cash / Cheque / Money order
      2. Direct Bank Transfer

Client Management & Product Order Area:
There are multiple ways to contact us:

1. Email: sales[at]xeonbd[dot]com
2. Support Ticket: XeonBD – Submit Ticket
3. Live Chat on sales[at]xeonbd[dot]com [MSN/YAHOO IM]. Skype: XeonBD
4. Sales Hot Line: 88-019-77-XEONBD (936623)

Thanks for your interest in XeonBD, we look forward to doing business.

XeonBD, Bangladesh
web: www.xeonbd.com
blog: blog.xeonbd.com
twitter: www.twitter.com/xeonbd

Posted in: Announcement, Hosting Service, Open Page

Leave a Comment (0) →
Page 1 of 2 12