arrow_upward

Posted by: Spank! - 10-03-2015, 05:54 PM - Forum: Other Free Service Providers - Replies (17)
outkastHosting
because gaming is free.

outkastHosting is providing free samp servers for people who cannot afford one. We might new to the business, but we do have huge potential in what we are doing. 

We do have two locations as of now. Atlanta, Georgia and Los Angeles, USA. We are planning on adding more locations in near future.

We do have forum if you have any questions that is related to our services. You can also try our Live Chat Support whenever it is available.


We are using Open Game Panel which most of you are familiar with. Open Game Panel is a advanced panel which as almost every tools that you will need to control your server as you wish.


What is keep us above than all the free server providers out there?

That is a good question. How we going to answer that? Well, there's nothing you have to do! Well, I mean almost, you don't have anything to do than stay active on the forums. Now now, you don't have to make any monthly posts to keep your server active. Just stay active. It's simple as that.

Wow, that's something! How can I claim one?

Everything is easy with us. You just have to fill one simple form and hang tight! Once you submit the form, you will receive an email from us within 48 hours.


Hurry up and give me the links!

Here you go, comrade! 

[font=Tahoma, Verdana, Arial, sans-serif]Homepage - http://outkasthosting.xyz/[/font]
[font=Tahoma, Verdana, Arial, sans-serif]Forums - http://outkasthosting.xyz/community/[/font]
[font=Tahoma, Verdana, Arial, sans-serif]Request Form - http://goo.gl/forms/IGy5dVPqlx[/font]
[font=Tahoma, Verdana, Arial, sans-serif]Welcome Post - http://outkasthosting.xyz/community/d/1-hey-there[/font]

Posted by: perry - 10-02-2015, 03:22 PM - Forum: Other Free Service Providers - Replies (36)
the6bit came to his death.
check bladeip.com
Posted by: xdude - 10-02-2015, 06:07 AM - Forum: VPS Support - Replies (11)
Here here are some really nice KVM vps so I guess most of us would go for windows servers. Now the biggest problem we have a Windows License issue. cobalt-zack unable to provide Windows license which make sense since this is a free service and Windows stuff are quite expensive.

So sooner or later we all Windows users here gonna face this problem and I wonder what options do we have to deal with it.

At server-verleih.eu I think they use some kind of 2008 180 trial or something and that might be the best option we can have too.  anyone here know anything about these long trials ?
Posted by: xdude - 10-02-2015, 06:01 AM - Forum: Suggestions and Feedback - Replies (10)
Could we expand the forum bit by adding few more boards ? Giving more chances to post more things ? Maybe a separate section for hosting and vps related things ? Also for other things like SEO and Marketing etc ?
Posted by: xdude - 10-01-2015, 12:47 PM - Forum: General - Replies (19)
I think everyone who use free vps use free hosting control panels. There are like 2 dozen panels out there but there are like top 5 panels which used by majority.

What are the panels you have used so far and which panels do you like and why do you like those panels ?

My favorite panel is Kloxo-MR which is one of the best free panels out there in IMO. It's a fork of infamous Kloxo panel but lot better and more secure than that one. User interface is very friendly and little bit like cPanel. Also it's pretty easy to install. Another thing is their support forum is very active.

I have used CentOS Hosting panel too. This panel looks really promising. It's really easy to install and another panel which look bit like cPanel. A really nice GUI. But downside is it's still bit lagging and also buggy. Biggest problem is their support forum is very terrible. Really hard to get a response there.

VestaCP panel is also another good one. A solid panel which is easy to use and also easy to install. Support forum is bit of problem since most techs are Russians.
Posted by: xdude - 10-01-2015, 12:30 PM - Forum: General - Replies (2)
Here's a list of Game hosting control panels both free and paid. Plz post and if there are any panels which missed in this list.

Free Panels -
  • Opengamepanel
  • Gamecreate
  • Gamepanelx
  • swiftpanel - I thought it's a dead project but found it's still active.
  • PufferPanel
  • bgpanel

Paid Panels -
  • tcadmin
  • mintpanel
  • gamecp
  • igc-panel
  • brainless.us (UGCC)
  • swiftpanel.com/version2 (It's in coming soon mode forever)

Posted by: xdude - 10-01-2015, 11:59 AM - Forum: General - Replies (4)
We all have experience in cPanel but what other options out there for web hosting providers ? So far I have used DirectAdmin and Plesk which are quite similar to cPanel price wise.

Is there any other good hosting control panels which are cheaper ? I'm not talking about free panels here.
Posted by: xdude - 10-01-2015, 09:54 AM - Forum: General Gaming Discussion - Replies (59)
So what are the favorite game Apps you guys have in your smart phones ?


Right now I have only 2 games.  Candy Crush and Gunship Battle. Both these games are less than 100 MB in size.
Posted by: paronte - 10-01-2015, 04:09 AM - Forum: Scripting & Programming - Replies (10)
So, you're interested in C++, huh?

Whatever the reason may be, I'm going to send you down the very boring start of learning C++.

(Please note that this is my first tutorial, and all feedback is accepted.)

First, I'd recommend grabbing Eclipse. (It helps identify many errors you'll end up making. Also, look up a few tutorials on getting it set up for C++)

