arrow_upward

Posted by: rpark - 12-01-2016, 02:32 AM - Forum: Other Free Service Providers - Replies (7)
Hello Everyone!

I got an amazing deal on hosting, so I will help everybody in need of my small service. This is great for school projects, as you can host files easy through the PYDIO platform!

Overview:
Location: US Server
Number of applications: 3
Storage Quota: 500MB
Encryption: Yes, the file hosting panel is secured using SSL/TLS

I can only host thirty people at the moment, so this is based off a first come first serve basis.


Now there are two ways of obtaining access (or the Format):
This will be used until I can find a way to automate this process.

Recommended: Send me an eMail.
Send the eMail to [email protected]

Name:
E-Mail Address: (This is optional, as I can use the address you use to send me this eMail)
Preferred Username: (This is still being worked on, but I will try to give you the username you want)

Second way:
Post a reply in this thread using the format above.

Thank you!
Posted by: Vuluts - 11-28-2016, 03:09 AM - Forum: General - Replies (2)
Does anyone tried creating or using iOS Enterprise App Private API?
Posted by: dragon1600 - 11-27-2016, 12:51 AM - Forum: Hardware & Technology - Replies (14)
So lets say u have 2 hdd's both are the same model and same speeds, what would be faster and why, USB 3.0 or Sata III.

In my first opinion i would think that usb 3 would win, but then in the other side i would think that sata would win because sata is direct to the mainboard, and USB 3.0 is not made to have windows running on it. 

but then what is faster, what do you think  Blush
Posted by: dotisse - 11-26-2016, 05:39 PM - Forum: General Gaming Discussion - Replies (9)
i am playing with 4:3 1280x1024 (stretched) but what resolution are you playing with?
Posted by: RIYAD - 11-24-2016, 10:23 PM - Forum: Cheap VPS Providers - Replies (13)
Hi

As the title says we are offering 10GB Ram KVM VPS for only $5.99/month . You can run windows and linux os too !

Package details :

10GB Ram
4xCPU
200GB Space
250Mbps Bandwidth (Un-metered )
Free Linux OS
Free Windows OS
Windows 2008R2
Windows 2012R2
(Windows Trial OS)
Free Reinstall OS
Self-Managed
France Location
$5.99/months !

Order Now

Read TOS always before ordering .

ThankYou
RIYAD
Posted by: TrK - 11-24-2016, 07:02 AM - Forum: Cheap Providers - Replies (6)
[Image: Logo_wp.png]
TinkerHost.com Black Friday Sale. 50% off for life


Yeah you heard it right TinkerHost is providing 50% OFF on their hosting plans for life, offer is valid till 27th November so hurry up grab your hosting space now. It’s that time of year again. Black Friday is just around the corner. This is where people get the greatest deals of the year, if not for a lifetime.

Shared Hosting
Hosting Package Basic
  • unlimited Storage and Bandwidth
  • SSD Cached Storage
  • 1 Website/Domain
  • unlimited sub domains
  • unlimited emails
  • unlimited parked domains
  • 1 Gbit Connection
  • FREE Domain if Paid Yearly
  • Google PageSpeed
  • Daily backups
  • Dallas, TX Data Center
  • MariaDB Support
Price $4.95/m $2.47/m or $25/y (order)

Hosting Package Plus
  • unlimited Storage and Bandwidth
  • SSD Cached Storage
  • Unlimited Website/Domain
  • unlimited sub domains
  • unlimited emails
  • unlimited parked domains
  • 1 Gbit Connection
  • FREE Domain if Paid Yearly
  • Google PageSpeed
  • Daily backups
  • Dallas, TX Data Center
  • MariaDB Support
Price $9.95/m $5/m or $50/y (order)

To learn more about this offer kindly visit the offer Page https://tinkerhost.com/black-friday-sale-2016/


Disclaimers:
  1. Coupon is valid only for new Clients, placed between November 23th 11:59PM EST through 11:59PM EST November 27th.
  2. You can order as many new hosting packages as you’d like, there is no limit on how many new hosting orders you can place with this coupon.
  3. This coupon is only valid for these hosting services specified (shared, Reseller Hosting.)
  4. The promotion cannot be applied to existing services (upgrades, renewals,Clients, etc)*
  5. Unpaid orders will be terminated after 24 hours. Clients cannot order during the promotion period and pay the invoice more than 24 hours after it’s generated to receive service.
  6. We reserve the right to adjust or prevent use of the coupon at our discretion.

Posted by: Conan - 11-20-2016, 03:11 AM - Forum: Tutorials - Replies (1)
acmetool - An Alternative for CertBot | DNS Auth for Cloudflare


acmetool is an alternative client for acme CAs like Let's encrypt. It's easier to use as well. One of the biggest differences is it doesn't configure the web servers for you. It offers autorenewal using cron. (With certbot, you need to manually setup the cronjob)
I will be helping you to compile it from source Smile THen setup for DNS auth using cloudflare.

