Free CGI Access

May 14, 2009

I am after a free webhosting site that will let me run cgi scripts... I have tried so many sites that are meant to support these scripts, but none of them work...

Does anyone know of a free site that will let me use cgi?

View 1 Replies


ADVERTISEMENT

Free Hosting With Access To Cron Jobs?

Oct 25, 2008

I need a reliable, free host where I can run wget on a URL (less than 1k) every 10 minutes via a cron job.

Can anyone reccommend anything?

View 15 Replies View Related

Free SMTP Access For Email Forwarding?

Jul 24, 2006

I have a contact form using .php to forward the contents of the form to my email-ad, but turns out, that something i cant do with my free hosting plan.

i was wondering if anyone knew any services (free) that allow mail forwarding where i can host my .php script together with all associated files and simply link to them from my site?

that would be great! thanks!

(not sure where exactly this post belongs, but it's got something to do with my hosting so im posting it here. if any mods think it should be somewhere else, just move it to where you feel it is appropriate )

View 6 Replies View Related

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

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

Plesk 11.x / Windows :: How To Limit Access To Few IP Address To Access Port 8443 On Firewall

Aug 28, 2012

How can I allow only one ip or a list of ip addresses to access port 8443.I need to limit access this port to few ip addresses and not everyone

View 6 Replies View Related

IIS 5 - Cant Access Page From IE7 But Can Access From Firefox

Feb 20, 2008

I found a great little app called ID Shutdown Manager which bascially lets you do stuff like wake on LAN, Shutdown, Log Off etc.

The App also has a cgi script which you can call from a web server so you get a web interface to the program.

This is exactly my reason for getting the app as I just wanted to host a web page where I could login from the internet and wake on lan my media PC.

Ok so...

The app gives you all the iis or apache setup instructions and tells you to place the cgi script which is actually a .exe into the scripts folder and then enable basic authentication for it.

Done.

So if I navigate to <SERVER>/scripts/sdmancgi.exe its supposed to give me a user / pass prompt and then when login successful I see the app and can wake on lan etc.

ok I have got this to work

on the actual machine where server is running I can access it in IE7 by localhost etc.. and it works

However when I try to access from another PC in my lan by typing <SERVER>/scripts/sdmancgi.exe I get a nice little message saying the content cannot be displayed you may require to insall a program or something to display it.

If I try to access the page from firefox on same remote PC, it works!

I can also access page from outside my LAN, it works on my N95 browser.

Also I have had friends try it from firefox from the Internet and they say it works as well.

Forgot to mention I am running on port 8081 as I already have other servers running on 8080 and 80 (one is my router and the other server installed itself from setup.exe and I dont know what server its using)

I have also tried latest apache server as well as some other free one. Both have the same effect. Ok in firefox, not in IE.

One would think its a problem with the cgi file not compatible with IE7 however, I even tried to go to default page setup in IIS <SERVER>:8081 and I get the same message. So at this point the server hasnt even tried to access CGI or prompt for Basic Authentication.

I tried googling and not much luck. I read something about CSS and when I view source of failed web page from IE7 it mentions something about CSS so dont know if this is it?

View 4 Replies View Related

Can't Access Ping Or Access SSH

Apr 30, 2009

I'm having trouble with a vps and the ips won't ping and can't connect via ssh.

I can via hypervm console when I run apt-get update but it doesn't download anything.

View 8 Replies View Related

Can't Access Dns Only Remote Access Key

Apr 24, 2007

I have successfully installed dns only to my vps. the problem is when i try to add it to the cluster system on my other vps it asks for a remote access key, so i visit both ip:2087/scripts/setrhash and ip:2086/scripts/setrhash and it shows an unable to connect error in firefox.

this is both using [url]

does anyone know how i can access the remote access key?

View 6 Replies View Related

Free VPS - Should I Keep It

May 3, 2008

I cancelled a VPS ages, ago, and they stopped charging me, but it's still up, and I can use it. I emailed them saying they hadn't stopped it, but they haven't replied in 2 days. Should I just keep using it?

Think I might just set up a CS server and leave it

View 14 Replies View Related

Free Hosting

Nov 28, 2008

What does everyone think about free hosting? Is there always a catch or are there really some good free hosting?

View 24 Replies View Related

Best Free Hosting

Aug 24, 2009

I need a good and free hosting with php/mysql support for a personal site i am making.

All the site is database driven so the host needs to have fast db connections.
The site will also have some audio/photos not bigger than 3/4mb.

Any suggestions?

View 19 Replies View Related

Looking For A Free Hosting

Oct 1, 2007

I've made my first website and I'm trying to find web hosting that is free and that it will also allows me to transfer my files through ftp directly through an ftp server. (ftp.example.com)

I've tried using the one for freewebpage.org but it doesn't work.. I tried it using port 21, 22, and 80 in both frontpage and filezilla and they didn't work.. I guess it's the ftp server that isn't really working, or the information they provide is inaccurate.

View 17 Replies View Related

Looking For Free ASP.net Hosting

May 7, 2007

I have been searching for free ASP.net hosts since last few months and I didnt have much success in it,

so far I have tried these sites none work ...

View 2 Replies View Related

Server Has 7 GBs Of Free RAM

Oct 27, 2009

Current server has 4 GB ram, all buffered by linux.

Code:

total used free shared buffers cached
Mem: 4054 3917 137 0 99 2139
-/+ buffers/cache: 1678 2375
Swap: 4094 0 4094

The buffer has 2375 MB of free ram. However this is a heavy mysql server. I want the empty ram be used by mysql so it becomes faster.

We are currently moving to a 8GB ram server, and the free ram will be around 7 GB if we use the exact same configuration. I want the free ram to be 1 GB at most, why pay for 8 GB ram if I'm going to use a fraction of it?

What optimizations should I attempt?

I know about harddisk I/O bottlenecks, I have two SATA drives in the system, and a SAS drive dedicated to mysql, that's all we can afford currently.

All mysql databases are for SMF forums, and currently using MyISAM tables. Switching to another storage engine is a possibility, if it won't create problems in restarts and hot backups.

View 14 Replies View Related

Free FTP Program

Jan 14, 2009

Does anyone know where I can get a free FTP program?

View 14 Replies View Related

Is HyperVM Free

Feb 8, 2009

Is HypereVm free? and if so how do you set it up.. do you just run the shell or?

View 14 Replies View Related

Free Web Hosting Ads?

Jun 25, 2009

i have seen one website ad on internet, offering free web hosting for 1 year (500 mb) with the purchase of any domain name.

I would like to confirm. Is these types of Ads are original or they are offering a fake offer (hidden cost). Because as i know, the domain hosting cost is very high as compare to buy a domain...

View 24 Replies View Related

Free Windows

Mar 11, 2008

which hosts have free windows?

View 8 Replies View Related

Free DNS Services

Aug 5, 2008

what free DNS hosting service to use? So far I have had experience with the following services:

Xname.org - fine, admin-wise kind of DNS zone management. Con: it is relatively often offline (DoS/whatever0

EditDns.net - fine, but it has several times rolled abck their DB state, wiping out my records. I can't name that a rliable service.

EveryDns.net - fine, quick, easy to manage. Con: I have tried to donate, to have limits removed, but my donation was never recorded, all the attempts to contact the administration failed, as well.

View 1 Replies View Related

Different Free MEM Via Different Commands

Jun 9, 2008

I am running a CPanel VPS and wanted to see whats the actual ram stats. (My package have 512 MB ram)

The issue is, using two different methods, I am getting two different values.

Via SSH, free -m gives this
total used free shared buffers cached
Mem: 512 204 307 0 0 0
-/+ buffers/cache: 204 307
Swap: 0 0 0

and while running a script that I have found Here in WHT

Code:
#!/bin/bash
#
# Revised 02-Feb-2007: include kernel memory (kmemsize) in 'used' calculation
# and show percentages in output.
#

BEAN=`cat /proc/user_beancounters`
GUAR=`echo "$BEAN" | grep vmguar | awk '{ print $4;}'`
PRIV=`echo "$BEAN" | grep privvm | awk '{ print $2;}'`
KMEM=`echo "$BEAN" | grep kmem | awk '{ print $3;}'`

let TOTL=$GUAR/256
let KMMB=$KMEM/1048576
let PVMB=$PRIV/256
let USED=$KMMB+$PVMB
let FREE=$TOTL-$USED
if [ "$FREE" -gt "0" ]; then
let UPER=$USED*100/$TOTL
let FPER=100-$UPER
else
let UPER="100"
let FPER="0"
fi
echo "VPS Memory:"
echo " Total: $TOTL mb Used: $USED mb (${UPER}%) Free: $FREE mb (${FPER}%)"
It gives
Total: 512 mb Used: 482 mb (94%) Free: 30 mb (6%)

Why such huge difference??

Also "top" command shows
top - 02:44:04 up 1 day, 9:55, 2 users, load average: 1.35, 1.04, 0.94

Is that good for a a VPS with 512 RAM? (The site has extremely high traffic)

View 0 Replies View Related

Free Web Hosting .....

Jan 25, 2008

I think this information can be useful for you. If you plan to get your website, here is one good free web hosting provider to choose - 000webhost.com

They provide hosting absolutely free, there is no catch. You get 250 MB of disk space and 100 GB bandwidth. They also have cPanel control panel which is amazing. Moreover, there is no any kind of advertising on your pages.

View 3 Replies View Related

How To Get Free Host Of My Own

May 14, 2008

I want to know if it is possible to get a free service of my own?

like how Geocities offers free hosting with ads ie, I want to be able to do this, I know it is sort of possible

ie, [url]

View 1 Replies View Related

Free Web Host W/ IP Log

Oct 25, 2008

I've been wondering if there are any free hosting sites that have IP Adress logs of the people that have visited your site.

View 3 Replies View Related

Free Web Hosting

May 7, 2007

Here's a new free web host to check out:

[url]

5GB disk space
20GB monthly bandwidth
10 MySQL databases
PHP support

Perfect for sites that aren't bandwidth intensive. Anyway, you can't beat the price, particularly if you need to host lots of small sites. I'm currently using the service to host articles and link pages, and it's working out nicely.

View 4 Replies View Related

Free Litespeed

Dec 15, 2008

Anyone using free version of litespeed?

View 3 Replies View Related

Free No-ads Hosting

Aug 6, 2008

some companies claim that they provide hosting services better than some paid ones for free and with no ads. Like 110MB Hosting

View 3 Replies View Related







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