Maybe you don't want to use Eclipse, aren't allowed to download anything, or are on a Chromebook for school. If so, here's a website inferior, yet useful for C++.

Now that you're on Eclipse (or cpp.sh) let's set up our first program.
[Image: q5aM7LW.png]

I'm making these images as opposed to code due to the ability to copy. I'd much rather you type this out then copy+paste. Trust me, you'll be typing this a ton.

Now, allow me to explain what this all does.

#include - includes other C++ libraries (i.e. iostream, iomanip, string)
<iostream> - Library for the "stream" (i.e. 'blah << blah << blah;')

using namespace std - Using Namespace Standard: Consider this a shortcut for later. It's a good idea to get in the habit of adding this to your program so typing something like 'string' doesn't have to be: 'std:Confusedtring'

int - integer type
main - Function needed in order to run the program

return 0 - Needed in order to end the program.


Now, don't worry if you don't recognize the majority of this, or if it doesn't click automatically. You'll learn more integer types, more functions, and more variables.

Let's make this program do something:
[Image: L05NAYs.png]

Take a second, try to guess what this program will do.

Now, run it! (On Eclipse, save/build/run)

It will simply print out:
Hello, anon!

In your console. Let's explain why it does this. Let's look closer at that line:
[Image: j8hIe7l.png]
cout - Well, you see a word that we're familiar with in there, "out" but, what does 'c' stand for? Can you guess it? The 'c' stands for console. Then just add our definition for the word out! So, basically, it uses the console to output into the program. In this case, we outputted a string, which is our "Hello, anon!" 

endl; - Let me explain here, because I haven't yet. If you haven't noticed, things in C++ often times end with a semicolon(Wink. 'endl;' in particular uses two English words! 'end' and 'line'. Now you can probably assume what it does.

Left for modification, I will add tons more to this simple tutorial later. For now, I just want it here so I don't accidentally delete it.
Posted by: Rishabh Jain - 09-30-2015, 07:45 PM - Forum: VPS Support - No Replies
Greetings Users,
i would like VPS3 holders to know that the panel you are using is built by me. so if you guys find any type of bugs in the Panel, have questions about it, or even requesting new features. you will be contacting me.

1) For security hole PM me

any other issue just write a post below if you feel that your issues can take form of a discussion then create a new thread in support section

Format Should be like given below for faster replies

General Issue Wrote:Title: VPS 3 Panel Issue-- following by your Issue
Body: Full description of issue
Feature Request Wrote:Title: VPS 3 Panel Feature Request-- following by your requested feature name
Body: Full detailed description of the feature
Bug Found Wrote:Title: VPS 3 Panel Bug Spotted -- following by Name
Body: Full description of bug and include the Snaps of the bug if possible

Best Regards
Rishabh Jain
Pages (306): Jump to page 
Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,271
» Latest member: orzpainter
» Forum threads: 3,104
» Forum posts: 34,832

Full Statistics

Online Users
There are currently 114 online users.
» 0 Member(s) | 113 Guest(s)
Bing

Latest Threads
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers
Last Post: bestadvisor
07-13-2025, 09:36 AM
» Replies: 0
» Views: 80
[Promo] 30% Discount – VP...
Forum: Cheap Providers
Last Post: LLHOST
07-11-2025, 12:56 PM
» Replies: 0
» Views: 70
How Virtual Cards Are Cha...
Forum: Offtopic
Last Post: bestadvisor
07-07-2025, 08:35 PM
» Replies: 0
» Views: 117
LLHOST — 40% OFF Netherla...
Forum: Free VPS Providers
Last Post: LLHOST
07-02-2025, 08:42 AM
» Replies: 0
» Views: 208
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers
Last Post: RIYAD
07-02-2025, 03:02 AM
» Replies: 0
» Views: 269
15% Lifetime Discount on ...
Forum: Cheap Providers
Last Post: LLHOST
06-25-2025, 05:03 AM
» Replies: 0
» Views: 133
Get 50% Off Your First Ne...
Forum: Others
Last Post: LLHOST
06-19-2025, 10:09 AM
» Replies: 0
» Views: 274
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
06-14-2025, 05:32 PM
» Replies: 7
» Views: 4,054
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers
Last Post: HostNamaste
06-10-2025, 11:53 AM
» Replies: 1
» Views: 767
Budget Dedicated Servers ...
Forum: Others
Last Post: HostNamaste
06-10-2025, 11:49 AM
» Replies: 1
» Views: 791

Sponsors: VirMach - Host4Fun - CubeData - Evolution-Host - HostDare - Hyper Expert - Shadow Hosting - Bladenode - Hostlease - RackNerd - ReadyDedis - Limitless Hosting