Does most cheap hosting have cURL enabled for license check calls?

jamie3000

Elite Member
Executive VIP
Jr. VIP
Joined
Jun 30, 2014
Messages
13,800
Reaction score
5,238
I'm developing a wordpWord plugin, I'd like it to call home for licensing checking etc.

Its been years since I've used shared hosting.

Do most allow php's curl and fsock?

Thanks :-)
 
It would depend on hosting to hosting.

But hosting a licensing server on shared hosting is never a good idea. During down times, it could create a conflict for your users or even prevent new licenses from being issued, thereby costing you a sale.

You're better off setting up a dedicated licensing server on a DigitalOcean droplet. An Ubuntu droplet with a Lamp environment would give you a nice dedicated environment for your licenses. You can even turn on backups for the server. And have full control on modules like curl or fsock.
 
It would depend on hosting to hosting.

But hosting a licensing server on shared hosting is never a good idea. During down times, it could create a conflict for your users or even prevent new licenses from being issued, thereby costing you a sale.

You're better off setting up a dedicated licensing server on a DigitalOcean droplet. An Ubuntu droplet with a Lamp environment would give you a nice dedicated environment for your licenses. You can even turn on backups for the server. And have full control on modules like curl or fsock.

Sorry my post wasn't worded very well. I meant the plugin would use curl to call home with curl (on shared hosting probably) to my own server on Aws.

I was just concerned I'd have people installing my wordpress plugin and then they wouldn't have curl so the license check wouldn't work.

I do all my stuff on Aws and gcloud so have no idea about shared hosting these days
 
I would also suggest what BlogPro is suggesting you, forget about cURL and just build a simple json API. This will get the work done everywhere.
 
namecheap has every imaginable extension turned on, their shared hosting even provides SSH, it's almost like having a dedi. I've moved tens of client sites to a single namecheap pro plan.

Yeah I praise namecheap often in my posts and NO I'm not affiliated at all, it's just good service, good support and cheap prices which I appreciate.

I can change my mind in the future, as I have with many hosting cos in the past, but for now NC is fine.
 
namecheap has every imaginable extension turned on, their shared hosting even provides SSH, it's almost like having a dedi. I've moved tens of client sites to a single namecheap pro plan.

Yeah I praise namecheap often in my posts and NO I'm not affiliated at all, it's just good service, good support and cheap prices which I appreciate.

I can change my mind in the future, as I have with many hosting cos in the past, but for now NC is fine.

Yep, I buy my domains and ssl through them, best by far
 
Back
Top