Which Hosts Provide Free Trial

Mar 4, 2009

I am looking to get hosting for site that I want to build. At the moment I am looking for shared hosting. Things that I need from the host are unlimited MySQL databases, Unlimited Domains/Sub-Domains, 5GB Disk Space and 10 GB Data transfer. My budget is about $10/month. I know hostgator provides 1 month for 1cent after coupon. I know hostgator oversells but their plans meet my requirements and from what I have read here they aren't too bad. Are there any other hosts that provide the first month for free or close to free, I would like to try out the hosting service for a month to see for myself how they are.

View 13 Replies


ADVERTISEMENT

Deny Access To Exim For Free Trial Users

Jul 18, 2007

INTRODUCTION

As owner of a hosting provider company, I face the problem of abusive users almost every day. More than 90% of all abuse on my server comes from free trial accounts. I offer free trial access to my servers for people who want to try things out before they purchase a hosting package, but off course this attracts spammers. To prevent trial users from using my server for spamming purposes, I modified my exim.pl file to prevent trial users from accessing the Exim mail server.

Please note that this tutorial has been written for cPanel servers. If you want to use it on a server with a different control panel, you'll need to modify the cpgetpack.c source. If you do so, please share your work with the community by posting it in a reply here.

STEP ONE

First you’ll need to download, compile and install my cpgetpack.c application. Here’s how:

Code:
gcc cpgetpack.c -o cpgetpack
mv cpgetpack /usr/bin/
chown cpanel:cpanel /usr/bin/cpgetpack
chmod +s /usr/bin/cpgetpack
STEP TWO

Now open the /etc/exim.pl file in your favorite text editor (make a backup first) and look for the following inside the checkuserpass subroutine:

Code:
$trueowner =~ s////g;
$trueowner =~ s/..//g;
if (isdemo(${trueowner})) {
return('no');
}
Below, paste the following code:

Code:
my $name = getpwuid($uid);
open(UP, "cpgetpack $name|");
my $userplan = <UP>;
close(UP);chop($userplan);
if ($userplan eq "radix_FreeTrial") {
return "no";
}
You will have to replace the radix_FreeTrial string with the package you assign to your trial users. This will prevent trial users from authenticating which prevents them from sending mail remotely.

STEP THREE

Users are now still able to send mail locally (for example using the PHP mail() function), so here’s what to do next.

Find the checkdemo subroutine in the exim.pl file and replace the complete subroutine with:

Code:
sub democheck {
my $uid = Exim::expand_string('$originator_uid');
if (isdemo($uid)) { return 'yes'; }

my $name = getpwuid($uid);
open(UP, "cpgetpack $name|");
my $userplan = <UP>;
close(UP);

chop($userplan);

if ($userplan eq "radix_FreeTrial") {
return 'yes';
}

return 'no';
}
STEP FOUR

Now just restart Exim:

Code:
service exim restart
It might be a good idea to create a trial account and see if it’s working. Enjoy!

REFERENCE:

Original post: [url]
Best regards,
Josh Burt

View 0 Replies View Related

Which Dedicated Hosts Offer 1 Month Trial

May 25, 2009

are there any that offers 1 month trial? I saw one that offered 3 month trial....

View 14 Replies View Related

VPS Providers That Provide Free OS Reloads

Nov 12, 2008

As the subject implies, does anyone know of any VPS providers that provide free OS reloads, if at all possible? The reason I'm asking is because I am planning on building my Linux system administration skills, allowing me to eventually manage my own server. I am real competent when it comes to Windows, however, I really don't want to use it as much as possible.

So if you know of a VPS provider that provides free OS reloads, I would be real grateful if you could share them to me.

View 14 Replies View Related

Is It Common For Hosts To Provide Only 1 Db

Jul 9, 2007

Is it common for 10-15$+/month to provide only 1 database?

View 12 Replies View Related

How Many Percentage Of Hosts Out There Do Not Provide Cpanel

May 13, 2008

in my country 99% of web masters do not know what cpanel is!

they hardly have any other way of controling things

they use ssh or telnet or ftp and send a support request

now my question how many percentage of hosting companies in the world do not provide cpanel?

And if you as a host do not provide cpanel how should you expalin that to the client?

Is cpanel really necessary?

View 14 Replies View Related

What Hosts Provide Decent Referral Rewards

Apr 30, 2009

I currently host a few sites for small businesses and teachers on my multi-addon shared account. However, I know some companies will provide free hosting or some other deals such as free months or credit or money for referring clients. What are some of these companies that do this?

View 14 Replies View Related

Do Any Good Hosts Provide A CPanel That Keeps Addon Domain Lists In Order

Feb 2, 2008

I find that I like using CPanel with addon domains in a new unlimited domains shared plan rather than using WHM with each name having its own CPanel in a reseller plan (which I have been used to until now at another host). The only problem is that all the addon domains are out of order - they are not even in the order in which I add them. This puts a damper on things and makes managing them much less efficient than one would expect with the addons in order.

