Sunday 30 December 2012

Extracting Email Headers



Email header is the information contained in every mail message which is used by mail programs to provide the user with a summary of the origin and contents of each message.
Hotmail 

Log into Hotmail.
Click on "Options" tab on the top navigation bar.
Click on the "Mail Display Settings" link.
Change the "Message Headers" option to "Full".
Click the "OK" button.
Yahoo Mail

Log into your Yahoo! Mail account.
Click the "Mail Options" link on the left-hand navigation bar.
Click the "General Preferences" link on the right.
Locate the Show Headers heading and select "All."
Click the "Save" button to put your new settings into effect.
Eudora 

Click the button BLAH BLAH BLAH in the ToolBar.
Outlook Express 4,5,6 and XP for Windows

Select the message.
Click on File menu.
Select Properties.
Click on Details tab.
Outlook 2000, XP

Right click on the message without opening it.
Select Options, then Full Headers.
Microsoft Outlook 98

Open the message and select View, then Options from the drop-down menus.
Near the bottom of the screen there is a section titled INTERNET HEADERS.
Copy the header.
IncrediMail 

Select File > Properties and then the Details tab.
Rediff Mail

Click 'Folder Options'.
Microsoft Entourage(Office X for Mac) 

Select the message in the Inbox.
Go to View > Source.
The new window will contain full headers and message text.
Alternately, go to Edit > Preferences > Mail and News.
Under the View tab, there is a checkbox for Show Internet Headers.
kmail (KDE Desktop)

Select Message.
View Source.
Copy the text from the "Message as Plain Text" window.
kmail (KDE Desktop)

Select Message.
View Source.
Copy the text from the "Message as Plain Text" window.
Pegasus Mail

Right click the message, and select Message headers...
Netscape Messenger 

Windows users, simply press Ctrl-U (meta-U in unix, ?-U on Macintosh).
A new window will open with the full message including the complete header.
Netscape Webmail 

While viewing the message, click on the yellow triangle to the right of the brief message headers. This will display the full headers along with the message body.
Operamail

Choose Options and enable [x] Show Message Headers in Body of Message.
Outlook Express for Macintosh

Select the email.
From the View menu, choose Source.
Email with full headers will be displayed.
Outlook Web Access

Left click on the letter you want to open and click on properties.
When that opens click on the Details tab.
Then on message source.
This will open the email with the full headers.
Pine

You must configure Pine to allow showing message headers. You may skip steps 1-3 below if you have performed this configuration.
From the main Pine menu, type S for Setup, then C for Config.
Use the space bar and down arrow to scroll until you reach the option [ ] enable-full-header-cmd, then type X in the box to toggle the option on.
Type E to exit Config, and Y to save changes.
The next time you read a message, type H and the full headers will be displayed at the top of the message. Type H again to hide the headers.
Pronto Mail (GTK/unix)

Click "Message" then "View Source".
Exchange

Open the message.
Choose File then Properties then Internet.
The header will be visible and will be highlighted.
Simply right click and copy it.
In some versions of Exchange, go to the File Menu > Properties > Details > Message Source.
Bat!

From The Bat email software:
Message > SaveAs > Save as Type - I.
Select Unix Mailboxes [*.mbx].
Open the file in your preferred editor, then simply copy from there.
For The Bat! v1.53b :
Select the message.
Click on the "Messages" menu.
Select "View Source".
Alternatively, you may push F9 instead of the last two steps.
AOL Mail

If the email is sent from anywhere OTHER then AOL, and you are receiving it in AOL, then open the email you want to trace, or have your client open the email, and look for the link Details. This link is usually just below the To:email in the email message. If the email is sent from an AOL user to another AOL user then our Reverse AOL Screenname search can get you the sender's information.
XtraMail 

Log into XtraMail
Click on "Options" in the Left-hand navigation bar.
Click the "Display" button.
Change the "Message Headers" option to "Full".
Click the "OK" button.

How to use custom domains for blog?

To use custom domains for blog(blogspot/Wordpress) , Register a domain first . Then
For Word press

Just change the name servers as ns1.wordpress.com,ns2.wordpress.com,ns3.wordpress.com
then change the primary domain at wordpress control panel .(wordpress.com will charge $13 for that).

For blogspot

Adde DNS A Records and cname records with googles IP [ For get updated records go to google support pages ] , then change the Domain at blog settings

How to install Applications in plesk/cpanel

