“How to create strong password”

28 August 2010 by blog@riyad, 5 Comments

Hello Everybody,
Here is introducing myself “blog@riyad” as a new blogger with new ideas!
Xeon’s official blog is really a good place for the blogger’s who wants to share there ideas specially related to  “e”!
I mean internet,information technology and so many more…

Now a days,we all have to create many types of account to log in in many site,and for this reason Individual’s user name  & password is very much important thing to remember.In case of mailboxes or social communicating sites,we all have very important mails,important data and many more.So it is very important to create a strong password so that anyone can’t access our account and get all important information of us! So i like to give some tips to all so that we can make our account info’s safe & secure!

  • First of all, we have to think a password that is easy to remember but strong to break by others.Cause if we just think only to make it strong and make it critical,then there is a chance to forget it!
  • Password should contain more then 8 characters cause many sites requirement is this.
  • Password should be a  perfect combination of  both letters and numbers cause it is difficult to guess by others.
  • Password should not related to anyone’s personal matters! Cause it is easy to find the password by others who knows about u!
  • Password can be related to old memories so u can remember it easily !
  • Password should be a word which is structured backward.example,”hsedalgnab”(original word=bangladesh).
  • Password should not match the user name or full copy of it.
  • Password should not contain hyphen,full stop,comma,or any other punctuation marks.
  • Password should not saved by the browser of a PC which is use  by many users.
  • Password should not be same of other accounts of a user who uses many account.

That is all I have to say to all who wants to make a strong password and keep their account safe & secure!!

Take care.

Give less and Get more

24 August 2010 by nowshad, 2 Comments

It is our pleasure to have some talented customers/partners with us in these days of hardship and scarcity.

We all know a proverb that “Survival for the fittest”, yes in these days those will survive who are fit and able to keep their existence on earth with full dignity and boldness as well as on internet world same words echo.

We are happy to invite our customers/partners in our first client participation program called “Give less and Get more” which is actually an idea sharing program in our official blog. It is very much easy that you just register yourself in our blog, post article in a continuous flow through three months and you will win many attractive prizes. The terms are very simple that we are mentioning in the following:

  • Your article should be relevant to our services (Domain, Hosting, Server, IP, SSL, E-Commerce, Web Design) and some other relevant categories article you can submit are related to Technology, Programming Language, Latest Software or IT services.
  • Do not spam and do not post warez link otherwise you will be banned.
  • Do not copy and paste from other article that may violate the copyright laws and result you banned forever.
  • We will track all users’ articles posting and verify it by human. Three (3) selected article writer will be rewarded by exclusive prizes.
  • After 3 months all the blog post will analyzed and winners name (1st, 2nd, 3rd) will announced. Judgment will made upon quality of post, usability of the post, most read post, useful comment on the post, search engine impression upon the post etc. For making the judgement process transparent we’ll invite some of our experts client/partners to take this responsibility.

Some tips that may help you:

  • Do not stumble upon the flow of your article posting and keep a rhythm.
  • Use wiki reference and research on internet before posting article.
  • Make SEO friendly article that will help you to be in the top position on the program.
  • Search our blog before posting an article because duplicate article may cause harm.
  • More you’ll post more opportunity you’ll get to become a winner.

That is all for this moment from us. If you have any question related to this program than feel free to comment on this blog post. We will fulfill your thirst.

Hope this program for you will be able to give you a extra excitement and also help you to enrich your knowledge as well as our every blog readers.

Custom PHP configuration using php.ini

24 August 2010 by nowshad, 1 Comment

We don’t allow php.ini access from shared hosting/reseller hosting servers. You can enable or disable various php.ini functions from .htaccess of your account, you can also enable/disable safe mode, register globals, sessions and many other functions from .htaccess.

We have a couple of shared web hosting servers running PHPSuExec reserved for clients who need access to edit php.ini file. Clients whose accounts are setup on one of these servers can create a custom file named “php.ini” and put whatever configuration settings you need to change in it, in the usual php.ini form.

If any one need php.ini access for some other reason then you can also consider our VPS Hosting plans or Managed Web Hosting Plan as you will get full root access on your VPS/Managed Web Hosting Plan along with a dedicated hosting environment to work with.

For Shared/Reseller Hosting account holder:

You may also want to make other changes to allow larger file uploads through php scripts, to set your own sessions directory for better security, to set a temp upload directory, or to change any number of other settings.

You can check your current php settings using the phpinfo() function. Make a .php file that has this one line:

<?php
phpinfo()
?>

If you want to use a custom php.ini file, there are two things to remember:

  1. Placement of the custom php.ini file is important. If you want to have the php.ini file work for just one directory (say for testing), then place it in that directory. If you want the custom php.ini file to work for the entire site, then add this line to your .htaccess file in your public_html directory: SuPHP_ConfigPath /home/username/directory/

    You can place this file anywhere you wish, even above the public_html directory so it is not web accessible.
  2. You will want to make the changes to the XeonBD already customized version of the php.ini file (XeonBD’s default php.ini file).

    Do not
    make a custom php.ini file with only the values you want to change or you will lose all the XeonBD’s default modifications.

Note: you can find the location of the default php.ini file on your server (to put in the script) by using the phpinfo() function (discussed above).

XeonBD does not make frequent changes to the standard php.ini file, but you still may want to repeat the process once in a while. You could set the scripts to run via cron every night, then you would know you always have the latest revisions.