After putting in a support ticket, I was told they can't do anything about it at all. They told me the order of the listing is the order in the "mail server apache configuration."

After posting this matter here in the Apache forum, I have been informed by an SP member that the answer I got wouldn't hold any water at all, or more accurately, consists of a whole lot of smoke. As a person who knows how easy and basic it is to sort data lists or drop-down form selector fields myself, I must admit that it's hard to believe nothing can be done in the 21st century.

I have no desire at all to go with another reseller plan, and like using CPanel instead with addons.

Does anyone know of the good and well known unlimited domain hosting providers who keep the addon domains in order within CPanel? Is there any other good option for shared hosting that doesn't involve using WHM and does offer common sense multiple domain management where everything is in order?

View 4 Replies View Related

Can I Find Free Hosts?

May 13, 2008

where can I find free hosts?

View 1 Replies View Related

What Makes Free Hosts Different

Oct 13, 2009

Apart from being free, of course. I can see thousands of free webhosts, many of which even don't put ads, and still support Databases, custom domains, even unbelievable bandwidths. Still, how does premium webhosts remain at the top? Or what is the problem with these free hosts?

View 14 Replies View Related

Experience With Free Hosts?

Jan 31, 2008

I've had some experience with free hosts such as awardspace, etc. And I've done a thousand google searches for free hosts but I'm hoping sitepointers may be able to give some assistance.

I need this hosting for a non-profit that I'm doing a website for, and need 1 MySQL database with it. The site will not require huge amounts of bandwith by any standards so I'm looking for good quality free hosting for this organisation so they don't have to spend the extra bucks.

View 24 Replies View Related

Hosts That Do Free Cpanel Transfers

Dec 26, 2007

I was reading how hostgator will do up to 30 cpanel transfers for a reseller. Are there other hosts that offer a similar service?

View 13 Replies View Related

VPS Trial?

Dec 10, 2007

Does anyone know a webhost that permits potential customers the opportunity to test their VPS? I'm most concerned about the interface to the VPS -- will I have ssh/scp access to the VPS? Most VPS hosts seem to use other non-standard (ie. not ssh or scp) protocols for administering a VPS. I'm not sure if I would like them.

View 4 Replies View Related

Trial VPS

Jul 29, 2007

Anyone out there offer a free trial or a month free for signing up? I want to make sure it's for me before I sign up and spend the money.

View 4 Replies View Related

Provide Shared SSL

Jan 12, 2007

To provide Shared SSL on cpanel linux, need to install SSL on WHM and let client to use/access like [url]. However, it can alwasy lead to abusing of bandwidth because with accessing[url], they can use server's bandwdith, not client's.