To install Applications in shared hosting environment , just logon to the control panel then click on the applications icon in plesk/cpanel . select the application and click on install . Put necessary details to install applications. 

Friday 14 December 2012

Sending dynamic email from Webmails


Code bellow shows how to send emails from asp.net c#  from web servers .

 public void SendMail()
    {

        MailMessage mm = new MailMessage("from id ", "toid");
       //(2) Assign the MailMessage's properties
         mm.Subject = "sub";
         mm.Body = "message";
         mm.IsBodyHtml =true;
        //(3) Create the SmtpClient object
        //'Dim smtp As New SmtpClient
       SmtpClient  smtp = new SmtpClient("webmail.domain");
        //'(4) Send the MailMessage (will use the Web.config settings)
       smtp.Send(mm);
     }

Send sms using API and sms gateway


It is very simple code to do this . use api http request for doing that . For this you should have enough sms credit in your account  with a registered account with sms.scibero.com.

Code

======


public string apicall(string url)  // API Push
    {
        HttpWebRequest httpreq = (HttpWebRequest)WebRequest.Create(url);

        try
        {

            HttpWebResponse httpres = (HttpWebResponse)httpreq.GetResponse();

            StreamReader sr = new StreamReader(httpres.GetResponseStream());

            string results = sr.ReadToEnd();

            sr.Close();
            return results;



        }
        catch
        {
            return "0";
        }
    }




public void SendSMS()
    {

        try
        {
           
            mobile = "to number";
            message2 = "Your sms here '";
            username = "your user name";
            password = "your pwd";
            domian = "sms.scibero.com";
            senderid = "sender";
            string result = apicall("http://" + domian + "/pushsms.php?username=" + username + "&password=" + password + "&sender=" + senderid + "&to=" + mobile + "&message=" + message2);

            if (!result.StartsWith("Wrong Username or Password"))
            {
                //ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "success", "alert('Message Sent')", true);
            }
            else
            {
               // ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "success", "alert('Message Sending Failed')", true);
            }

        }
        catch
        {
        }
    }

Tuesday 11 December 2012

how to connect MSSQL or Mysql/ Connection string


Connection string means , a string of parameters that is required to establish a connection to the Remote/Local database .

This will contain  User name , Password,Server name etc

Some hosting servers , the database will be on another server , so we need to put that server name/ servers IP . Else we just put the db server as local host .

User name- is the Username created with DB

Eg :  ASP.net C# with MS SQL 2008

con.ConnectionString = "server=localhost;database=DB_MLIFE;uid=sa;pwd=admin";

Where con is the object of connection

private  SqlConnection con = new SqlConnection();

My SQL with php Connection string

mysql_connect(servername,username,password);


