arrow_upward

Posted by: Littlemaster - 05-31-2018, 03:16 AM - Forum: General Gaming Discussion - Replies (7)
FIFA 2010 is a great game officially signed by FIFA, it is developed by EA Sports and having good visuals. There is different modes including Manager Mode where you can buy players and add to your club team, the problem I saw that there is no money awarded if we win a cup or league, it makes some discouraging to the players. There is also online gaming option, I have not tried it, is there anyone who played this game?
Posted by: HarisHayat - 05-28-2018, 12:52 PM - Forum: VPS Support - Replies (1)
My VPS 1 was France located and Sponsored by Host4Fun and Now it is not working,
When i Login to my panel it says Incorrect username or password. Kindly solve this issue as soon as possible.
I was using node1.francevps.com:4082 , for my VPS panel.
whats your issue?: Panel not logging.
Posted by: chanalku91 - 05-28-2018, 04:31 AM - Forum: VPS Support - Replies (5)
hallo everything i need support so admin and staff here !! last night! I complained to @ perryoo11 that my 1st vps suddenly died and ipnya lost but when i turn on vps still can be connected! but now i see on the web admin i see my vps is missing from the list but my vps is still online and i can connect i'm not sure if my vps will be suspend so please help him to the admin and staff here

Attached Files Thumbnail(s)
   

Posted by: sasalih416 - 05-27-2018, 01:40 PM - Forum: General - Replies (3)
I am searching for a VPS with 1xCPU, 2GB RAM, 500GB Bandwith or more for the purpose of running a bot.
Posted by: sagher - 05-26-2018, 05:49 AM - Forum: Offtopic - Replies (20)
Hi everyone : Hope you all fine. recently i sold out my smartphones. one of them is Samsung Galaxy Note 5 Duos and the second is Sony Xperia Z5 Premium.
now i would like to discuss with you and need expert opinions. my one choice is
Huawei P20pro
and the second is
Xiaomi MI Mix2s
which was best.
and any other choice? 
except Samsung and iPhone
Posted by: tiwil - 05-25-2018, 03:32 PM - Forum: VPS Support - Replies (1)
Hi guys. I'm going to straight to the point.
So, currently I have a problem which is, my GNOME doesn't auto start after I reboot my server.
I need to type "startx" to start GNOME after rebooting. But, it's not really efficient for me.

I already installed gdm and lightdm, but nothing happened.
And already followed some tutorials, but nothing happened too. Sigh.

Anyone have idea for this one?

Currently running Ubuntu Server 16.04 LTS on 64bit.
Thanks.
Posted by: xdude - 05-24-2018, 05:39 AM - Forum: General - Replies (9)
More of I wanted to ask which vps you have had for the longest period of time here. And the reason why did/do you stick with that server. Also what do you think about it's Sponsor/provider.

.


I have had vps2 for over a year now. This is not my first server here but I can say without a doubt this the best box I have got from giveaways here. It's KVM with 2GB RAM, 500GB Bandwidth, 15GB Space and 2 x 2.66GHz cores. Not SSD but that's not a issue for what I do. I'm using it basically for backing up sites and data bases and also for various social media tasks. also sometimes for do web browsing.

.

Sponsor is SSDblaze who offer some amazing range of vps and dedis for very good prices. You can check their VPS prices here >  Price List  . vps with above specs can get for jusy 4$/m and one with 4GB RAM is only 7$/m.  Their Dide prices started from 65$/m for 8 x 2.4GHz cores, 32 GB DDR3, 3 x 1TB SATA, 10 TB server.

.