NOTE: This is for CentOS only. (only tested on 7) I will be continuing writing this next week. (I'll add instructions for other distros)

Links:
https://github.com/hlandau/acme

Installation of Requirements
CentOS
Spoiler Expand
[unix]
sudo yum install -y epel-release make libcap-devel golang nginx python34 bind-utils
curl -O https://bootstrap.pypa.io/get-pip.py
sudo /usr/bin/python3.4 get-pip.py
[/unix]

1. Let's get the source first.
[unix]
cd ~
git clone https://github.com/hlandau/acme
[/unix]

2. Compiling the code
[unix]
make
sudo make install
[/unix]

3. acmetool setup
[unix]
sudo acmetool quickstart
[/unix]
When asked for what ACME server to use, please select the Live server by pressing "1" then press enter.
When asked for what challenge to use, please select hook by pressing "6" then press enter.

4. Setup the hooks that is needed
[unix]
cd /usr/libexec/acme/hooks
wget https://github.com/yinguanhao/acme-dns-h...r/dns.hook
[/unix]

Get the API key for your cloudflare account
Spoiler Expand
Go to https://www.cloudflare.com/a/login and login.
Go to your settings and click "View API Key" on Global API Key. (It should be like this "e62848e7da4da13dcc35a238cae8684b7fe4f")
[spoiler]
Configuring the hook file
[spoiler]
open dns.hook on your favorite text editor then go to line 45.
Replace "EMAIL" with your email. Then Replace "KEY" with your API key. Enclose both with double quotes.
Ex.
Code:
headers = {
    'X-Auth-Email': "[email protected]",
    'X-Auth-Key': "e62848e7da4da13dcc35a238cae8684b7fe4f",
    'Content-Type': 'application/json'
}
Save the file.
Testing the hook
Spoiler Expand
[unix]
python3 dns.hook test test.domain.tld #Replace with your domain
[/unix]
If it outputs an error please check the Email and Key

5. Getting a certificate
This is the easy part Smile
[unix]
acmetool want domain.tld www.domain.tld sub.domain.tld #Replace with your domains
[/unix]


Certificates are stored in /var/lib/acme/live/domain.tld

Extra Notes:
Use "/var/lib/acme/live/domain.tld/fullchain" when configuring your webserver
The private key is stored in "/var/lib/acme/live/domain.tld/privkey".
(Change domain.tld to your domain of course)
I don't remember if it asks you to setup cronjobs on quickstart, if it asked you select yes. (This is for auto renewal)
Posted by: PaddiM8 - 11-19-2016, 06:15 PM - Forum: General - Replies (20)
What are your methods of earning money with VPS:es? I only have a VPS in France, so I don't have many options. I'm planning to grab one in USA, and try InstaGC and Bing Rewards. 

Do you have any AUTOPILOT methods? Let's collect them here:

EarnHoney(video watching) - Autopilot
InstaGC(video watching) - Autopilot
Bing Rewards - Autopilot if using bots
Posted by: PaddiM8 - 11-19-2016, 05:48 PM - Forum: General Gaming Discussion - Replies (29)
I have a Nvidia GTX 740M graphics card... I'm not very happy with it, but it's what to expect for a $600 laptop :Tongue I'm soon getting a new Desktop PC, and I plan to put a Nvidia GTX 1060 in it! I need something easy to take with me(portable), so I'm probably going for a Prodigy M case(white).
Posted by: Dale - 11-19-2016, 03:45 PM - Forum: Other Free Service Providers - Replies (26)
[Image: logo.png]
At the moment we are providing Free Game Servers which include : Counter Strike 1.6 , San : Andreas Multiplayer, and Multi Theft Auto.


Useful Links: Counter Strike Server Features:
  • 32 Maximum Slots
  • Variety Of Mods Available
  • Low Ping Servers.
  • DDOS Protection
  • A Great gPanel
San Andreas Multiplayer Server Features:
  • Minimum 32 Slots , Maximum 50 Slots!
  • Variety Of Mods, Users can also install their mods aswell.
  • Low Ping Servers  70-100(Depands on the user's location)
  • DDOS Protection
  • And Again A Great gPanel
Our gPanel Provides Most Of The Features Which Includes :
  • Start, Stop, & Restart
  • Web File Manger (FTP) 
  • FTP Account
  • Rcon Console
For Any Issue With The Server you can open a ticket in the Support Section! Our team will resolve the problem very quickly!
Server is 24/7 Monitored , Server with more than 2 weeks inactivity will be removed!

We will be also providing CS GO , CS SOURCE servers within a week!
Pages (305): 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,093
» Forum posts: 34,816

Full Statistics

Online Users
There are currently 424 online users.
» 0 Member(s) | 421 Guest(s)
Google, Bing, Applebot

Latest Threads
LLHOST — VPS hosting for ...
Forum: Value VPS Providers
Last Post: LLHOST
04-30-2025, 12:10 PM
» Replies: 0
» Views: 30
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers
Last Post: LLHOST
04-22-2025, 11:04 AM
» Replies: 0
» Views: 125
LLHOST: VPS in the Nether...
Forum: Others
Last Post: LLHOST
04-15-2025, 07:32 PM
» Replies: 0
» Views: 195
Hello all!
Forum: Meet & Greet!
Last Post: perry
03-26-2025, 11:28 AM
» Replies: 1
» Views: 264
Buy DemoTiger Videos on c...
Forum: Others
Last Post: DewlanceHosting
03-25-2025, 02:07 PM
» Replies: 5
» Views: 3,337
VisualWebTechnologies | 7...
Forum: Others
Last Post: visualwebtechnologies
03-11-2025, 02:58 AM
» Replies: 0
» Views: 208
Post2Host.com domain on a...
Forum: Others
Last Post: Variable
03-10-2025, 04:04 PM
» Replies: 0
» Views: 169
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers
Last Post: HostNamaste
03-05-2025, 12:15 PM
» Replies: 0
» Views: 377
Create Unlimited Virtual ...
Forum: Hardware & Technology
Last Post: bestadvisor
03-01-2025, 09:47 AM
» Replies: 0
» Views: 590
VisualWeb offers cPanel H...
Forum: Others
Last Post: visualwebtechnologies
01-23-2025, 03:38 AM
» Replies: 0
» Views: 268

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