<?php
$con = mysql_connect("localhost","John","admin123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

// some code
?>






MS Access connection in remote server

To access MS Access database is it required MS Access installed in to the remote server through php or asp.net ?

No, You can access MS access data base without MS access installed . For this you can use ODBC connection to connect to MS access instance database .And odbc drives should be available in the server .

What is unlimited hosting?


Some hosting companies are providing every thing unlimited , is it possible and is it correct , You may think like this, Actually unlimited means you can use most of the resources that are available in the server that you are hosting . And your server has a capacity and limit , and you can use resources till less or equal to that limit .Also most of the hosting companies providing this fecility like scibero.com,godady.com, etc  

Saturday 8 December 2012

SEO will produce any positive response?


Yes, SEO is a process to convert your web pages and scripts in to an order and sequence so the search engines can list the required data to the users . Why we are doing this ? Because of that each search engines have its own algorithm to search images,data ,videos,textual matters etc , if we didn't put our website in that form it is too hard to search and find data from your website .Because a robot (Search engine spider ) is coming to look your website , and it is only a software program , so it will only catch your data according to its programmatic conditions , Remember there are many data avail be in same category on  WWW so it is very difficult to find out which is the right one . So we need to optimize our site to get listed in search engines first .

There are many process under seo .


  1. Input the following files - site maps,ror.xml files, robots.txt files, sitemap.html, rss contents etc .
  2. Arranging site contents and meta descriptions 
  3. Define all  meta properties for your website
  4. Give Alt tag for images , because there is no way to identify images from its bitmaps , so search engines need image descriptions
  5. H1 tag is necessary 
  6. Geo tag is not necessary , Google said that they are not considering geo tag because of that most of the sites are copied geo tags and it it does not contain any correct information .
  7. Submit your website in all available search engines
  8. Advertise in www , Google,bing,yahoo etc search engines are providing Ads facility ,
  9. Chose right key words, Site description should be less than 150 chars .
  10. Don't use too much key words , use separate key words

Better you should consult with a SEO specialist . Contact scibero.com for more , Increased traffic will increase your income from website .



What is SEO ?

Search Engine optimization is a process of optimizing your website to get listed in top of most of the available search engines . Such as google.com,yahoo.com,bing,alta vista etc .

For seo you can contact scibero.com .

What is mobile site?


The website that is developed to compact with mobile browsers is known as  mobile website . We have to develope websites for mobile devices , because they are too small in display,memory  and performance. and have only a little support for scripts . Now a days mobile browsers are updated and providing more performance to the users .

 Normally mobile sites have sub domain names .Eg mob.scibero.com is an example . some site have mobile TLDs such as scibero.mob etc



Which is the best server Os platform ?


Which is the best server Os platform ?

  I think to run applications that need huge reliability and power then it is better to choose Linux as your hosting platform . If you are using Microsoft products and packages then it is better to choose Windows as your hosting  platform .

 It is actually depends on the type of applications and the required processing power . 

Friday 7 December 2012

Cyber Law and Internet

Now a days cyber crimes are growing day by day , So each users of world wide web should be beware of  cyber laws and security mechanisms. Also we should take care in social media like facebook,Twitter , google plus etc .

Cyber laws may change according to the country .So every people should understand the cyber laws .

Also just keep the following things in mind .

1) Don't share your photos or personnel information to the unknown persons.
2)Keep limits from chat friendship
3)Don't share credit card details and passwords
4)Ignore unknown peoples from chat and friendship request
5)Don't start friendship in social media with persons who made problems with you in previously .
6)Don't try to over smart in the internet
7) Always remember that you are sharing information to the public word . Your account may secured with passwords but full data is stored in a remote server and lot of persons are seeing and validating your data like Server admins , staff of the consigned website etc .
8) Encryption is only happens when you transfer data and  data is not stored in encrypted form .
9)All social medias are for business purposes .
10)please read terms and conditions and privacy policies when you visit a new site or before starting to  use.
11)There is no garentee that the website data is not sharing with any others.
12) Don't keep valuble informations in your email accounts , Because it may be free or organised by any thired party. so go for a personel premium email id click here to buy a new 


How to Market your products

How to market a product ? (Basic marketing tips ) 

Some ideas I have regarding that:

  •  Give chance for people to learn more about you, to get who you are.  something to tell your potential customer.
  •  if you are known - they  will always give you opportunity to be chosen. If they do not know who you are how do you assume they can choose
  • you? Each customer create list of considered companies and I do not think that is bad Idea
  • Would you buy phone or notebook you have never heard about ? I believe not. I suppose you will do some research and then find out some
  • reviews or at least mention by someone ever used that.
  • What would you trust more: radio commercial or suggestion from a friend?  The same feelings and thoughts do have your potential
  • customers that is quite difficult to make people be aware of you or discuss you. But that is possible.
  • You can do it but that is really difficult.
  • -  Word of mouth. The best place is public media I’m referring to.
  • -  Being respected. If you are an independent observer and you have good reputation on the certain public media site any word you say will
  • be accepted as absolutely truth.
  • -  most likely  if someone find you in webhost any catalog related to your product or on search engine he will go through testimonials or your company mentions. And if
  • there is nothing – I’m 100% certain he will stop considering you as potential company


So i think the first step in marketing is advertising and introduce yourself in market . if ones the people knows and notice you may they will consider you in next time .

How to secure your data through Internet


How to secure your data through Internet ?

This is the crucial and most important question , The best way is Encryption but it cost some amount , The best way to do this is to use a private tunnel  such as VPN . Virtual private network .

There are many VPN services available , some of them are proxpn etc . it is free . In the web hosting and servers you can use SSL for secure your site and data

Also keep these things in your mind

1) Don't share passwords to any one

2) Don't use simple passwords,

3) Don't respond to spam mails and click on links

4) Don't share personnel information to any one like personnel profile, Credit card numbers etc

5) Don't use emails in public websites . [Another option is to use 10 minute mails -

10 Minute Mail for signup etc

 

New idea starts with a friend ship