I haven't seen their representative active in forum but I don't think it's needed. For this whole year I have only made 2 support tickets and one was about accessing problem which got sorted out quite fast and other was something i could sorted out my self. They do have great uptime too.
Posted by: Zorono - 05-24-2018, 01:14 AM - Forum: Tutorials - Replies (1)
Hello everybody, so iam going to show you Today how to Check for TCP Listening Ports's Validation and Status using a small PHP script.

  1. We have to initializate some required vars:
    PHP Code:
    $host "127.0.0.1"// The Device's remote host which will be used on Monitoring the Specified Ports.
        
    $timeout 2// The connection timeout. (in Seconds)
        
    $ports = array(80,21); // The specified Ports which will be Monitored.
        
    $datei fopen('portlist.ini''w+'); // Creating/Overwritting a file which will be used to store in the Data. 
  2. Let's Add the Tagline of your Logs File(portlist.ini or whatever):
    PHP Code:
    fputs($datei"[Ports]\r\n"); 
  3. Lets initializate a Loop Statement which will be used on switching between your specified Ports:
    PHP Code:
    for($i 1$i <= count($ports); $i++)
    {
            
    $a $i 1// it subtract a number ever time. and assign the result to the var $a 
  4. Let's Set the Variable's Type to Integer to avoid some stupid warnings/errors which will be caused of 'int to str':
    PHP Code:
    settype($ports[$a], "int"); // for more info about possible Types feel free to check http://php.net/manual/en/function.settype.php 
  5. Let's do the Magic:
    PHP Code:
    $print "Port".$ports[$a]."=" . ($handle = @fsockopen($host$ports[$a], $errno$errstr$timeout) ? 'OPENED' 'CLOSED') . "\r\n"
  6. Let's Write the results to your INI Logs file:
    PHP Code:
    fputs($datei$print); 
  7. Let's Close the Socket Connection to avoid Connection issues during the loop process:
    PHP Code:
    @fclose($handle); 
  8. Let's Close the Loop Statement's Bracket:
    PHP Code:

  9. Let's Close your INI Logs File's Process:
    PHP Code:
    fclose($datei); 

Full Code:
PHP Code:
$host "127.0.0.1";
    
$timeout 2;
    
    
$ports = array(80,21);
    
$datei fopen('portlist.ini''w+');
    
fputs($datei"[Ports]\r\n");
    for(
$i 1$i <= count($ports); $i++)
    {
        
$a $i 1;
        
settype($ports[$a], "int");
        
$print "Port".$ports[$a]."=" . ($handle = @fsockopen($host$ports[$a], $errno$errstr$timeout) ? 'OPENED' :  'CLOSED') . "\r\n";
        
fputs($datei$print);
        @
fclose($handle);
    }
    
fclose($datei); 

Posted by: chanalku91 - 05-23-2018, 10:02 AM - Forum: General - Replies (4)
I am igniting to ask if there is a CDN website that is able to optimize the TCP connection because recently I got the problem that is red latency for my game server is there any suggestions other than cloudflare speactrum
Posted by: Zorono - 05-20-2018, 10:55 PM - Forum: Hobbies - Replies (12)
Hello everybody, so What is your Favourite Music ?
  • My Heart is Going On. (Titanic)
  • Young Artists For Haiti - Wavin' Flag
  • 50 Cent - Candy Shop ft. Olivia
  • Apocalypshit - Molotov
  • Marshmello - Moving On
  • Imagine Dragons - Underdog
  • Estas Tonne - The Song of the Golden Dragon
  • Other, Feel Free to Mention it.

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,103
» Forum posts: 34,787

Full Statistics

Online Users
There are currently 350 online users.
» 0 Member(s) | 347 Guest(s)
Bing, Google, UptimeRobot

Latest Threads
Get LLHOST Netherlands Fe...
Forum: Cheap Providers
Last Post: LLHOST
09-08-2025, 01:33 PM
» Replies: 0
» Views: 32
Windows VPS @ $31.5/Year ...
Forum: Cheap Providers
Last Post: DewlanceHosting
08-16-2025, 03:12 AM
» Replies: 0
» Views: 215
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
08-16-2025, 03:10 AM
» Replies: 8
» Views: 4,981
Budget Dedicated Servers ...
Forum: Others
Last Post: HostNamaste
08-13-2025, 04:54 AM
» Replies: 2
» Views: 1,083
☁️ How to Use VCCPRO Virt...
Forum: Cheap Providers
Last Post: bestadvisor
07-13-2025, 09:36 AM
» Replies: 0
» Views: 378
[Promo] 30% Discount – VP...
Forum: Cheap Providers
Last Post: LLHOST
07-11-2025, 12:56 PM
» Replies: 0
» Views: 288
How Virtual Cards Are Cha...
Forum: Offtopic
Last Post: bestadvisor
07-07-2025, 08:35 PM
» Replies: 0
» Views: 425
LLHOST — 40% OFF Netherla...
Forum: Free VPS Providers
Last Post: LLHOST
07-02-2025, 08:42 AM
» Replies: 0
» Views: 668
✅ Affordable VPS Hosting ...
Forum: Cheap VPS Providers
Last Post: RIYAD
07-02-2025, 03:02 AM
» Replies: 0
» Views: 725
15% Lifetime Discount on ...
Forum: Cheap Providers
Last Post: LLHOST
06-25-2025, 05:03 AM
» Replies: 0
» Views: 318

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