Get The Most From Your Post - Optimizing the number of hosting credits you get.

Pages: 1, 2, 3
free web hosting

Read Latest Entries..: (Post #20) by yordan on Dec 20 2007, 02:49 PM. (Line Breaks Removed)
QUOTE(Andres Martinez Andrade @ Dec 14 2007, 08:26 AM) Is it possible that an staff member gives you additional credits if the content of the post (not only the number of words) is very good. Lets say for example. If I write a post of 500This is already the case. If you post in the "tutorial" section, your post will be reviewed. You will immediately earn your credits, but your p... read more.
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Free Web Hosting > Computers & Tech > How-To's and Tutorials > MISC (no matching category)

Get The Most From Your Post - Optimizing the number of hosting credits you get.

vujsa
I write very large posts here. I usually write very large posts other places I go as well and if anyone has received a PM from me you know I write a lot there too. I have an ability to take the smallest idea and write on and on about it. I'll write about the color, size, texture, weight, taste, and smell of the widget. Maybe I write too much sometimes but I have a lot of credits. Due to the overwelming size of most of my posts, I frequently receive requests from members for pointers on how to increase the size of the member's posts. As a result, I decided to write this little tutorial and get a few credits to share my techniques.

That was what is called an introduction. It is worth about 0.5 credits and is only about 100 words long. tongue.gif
The key to writting a good introduction for your post is to either clarify what part of a question you are attempting to answer if replying to a question or providing some background information about the topic you will be writting about.
When you are responding to a question, it is a good idea to identify the part of the question you will be refering to. Most questions will be multipart or may be interpreted more than one way. In order to be clear as to what you are answering, you should state what you interpret the question to be.

For example, examine the poorly written question below.
QUOTE

How can I send a message to my friend?

Well, starting from oldest method to newest we have letter, telegram, fax, email, and text message! Each has its own set of directions needed to complete the task of sending a message to your friend but which method is the inquisitor refering to?

So now lets examine the following poorly written answer to the question.
QUOTE

Type in the information that you want to give to your friend and send the message!

Great, we took a bad question and gave an even worse answer. That answer refers to most methods of sending a message to someone else but gives absolutely no explaination as to how this can be accomplished for any of the message sending methods.

So this would be an opportunity to clarify which part or parts of the question you will answer based on how you interpret it.

If you are posting new information like you would for a new topic or tutorial be sure to give as much information in the introduction as possible. Consider that you want to start a discussion about formatting the hard drive of your computer. You might want to provide a little information about the hardrive, computer, and situation which leads up to the formating.
QUOTE

I ran out of room on my hard drive. It was a 80GB WD800BB 7200RPM hard drive. I bought a new hard drive yesterday which is another 80GB WD800BB drive. I got it installed but t it can't be found. I guessed that the drive needs to be formated but I didn't know how to do that.
I looked around on google for a while until I found some information which helped a little but it wasn't exactly what I needed. Here I what I ended up doing to format the drive .....

So that was a pretty good introduction don't you think?
What operating system are we taliking about? The process is completely different between Linux and Windows. Kind of a big deal if you are trying to figure out how to format your hard drive by reading this post right? Turns out I'm talking about a TiVo (Digital Video Recorder) upgrade. I never said that we were working on a computer.
A few lines of computer and operating system specifications would give the reader a better idea of what you are talking about and will provide you with a few mor credits for the post.

This is also true if you are asking a question. If you were asking how to format your new hard drive but didn't tell everyone it was for a TiVo, then you wouldn't get the information you needed since the drive needs to be formated on a PC then installed in the TiVo!

-----------------------------------------------

So now we know how to write a decent introduction to your post for most types of posts made. Lets get into the content portion of of your post.
Sometimes members are so excited about posting there response or new topic that they forget to put something in the post. laugh.gif
Usually, the bare minumum number of words needed to complete a sentence is used. Again we use the message example:
QUOTE

How can I send a message to my friend?

Not only is it nearly impossible toanswer this question without writting 1000 words, this post will receive very very very few credits. 0.01 or less credits will be earned for this question. If a staff member ses it first, it will be deleted.
Be sure to ge tthe most out of your content. Give the reader an chance to help you out and both of you a chance to earn a few credits in the process. Be specific about what you are asking but don't make your question so narrow that it can't be answered. This would be a good time to bring up any ideas you have considered trying ar a prefered method of reaching your goal. Here is a rewrtitten version of the same question without an introduction.
QUOTE

I want to send a message to my friend but I don't want to use a plain text email. I know a little PHP and want to send a full HTML email to him so I can add photos to the email. I've tried several times but The email always ends up being plain text. I think it has something to do with the mime type or encoding. I also don't really understand the whole mail() funtion in PHP. Can someone help me write a script that will allow me to send such a message to my friend?

I managed to increase the size of the content part of that post from 9 words to about 75 words. Thats about 8 times as large!

If you are writting a tutorial, then you really need to milk the content section for all it is worth. This should make up at least 70% of your post. So if your intro is 75 words, then your content should be more that 300 words! A lot of people tend to make up most of there tutorial with images or code which earn 0 credits. I you use a lot of images, be sure to give a detail explanation of the photos is showing. If you have a bunch of code, then try to break it down into smaller parts as logic dictates and descript each part. You can have a larger complete coded box at the end of the content if you wish but if you disguss each of the smaller parts in detail then you can write the tutorial like you were writting several smaller tutorials! Not only does this make it easier to increase the size of your post, you will more than likely write a much easier to read and more informative tutorial. To use a very simple examle, here is a basic HTML tutorial:
QUOTE

....
First we open the HTML tag like so:
CODE
<html>


The first section of any HTML document is the head. The head.....
Here is a simple head section for a web page.
CODE
    <head>
        <title>
            Here is my title.
        </title>
        <meta name="description" content="">
        <meta name="keywords" content="">
        <meta name="author" content="vujsa">
    </head>


You'll notice inside of the head of the document is the title tag. The title tag is.....
Here is a title:
CODE
        <title>
            Here is my title.
        </title>


Once you are done with the head of the document, then you can get started with the body:
CODE
    <body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080">
        Here is my simple content!
    </body>

Once we are done with the body, we can close the HTML tag:
CODE
</html>


Here is the entire code put together:
CODE

<html>
    <head>
        <title>
            Here is my title.
        </title>
        <meta name="description" content="">
        <meta name="keywords" content="">
        <meta name="author" content="vujsa">
    </head>
    <body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080">
        Here is my simple content!
    </body>
</html>

As you can see.......


Now if you elaborated on each of the code snippets shown, you would have quite a post when you get done and the user would be able to see exactly which part of the code you were talking about. Be sure to give all of the information about the topic here. A lot of people tend to leave stuff out that they consider to be common knowledge which may not be the case. Using the HTML example from above, you can't assume that someone interested in a beginner HTML tutorial knows that they can actually use a program as basic and cheep as Notepad to write and save their HTML documnets with.

This same technique is used for basic non-tutorial posts that provide a different kind of information. Imagine that you are writting a topic about someplace that you visited. You have a bunch of pictures to show everyone and you are pretty excited. Give a descript of each picture. What the picture is of, who is in the picture and when the picture was taken. Maybe you have a funny story to go with each photo. That would really boost the content of your post!

Another common informational topic type that tends to lack content is the new release topic. We have a lot of people post new topics when a new game or software title is released. A lot of times the only information we get is basically the same as the title! If this product is a newer version of a current product then what are the differences. Have you tried the new product? What did you like most about the product or what do you think you will like about it. Was there a reason for a new version of the product to be released? Should I get the new product and why? If I have an older version of the product should I keep what I have or get the new version? Answering questions like these before they are asked gives you the credits instead of the person that replies.

-----------------------------------

Finally, you really need to wrap up your post. A summary of what you discussed is the best way. It should be about as big as your introduction. Many times people leave this part out but it should be about 15% of the post so it should add a few point to your credits earned. Here is where you can resolve unfinished issues in your post and try to leave you reader with a chance to reflect on the content. Often times I use this to give the user something to think about beyond the scope of the tutorial if that is what I am writting. I also like to provide a section of further resources in the part of the post. This would include links to other related tutorials or topics that are related. Links to websites that can provide more information on a subject work well here as well. I tend to link to other tutorials that I wrote if they are related and provide either a definition of terms used or a link to a place where the term is defined. If I use a rarely used PHP function in my code, I'll provide a link back to the online manual that further explains the function. This is the perfect place to thank the user for reading the post or thank everyone in advance for any help that may be offered. All of this is relevant information to the post but serves to fill out the body and earn a few more credits.

These are all techniques I use to make the most out of my post but what if you are having trouble coming up with topics or you can't seem to find any topics to reply to? Well, the answer is creative posting. What is creative posting?

Creative posting is a techique I use to post when there seems like nothing to post about. These are question posts written to try and get a new discussion going. A really well written question post will get a lot of replied going and as a result will give you the chance to repond to a reply. I always try to follow up on replies to my topics and replies. This will give you a chance to participate in a dialog. Polls are another good way to start a good discussion. A good poll will attract a lot of participation in the forum allowing you to repond to everyones opinion.
Following up on a post can revive a topic or give it the energy that it needed to get going in the first place. A lot of people ask for help and many people reply but then the topic starter never respondes to those that tried to help. Asking about the status of the situation can prompt the topic started to give a follow up of the problem and thank everyone for their help or request more information. Sometimes an answer was found elsewhere before they checked back here and they didn't use the help which is fine but they could at least tell how they solved their problem aif they were able to.
Remember, you don't have to NOT know the answer in order to ask the question. Maybe you just want to see how someone else deals with a problem that you already solved.

To conclude this article, I have just a few more general suggestions and information.
- Always use real words, proper spelling, and correcct grammar! These are the kinds of things that get posts deleted.
- When in doubt, more information is better than less.
- Content inside of a quote or code tag is not included in the total size of your posts when the credit calculation is performed.
- Images and other media is not considered when calculation credits.
- Very small posts receive a very very very small amount of credits to deter members from posting them.
- - A one line post will get less than half the credits of a two line post.
- - The credit system has been designed to penalize one line spammers by barely giving any credit at all.
- Posting a tutorial in the tutorial sectin will give you a bonus in the credits you receive for that topic. This is for the first post of the topic only.
- Posts can be edited to increase the credits earned if done in a reaonable amount of time. Posts edited to be shorter will take away the number of credits earned.
- - This is to prevent people from dumping a large chunk of trash into the forum to get credits then edit the post to something else that is smaller.
- - The credits will be recalculated after each edit for a post.
- Try to earn at least 1 credit each post. This will reduce the number of posts you'll need to make.

Using these techniques as I have described here can help you increase the number of credits that you earn with each post and as a result will require you to post less often. But remember, you can never have too many credits, you'll always need them and you can bank as many as you like. I currently have 120 credits without this tutorial. I'd have more but I took about 3 months off from the forum. I had 170 before that. I'm not saying that everyone can write large posts like I do but if you just increase you post size a little, you'll notice the difference.

I Hope This Helps Everyone Out! cool.gif

vujsa

 

 

 


Reply

miCRoSCoPiC^eaRthLinG
Whoaaa man - what a rocking article biggrin.gif This needs to be pinned and publicized far and wide wink.gif

Reply

cassie
Wow! Amazing article! I'll definately keep these tips in mind for when i'm posting- Can always use a few extra credits! biggrin.gif

Hehe! I just realized I could have used your techniques for this reply tongue.gif

Reply

Vyoma
Well vujsa, you have given a good article about how to write a good post in a technical forum. I had the same problem when I was running a play-by-post roleplaying forum. People with Player Characters would just write a line or two about what their Character did and expected the Moderator or the Game Master to spin a great story out of it. They found it hard that roleplaying in forums meant making or weaving a story with a team effort. I could write beautiful posts, both as a Player Character and as a Game Master but I just did not know how I did it. I could not formalize it. Then, I had this friend (online), who too was good with his words. But he was better than me, in terms that he made an artilce similar to what vujsa did here, and explained all nuances of writing a good RPG post in a forum.

Reply

pyost
Really great article smile.gif And this definitely should be pinned so as to show newbies how it should be done around here, as well as everywhere else, come to think about it. Every single forum is a place to develop a high-quality discussion. However, this can't be done with posts that are one sentence long.

On the other hand, here at Astahost, you just can't write short posts, because it isn't beneficial. Like many others, I started posting short posts, which I was used to, but then slowly switched to longer ones when I found out it was necessary. Now I write long posts everywhere biggrin.gif

Of course, there are times when you just can't fit a long post in a topic - but then it's better not to post at all - it's very probable that you can't identify yourself with the topic.

Reply

yordan
I just have a small question.
How are the credits calculated ?
Does a human being guy read each post and say how much it's worth ?
Or is there an automated routine which makes the job ?
Then, I'm really curious to know how an automated routine can now whether my first three lines are really an introduction, or are the conclusion of a poorly designed text ?
Because you seem to think the same way I do. I think that a logical schema should be :
- Introduction.
- Explanation
- Discussion
- Conclusion
However, when i was at school, the scientifical people wanted we to write their own way, which was :
- Problem stating
- Conclusion statement (what has to be demonstrated ?)
- Demonstration.
- "Quid Erat Demonstrantdum"

Reply

pyost
I don't think the script is that complicated. I beleive that the number of credits is based only on the number of characters in your post, without blank spaces. They way I see, it for every letter or some other character, you get 0.001 points biggrin.gif Vujsa has a 100-word long introduction, and we can say the on average a word has 5 letters. That's 500 characters, which brings us to 0.5 credits tongue.gif Of course, this is just a wild guess.

Reply

vujsa
The system is automated. There is no little guy that sits around waiting for you to post so he can calculate your credits. laugh.gif

The system reads the posts, ignores all text inside of quote and code tags, then counts the number of words remaining in the post.

The number of words is then used in a calculation which determins the number of credits that you get. It is designed to be as fair as possible but still deter one line spammers from gaining much credit. Since very very small posts receive a less than normal amount of credits per word, this leads the spammer to decided, usually, that it is too much work to get hosted here. Sometimes the spammers just make more one line posts to get to 10 or 30 credits for hosting. It actually doesn't work since the staff deletes the posts which deduct more credits than was recieved to begin with.

As far as the format of your post, I outlined an introduction, body, and conclusion system since it was the easiest to explain to everyone. The credit system doesn't care what your first three lines are as long as it is not in one of the excluded tags. It is up to the staff to determin if the post is actually written information or just a lot of random text (trash). The three part post works best when trying to enhance a post the only has content because you can add the introduction and conclusion to it to boost the size.

I don't have the exact formulas and numbers but here is a very basic explanation of the credit system exagerated:
500 words = 5.00 credits;
250 words = 2.50 credit;
50 words = 0.45 credits;
10 words = 0.04 credits;

See how very small posts get so much fewer credits.

If 500 words = 5.00 credits in the normal forums, then it gets 7.50 credits in the tutorial forum.

If you post got 5.00 credits and is deleted by staff, then you lose 7.50 credits.

If your 500 word post is edited to 600 words then your credits change from 5.00 to 6.00 credits.
If your 500 word post is edited to 250 words then your credits change from 5.00 to 2.50 credits.

If your 500 word post is moved from a normal forum to a non-credit forum, then you will lose 5.00 credits.
If your 500 word post is moved from the tutorial forum to a non-credit forum, then you will lose 7.50 credits.

Like I said, I don't know the exact figures used in the credit system and to make it easier to follow I used round numbers.

As you can see, the system is pretty straight forward unless it has to deal with bad posts.
I think this is the thirds version of the credit system that has been used here and this one is by far the best. Many of the credit adjustments it performs had to be done manually before this one.

I'm glad to see that so many people have enjoyed this article.

vujsa

 

 

 


Reply

Chesso
Yeah.... wow, a long article too heh heh. Very thorough though I have to admit.

It certainly looks like all of your'e posts are quite large, unrolling is what I would call it, just explaining a shorter thing in more detail or adding little bits and pieces that are relevant.

Reply

yordan
[size=1]
QUOTE
It certainly looks like all of your'e posts are quite large

Roghly, yes. Vujsa seems to say that explaining clearly, using normal english sentences is worth more than using short posts.
Also, seems that if you try to think how to explain things, you will use more words, your posts will be more readable, and you will earn more credits.
Personnally, I like this way of calculating, because it favours people who have something to say, or people who know how to explain.
And vujsa's post explains that there is no miracle, simply a lot of work. Why not ? I still love that !

Reply

Latest Entries

yordan
QUOTE(Andres Martinez Andrade @ Dec 14 2007, 08:26 AM) *
Is it possible that an staff member gives you additional credits if the content of the post (not only the number of words) is very good.

Lets say for example. If I write a post of 500

This is already the case. If you post in the "tutorial" section, your post will be reviewed. You will immediately earn your credits, but your post will remain unvisible until it has been read by a moderator. Then, the moderator will appreciate your work, and of course will give you extra credits. But if the moderator decides that your post is purely spam or if he finds out that your post has been plagerized from somewhere else (including from your own website) you may have a very bad experience.

Reply

Andres Martinez Andrade
QUOTE(vujsa @ Jul 7 2006, 10:26 AM) *
The system is automated. There is no little guy that sits around waiting for you to post so he can calculate your credits. laugh.gif
...


I have another question related to the Credit System. Is it possible that an staff member gives you additional credits if the content of the post (not only the number of words) is very good.

Lets say for example. If I write a post of 500 words so it will aprox. earn about 5.00 credits automatically by the system. An few hours or days after, an staff member reviews the article and says: "hey! what a great article! oh yes! it is really usefull!... it desires some extra credits!" and he gives me 3 or 4 extra credits.

Is that possible? or only the automated system will grade our posts and staff members just deal with bad posts?



Reply

richie
I agree with the entire tutorial ,the long posts also helps to make an impact for your point and the biggest problem when people write only for credits is that they cant go indepth about it,but once you post only to those topics which you like and have a knowledge about it ,there is no problem of writing big post there because you know about the topic and how far the particular topic goes,innseccary extending of post with smilies and all should also be avoided.the best tip is if you know the topic well you can write more about it or just learn to babble about stuff and you will get big posts

Reply

yordan
QUOTE
So how does your points decrease?

Each day, one point less.
One day you have ten points in your account. Five days later you have five days less.
The trick is, you should earn enough points (let's seay earn five points) in order to be able to stay several days in case of being too busy, or using a lot of time for writing correctly an interesting topic, with correct sentences and being easily readable and interesting enough to make people keep reading you.
What this topic says is that correctly written topics make you earn more credit than useless spam or blah-blah.

Reply

dropkicksidekick
That was a very interesting tutorial. It may help me out a little. It was almost a flawless tutorial besides the few word errors I seen at the beginning of the topic. (but I still understood it) I read the hole thing and I promise to try to do my best to make my posts and my topics more professional and clearer. It may take a while to work on it, but I'm sure I will soon get to that point. I have a small question though. So how does your points decrease? Lets just say for example I had fourteen credits and I leave for maybe a week or two. Would that take all my credits away? If not how many would I have left? Because I would really hate to create a nice website then soon after I get sick for about a week and my site gets deleted. All in all I think it was a really great tutorial. I learned a little bit today and I hope to keep learning more from this site. So that's why I have decided to stick around. I would also like to say thanks for that miniature html tutorial. I know it wasn't much, but it was more then I already knew. Maybe I will search around this site and try to find a complete tutorial.

Well I tried to write a good post. I don't know how well I did. Maybe someone can tell me some things I did wrong. Unless this isn't the topic to discuss that in.

Edit- This post got me 5 points. That's pretty good, but I bet your tutorial on how to post better got you like 200 points didn't it.

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

Pages: 1, 2, 3
Similar Topics

Keywords : post, optimizing, number, hosting, credits

  1. Free Web Hosting: (ergoxsx) [updated]
    Free Website: <junn.astahost.com> (1)
  2. My Hosting Credit Is -100 Help
    MY hosting credit is -100 Help (3)
    I was away from astahost for long time 3 months and now i am back. But my credit is -120 can i still
    make it +ve so that my hosting unsuspended? Thanks for your support.....
  3. Test Post
    Dry-run posting... Tha'ts all! (6)
    This is the example of message topic, actually you don't need to read this. /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> ....
  4. Free Web Hosting: (zaffa) [updated]
    Free Website: <karimov.tj> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    karimov.tj Account Username: zaffa Introduction: Photos, Computers etc
    Email Address: zaffasoft@gmail.com Age: 22 Country Where I Live:
    Tajikistan My Websites Theme: none Reason I Chose Astahost: free ....
  5. Free Web Hosting: (ergoxsx) [updated]
    (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    adums.org.ph Account Username: ergoxsx Introduction: Hi! I am a
    network/systems administrator for a university and I would like to try creating a website for a
    friend's nonprofit organization. Email Address: junn_flores@yahoo.com Age:
    37 ....
  6. Free Web Hosting: (halo3fanboy) [updated]
    Free Website: <Hellsrevenge.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    Hellsrevenge.astahost.com Account Username: herlyn Introduction: sup
    hobbies: let see now i like to game on my computer like worl of warcraft Email Address:
    aceofspades0990@yahoo.com Age: 18 Country Where I Live: U.S.A
    My ....
  7. Free Web Hosting: (theunreal) [updated]
    Free Website: <slash.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    slash.astahost.com Account Username: TheUnrea Introduction: My hobbies:
    Computing , Games , Sport(Football,Ping Pong) Email Address: TheUnrealz@gmail.com
    Age: 15 Country Where I Live: Israel My Websites Theme:
    Forum,Tes....
  8. Free Web Hosting: (kalicotalez) [updated]
    Free Website: <kalicotalez.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    kalicotalez.astahost.com Account Username: Randen89 Introduction: Hello
    there hi there good day! i am randen! Email Address: kalicotalez@yahoo.com Age:
    18 Country Where I Live: United States My Websites Theme: Maplestory
    R....
  9. New Hosting Package Release - Logic Pro And Logic Xtreme
    (11)
    New Hosting Package Release - Logic PRO and Logic XTREME Logic PRO - $5.95 / mo. - FREE
    SETUP! - 10 GB Space * upgradeable to 35GB 100 GB Bandwidth * upgradeable to 1024GB/1TB
    Unmetered Parked & Addon-Domain Support, 100 Sub-Domains, 100 FTP Accounts & 100 MySQL Databases
    Multi-Core Processor Server Network Powered by XO Communications Automated Monthly Backups
    On-Demand Backup Weeky Database Backup Supports Joomla, WordPress, VBulletin, Invision, phpBB,
    Gallery etc. Special Optimizations for WAP sites. Secured Client Area for Billing & Support Qu....
  10. No Post Count Forums Give Mycents
    (9)
    When i saw the No post count near some forums i assumed that they don't give credits but i never
    checked, today ,before this post, i only posted in the introduction forum which is no post count.
    But i recieved mycents, i didn't check for credits. Is this supposed to happen? cuz then someone
    would do alot of 'Testing' in the Test forum and earn alot of mycents.....
  11. Free Web Hosting: (zorba4) [updated]
    Free Website: <zorba4.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    zorba4.astahost.com Account Username: zorba4 Introduction: Hi, my name is
    Zorba. I\'m new in web designing, I would like a free web hosting account in order to learn how
    to create a website and how to add pages, how to make it interesting, how to have people visiting
    it. ....
  12. Free Web Hosting: (mlywrrn) [updated]
    Free Website: <HabboHeroAU> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    HabboHeroAU Account Username: mlywrrn Introduction: Play Hockey for a
    state team, go to clown school in caulfield australia and love computer games. Email
    Address: mlywrrn@hotmail.com Age: 13 Country Where I Live: Australia
    My ....
  13. Free Web Hosting: (veerumits) [updated]
    Free Website: <vsinfotechsolutions.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    vsinfotechsolutions.astahost.com Account Username: vshakya Introduction:
    Playing chess, net surfing, making friends. Email Address: veerumits@yahoo.co.in
    Age: 30 Country Where I Live: india My Websites Theme: Training
    and ....
  14. Free Web Hosting: (sateduc) [updated]
    Free Website: <sateduc.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    sateduc.astahost.com Account Username: sateduc Introduction: sat
    technology,electronics,tv Email Address: sateduc@gmail.com Age: 30
    Country Where I Live: belgum My Websites Theme: technology Reason I
    Chose Astahost....
  15. Free Web Hosting: (hemanth) [updated]
    Free Website: <wedding-invitation> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    wedding-invitation Account Username: wedding Introduction: I am intrested
    in singing, playing with friends, intrested in music. i belong to india and proud to be an india.
    Email Address: veera.volikatla@gmail.com Age: 30 Country Where I
    Live....
  16. Free Web Hosting: (tizo The Hedgehog) [updated]
    Free Website: <sonicfamily.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    sonicfamily.astahost.com Account Username: Tizo Introduction: I'm a
    High School student that likes Sonic, I own a Sonic forum called The Sonic Family hosted by
    forumotion, and a site hosted by sosblog, but due, to some recent problems I decided to try this
    hosting service....
  17. Free Web Hosting - Free Domain Name
    purchasing free domain name with myCENT (0)
    myCENT is a new Credit System V3 developed by OpaQue. To start earning myCENT towards free domain
    name, please follow our forum rules. Once you have enough myCENT (about $999 myCENT or $9.99
    Account Credit Balance found in Billing and Support) follow this direction to purchase any available
    domain name. First, if you have not done so, register with Billing and Support . It is IMPORTANT
    that you use the same email address as the forum registration. Step 1 Go to the left navigation
    ORDER . At the bottom of Click To Continue button you will see Order Domain Regi....
  18. Suggested Hosting Service For Text Based Game?
    (2)
    well ive been developing a text based multiplayer game and its near completion. its time for me to
    start looking at hosting services. so i ran accross this site and i've also heard about it in
    the past. what ive heard is that astahost is a good place to host a text based game when u are first
    starting out. so what i wonder is does anyone know if safe mode is enabled for the mail() function.
    i often get that error alot when trying to send emails through free services, also how is the lag ?
    any other info or advice would be greatly appreciated, thanx in adv.....
  19. Free Web Hosting: (ringling) [updated]
    Free Website: <ringling.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    ringling.astahost.com Account Username: ringling Introduction: I am IT
    student and have interest in playing the opensource code in the free web hosting. Email
    Address: ling.chen.cn@gmail.com Age: 25 Country Where I Live:
    Australia ....
  20. Free Web Hosting: (luckily18)
    (1)
    I would like to request free web hosting from Astahost. Please find my application below. Your
    Registered Domain Name or Desired Astahost Subdomain Name: weiyi.astahost.com Account Username:
    weiyi Introduction: I like Photoshopping, reading manga/watching anime , playing online MMORPGS,
    origami, sleeping, and being totally lazy. Email Address: jz1109208@gmail.com Age: 22 Country
    Where I Live: china My Websites Theme: Blog Reason I Chose Astahost: it seems like a really nice
    host with all of the features I needed How I Found Astahost: free webhost director....
  21. Free Web Hosting: (heitan)
    Free Website: <faulheit.astahost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    faulheit.astahost.com Account Username: Heitan Introduction: I like
    Photoshopping, drawing, reading manga/watching anime and/or Asian dramas, playing online MMORPGS and
    video games, origami, sleeping, and being totally lazy. Email Address:
    mononoke_neo90@hotmail.....
  22. Free Web Hosting: (veerumits) [updated]
    Free Website: <veerumits.asthost.com> (1)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    veerumits.astahost.com Account Username: vshakya Introduction: Playing
    chess, net surfing, making friends. Email Address: veerumits@yahoo.co.in Age:
    30 Country Where I Live: india My Websites Theme: Training and
    Development ....
  23. Credit System V3.0 Online
    Free Web Hosting, Domains, Dedicated IP, Digital Certificate, Managed (121)
    CREDIT SYSTEM v3.0 ONLINE Dear Members, Thank you for supporting
    Astahost for all these years and as promised, I am proud to announce the launch of Credit System
    v3.0. Credit System 3.0 offers complete accounting of user posts which also counts features like
    views, popularity and reputation to help better distribution of cents. Unlike Credits, which used
    to represent 1 day of hosting, we now have a new point system called "cent". And yes, each cent
    represents 1 American "cent". The goal is to make good posts and gather 100 cents. Every....
  24. How To Make Credits
    (10)
    please if any person can help me with the free credits, my english is regular....
  25. Free Web Hosting: (checkprogs)
    Free Website: <checkprogs.com> (2)
    To generate an application for free web hosting please click here: Free Web Hosting
    Request Form I would like to request free web hosting from Astahost. Please find my
    application below. Your Registered Domain Name or Desired Astahost Subdomain Name:
    checkprogs.com Account Username: kickit11 Introduction: I am Kevin. I am a
    programmer inside the computer and out. I recently learned PHP and decided to buy a webhost to show
    off some of my programs. Having that done I mistakenly bought a website so I may test my PHP scripts
    ....
  26. Stop Hold Of Hosting Credits
    vacation (6)
    I will be out of net access for a while, and I want to put a stop hold on the credits as I don't
    want to lose them because I can't post. I'm also thinking of taking the site down and
    making a new one so I guess I have to replace them. So the big question is how do I do that? How
    do I stop my credit usage? Don't care if the sites down as I want to make a new one.... Also
    is there a way to replace the old site domain name with a new one and start all over??? Another
    question what happened to all my hosting credits? I have a lot and when I became a ....
  27. No More Free Hosting At Ttp://www.serverheaven.net
    (1)
    ttp://www.serverheaven.net is no more providing free hosting. Free hosted people have to upgrade to
    paid hosting, or loose their site. Here below is the announcement mail. QUOTE IMPORTANT
    ANNOUNCEMENT: ANY FREE HOSTING PLAN ACCOUNT THAT DOES NOT UPGRADE TO A PAID HOSTING PLAN, WILL BE
    PERMANENTLY TERMINATED AFTER 5 DAYS OF THIS NOTICE. Dear Hosting Client, Welcome to 2007! We wish
    you the best for this coming year! As time progresses, change is sometimes inevitable. And one of
    the changes happening at ServerHeaven.net is that we are no longer going to provide fr....
  28. Web Hosting From Your Own Local Machine. (very Easy)
    (18)
    I know that all want to opt for a free hosting company especially AstaHost but equally many people
    want to host their own website, totally free of cost with all sort of supports and software support
    like "ASP", "FTP", "phpMyAdmin", "MySQL", "phpBB" etc etc, and they simply do not know how to do it
    so they opt for a free web hosting company which displays irritating ads on the limited web space
    with a freehostingdomain.freehostingcompany.com/freemembers/you and also do not give you almost any
    support, now forget all that , you can host your own site on your own computer. ....
  29. Counter-Strike Source Clans - Post Your Server IPs
    (18)
    Here is our server ip. 68.8.52.34:27015 Cal This season playoffs 2-0 first match today! Come
    join us....
  30. Atspace.com: Web Hosting
    No ads .. no , nothing (10)
    web space was sufficient offering 50 megs to free users wanting to use a subdomain , had no ads
    easily accessible via net or ftp .. on the other hand had no front page extensions, cgi , php or
    anything advanced for users to play with , good for beginners but overall I would give it a 50% for
    at least making an effort by keeping the website tidy from ads ,spam etc .....

    1. Looking for post, optimizing, number, hosting, credits






*SIMILAR VIDEOS*
Searching Video's for post, optimizing, number, hosting, credits
Similar
Free Web Hosting: (ergoxsx) [updated] - Free Website: <junn.astahost.com>
My Hosting Credit Is -100 Help - MY hosting credit is -100 Help
Test Post - Dry-run posting... Tha'ts all!
Free Web Hosting: (zaffa) [updated] - Free Website: <karimov.tj>
Free Web Hosting: (ergoxsx) [updated]
Free Web Hosting: (halo3fanboy) [updated] - Free Website: <Hellsrevenge.astahost.com>
Free Web Hosting: (theunreal) [updated] - Free Website: <slash.astahost.com>
Free Web Hosting: (kalicotalez) [updated] - Free Website: <kalicotalez.astahost.com>
New Hosting Package Release - Logic Pro And Logic Xtreme
No Post Count Forums Give Mycents
Free Web Hosting: (zorba4) [updated] - Free Website: <zorba4.astahost.com>
Free Web Hosting: (mlywrrn) [updated] - Free Website: <HabboHeroAU>
Free Web Hosting: (veerumits) [updated] - Free Website: <vsinfotechsolutions.astahost.com>
Free Web Hosting: (sateduc) [updated] - Free Website: <sateduc.astahost.com>
Free Web Hosting: (hemanth) [updated] - Free Website: <wedding-invitation>
Free Web Hosting: (tizo The Hedgehog) [updated] - Free Website: <sonicfamily.astahost.com>
Free Web Hosting - Free Domain Name - purchasing free domain name with myCENT
Suggested Hosting Service For Text Based Game?
Free Web Hosting: (ringling) [updated] - Free Website: <ringling.astahost.com>
Free Web Hosting: (luckily18)
Free Web Hosting: (heitan) - Free Website: <faulheit.astahost.com>
Free Web Hosting: (veerumits) [updated] - Free Website: <veerumits.asthost.com>
Credit System V3.0 Online - Free Web Hosting, Domains, Dedicated IP, Digital Certificate, Managed
How To Make Credits
Free Web Hosting: (checkprogs) - Free Website: <checkprogs.com>
Stop Hold Of Hosting Credits - vacation
No More Free Hosting At Ttp://www.serverheaven.net
Web Hosting From Your Own Local Machine. (very Easy)
Counter-Strike Source Clans - Post Your Server IPs
Atspace.com: Web Hosting - No ads .. no , nothing
advertisement




Get The Most From Your Post - Optimizing the number of hosting credits you get.