"Real friends can change the world " - This is my own word but not about me , i am talking about two great friends  who had changed the IT industry ,

Mr. Paul Alen and Mr Bill gates ,

When Paul got an idea he firstly went to his friend gates, and shared his idea and Mr gates agreed to work together ,That decision resulted the rise of Microsoft .

So Value friendship . Change the world ,

Thursday 6 December 2012

Make money easely?


How to make money ? How to make money online ?  This is a funny question but almost all peoples in the world are thinking about this.

You can make money in different ways Jobs , If job peoples then start to think what job , Is i get a job that is suitable for my qualification etc . Don't go for uninterested jobs , select a job in the interested field .

 If you got a job don't sit satisfied with that , try to find another source of income , Invest savings from jobs to any other business or field .

Eg : Any one can start Re seller hosting business without having a huge investment .Scibero.com is the best provider for your re seller hosting .

Or invest any other areas like share market , or any other businesses etc .




Speed up website


How we can speed up our website ?

 To answer this question is little bit difficult , Normal html pages hosted in linux server will resolve faster . Because it does not have any database queries,or any other pre processing have to do . For a small dynamic websites created in php will work much faster than asp.net version of website . php is very easy to study and develop . In theories the compiled ASP.net websites will work much faster , but i fell some doubt about that , because asp.net has much more dependencies and lot of class to include , may that take much more time . also from my experience , Linux Os is much faster ,

 The speed of a website is depended on different components

  Server processing speed , Location of the server , DNS servers performance , Network reliability etc are common.

  Also it will depend on the design of  the pages , Use less images , p reload and cache data , , avoid looped processes , reduce background processes, optimize data base queries  etc

Also use dedicated IP to resolve DNS quickly  

Monday 3 December 2012

centos


What is the expansion of centOs

Community ENTerprise Operating System


Server uptime and finding uptime of a system


Server up time is the time when the servers are up and running properly. This requires continuous monitoring and management by server administrators. Server up time depends on data being available to administrators that allows them to foresee potential failures and prevent them. Server up time tools deliver vital data about machine and operating system performance in real-time to administrators, alerting administrators when something goes awry.

How to find server up time of  windows server?

Option 1:

    1.  Go to "Start" -> "Run".

    2.  Write "CMD" and press on "Enter" key.

    3.  Write the command "net statistics server" and press on "Enter" key.

    4.  The line that start with "Statistics since …" provides the time that the server was up from.

  The command "net stats srv" can be use instead.


Option 2:

Uptime.exe Tool Allows You to Estimate Server Availability with Windows NT 4.0 SP4 or Higher

http://support.microsoft.com/kb/232243


In linux you can use the following command to know the uptime of a server

 $ uptime
All most all servers are keeping up in 99.9% .But it needs restarts/reboot in intervals may days,weeks or months

Saturday 1 December 2012

Can i start a dedicated hosting at home ?

Can i start a dedicated hosting at home ? May most of the peoples especially the people related to IT, May  thought one's in his/her mind . I also in the age of 15s-17s . And i say it is very simple to host a server , if you have the following resources .

Uninterrupted Electricity/Power resource
High speed Network 2MBPSMin.with a static IP [ if not have static IP Request to Network provider]
A computer system

You can set up a server at free of cost . Use free Os like Linux ,and now a days almost all application S/W  for hosting needs will get free of cost.

Your server will be up from your home

what is cloud server nodes?

In hosting you can have hosting space in different geographical locations and the server will automatically replicate your files in different locations to avoid data loss . you can select number of servers (node) according to the location . Nodes may differences in platform but will be synchronized with your updated data and files .

 Selecting more number of nodes will increase your website or data availability

What is dedicated IP

Dedicated IP means an ip address is given for you and it will never change . It also called as static IP . In hosting most of the service providers are giving shared IP , means more than one website is using same IP to resolve the DNS and that will be server IP .if you are entering IP in browser, yo will not get any website means that will point to a server only . The DHCP mechanism will redirect your website request to your virtual folder ie your domains root folder .

 If you have a dedicated IP every one can directly resolve your dns by entering this IP . Also search engines can assure your site address and easily to point to the destination .This will make more traffic to your website

A dedicated IP Costs $2-$10 per month according to the server and network and also depends on the data center and service provider 

How to list domains in search engines in one step


To list your website in search engines in one step , you just take a dedicated IP for your website .Add site map and rss contents.

To buy dedicated ip visit scibero.com