Is there anyway to prevent it? so only enable [url]? instead of using firewall to block port or like that.and enable [url

View 7 Replies View Related

Partition My Server And Provide A Few VPS

Apr 13, 2008

I'm planing on virtualizing my server and selling off windows 2008 virtual machines running on windows server 2008 hyper-v.

Is it common for people with dedicated servers to sell off virtual slices?

View 5 Replies View Related

Company That Provide Backup Service?

Feb 7, 2009

Does anyone know of a company that provide backup service

I need to be able to FTP in and upload/download.

It is to upload backup files from my shared hosting account, so I have a backup.

View 4 Replies View Related

Companies That Provide Backup Space

May 2, 2009

i want to ask about best companies that provide backups spaces

View 14 Replies View Related

Provide Hosting For Multiple Clients

Apr 15, 2009

I am a front end designer/developer with no server-side expertise. I am probably going to have to provide hosting to my freelance clients very soon. These would be small WP sites with low traffic, but there could be as many as 50 domains being hosted at a time just to begin with.

I need the host provider to do all the tech work and provide support to me, if not to the clients (who will inevitable contact me to deal with problems, which is OK). I am not able to manage/troubleshoot my own server.

I am considering Mosso/Rackspace, but recently I've heard some very negative comments on forums (such as this one) that are concerning me.

Does anyone have a recommendation given my needs and experience level with servers/hosting? I am not looking for a "cheap deal" - I need reliable service and peace of mind.

View 10 Replies View Related

Any Webhost That Provide Instant Setup

Sep 25, 2009

I mean like no ID checks and they provide instant setup if I am paying by paypal. I know credit card they find it risky but I am paying with paypal they should not ask for any ID verification and Hostgator claims they provide instant setup but its very rare they flag your order even if you pay by paypal.

View 14 Replies View Related

Registering Domain, Which IP Address Should I Provide

Feb 4, 2008

I want to register a domain from some organization. During the registration the registrar asks me to provide a primary DNS with an IP address and a secondary DNS with an IP address.

Because I have already a website with a godaddy hosting, I want that may new domain also points to my godaddy hosting. So I have to provide the DNS of my godaddy hosting to the domain registration company.

But my question is; Which IP address do they require? Do they ask me the IP address of my DNS’s (NS43.DOMAINCONTROL.COM, NS44.DOMAINCONTROL.COM) or the IP address of the server on which my website is running.

View 7 Replies View Related

How To Provide Jabber For Shared Hosting

Mar 28, 2007

I have a web server for shared hosting and I'd like to know if it's possible to offer Jabber. It seems Jabber is not like MySQL that is suitable for a shared environment, right? Is there a way for each account to have its own Jabber server?

View 0 Replies View Related

Universal Hosts (uni-hosts) Two Week Mini Review

Apr 2, 2008

I was in the market for a new dedicated server after a couple of years with my previous provider. The previous provider did nothing wrong but they were no longer competitive when it came to CPU and memory.

I moved first to geekrack. And I left them after a week and a half as they never were able to get my rDNS records setup.

I found Universal Hosts on this forum and gave them a shot. I had asked for an operating system that they didn't offer normally (Debian 64 bit) and they said that they could do it. However, when my server was setup it was 32 bit Debian instead. They apologized and had Debian 64 bit setup less than 24 hours later.

When I asked them to get rDNS records setup it took a few hours but they were setup correctly and they worked.

Universal Hosts is also a BurstNet reseller but compared to my other attempt at using a BurstNet reseller they are fantastic. While the initial config was incorrect they worked quickly to fix it and were very professional about it.

So after two weeks - so far so good. Keep up the good work UniHosts!

View 1 Replies View Related

Apache :: Virtual Hosts With Windows 8 Hosts File

Aug 11, 2013

I am running Apache2.2, PHP5.I have been running with virtual hosts on a Windows 7 environment fine for a couple of years successfully, but have just had to move to a Windows 8 environment.It looks like Apache and PHP have installed and are working fine, but my Virtual hosts are now not being recognised. From what I can tell, it is the Windows 8 hosts file that is having a problem, as it looks as though it is now just setup to Block websites.

If I make the host file just have the one line127.0.0.1 localhost entry, then the very first Virtual Host from my apache config file will come up, but the rest are not found.If I put the usual 127.0.0.1 mywebsite.name aliasname is appears as though my website works momentarily and then is blocked..

View 7 Replies View Related

Using A VPS To Provide Internet Access Via ADSL Line

Jan 10, 2008

This might win me the "stupidest idea 2008" award but I was wondering..

I have an active ADSL line at home but I don't have an active account at an ISP.. Could I somehow get Internet access through my VPS (for a week or so, till my new ISP activates my account)?

View 6 Replies View Related

Dedicated Server Provide Allow Warez Linking?

Dec 10, 2008

Any good recommanded dedicated server providers which allows Warez linking?

View 11 Replies View Related

Free Hosting And Free Domain

Sep 17, 2009

Do you think if a company offered free web hosting and free domains people would snap them up like there is no tommorow?

Also does anyone one how much ICANN acredited registrars pay ICANN when they register a new domain?

any feedback would be great!

View 8 Replies View Related

SSL Certificate (free Install + Free Ip)

Aug 5, 2009

Simplehelix offers a 128/256 bit RapidSSL Certificate for just $99.95/year. In addition, this certificate comes with a year of dedicated IP address with free installation.

Do you think the conditions are normal?

View 4 Replies View Related

Pacificrack.com Is Reliable ? Do They Provide Quality And Good Services ?

Aug 12, 2008

hi i was planning to buy one server from pacificrack and while googling about pacificrack i found this site

and saw many content about pacificrack here...so i just registered just by thinking that

i can get best suggestions here from industry experts


so anyone one here using pacificrack ? are they reliable and good company?

View 7 Replies View Related

Any Hosting Company Provide Over 20gb Bandwidth Per Month

Dec 8, 2008

I am in a process searching for a well know hosting company provide over 20gb bandwidth transfer per month. I am currently using 1and1.com for titan.

I found softlayer and they only provide 10gb max and cost $1800 per month.

View 12 Replies View Related

Directadmin Hosts Or Cpanel Hosts

Aug 16, 2008

Recently I stumbled along a host on here with a good rep and that uses direct admin.

Because they were very nice on the live support I signed up to see what direct admin was like.

Its very diferent from cpanel. Some parts seem to be harder to use like the phpmyadmin requires the username and password to the database you created not the control panel username and password like cpanel. Although I guess that could be a good security feature just in case some one gets into the control panel they can not get into the phpmyadmin, then again if they are smart and were able to get into the control panel they could get into ftp and look what the username and password is on the config file for the script you are using.

The bandwidth meter seems to be better in direct admin although I think its acting up for me as its putting yesterdays bandwidth on todays. I was told by the host that it updates every 2 hours and at first it did but now its gone to every day. Oh and unlike cpanel this bandwidth meter includes bandwith used by the control panel.

Niether one from what I can tell counts sftp though at least for the hosts I have right now.

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved