Free Hosting With Access To Cron Jobs?
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 Complete Thread with Replies
Sponsored Links:
Related Forum Messages:
Per Second Cron Jobs?
Hey everyone, my friend's dad is looking for a web host that will allow his cron jobs to run every second. Most hosts apparently dont allow cron jobs faster than 5 seconds apart. How often a host can run cron jobs isn't really advertised on their sites so I'm having a bit of trouble finding a host. I've resorted to just sending emails to sales addresses asking about it. Does anyone know how I can find a host like this?
View Replies!
View Related
How To Schedual Cron Jobs
I have a number of PHP scripts that I would like to automatically run daily at midnight. I am currently running a VPS server but have no idea how to achieve this. I do have webmin on my sever but am unsure of what command I need to run.
View Replies!
View Related
Cron Jobs Not Running
I have a machine, that for some reason stopped running it's cron jobs for some reason, and I can figure out how to get them working again. My /etc/crontab file is as follows. SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root HOME=/ # run-parts 01 * * * * root run-parts /etc/cron.hourly 02 4 * * * root run-parts /etc/cron.daily 22 4 * * 0 root run-parts /etc/cron.weekly 42 4 1 * * root run-parts /etc/cron.monthly Here are the contents of a sample user cron file. MAILTO="USER" 10 4 * * * php -q -f /home/USER/public_html/tools/updtransfers.php /home/USER/public_html >/dev/null 2>&1 10 5 * * * php -q -f /home/USER/public_html/tools/updateexp.php /home/USER/public_html >/dev/null 2>&1 10 5 * * * php -q -f /home/USER/public_html/tools/invoice_cron.php /home/USER/public_html >/dev/null 2>&1 and another */5 * * * * /usr/local/bin/php -c /home/USER/php.ini /home/USER/public_html/poller.php > /dev/null 2>&1 I've checked my logs, and I can find no errors anywhere. When I run the commands manually via SSH, they work perfectly, they simply are not being run automatically the way they are supposed to be. I have checked, and the crond service is running. I have tried restarting it, but it seams to have no affect. I really have no idea what the issue is. The only thing I seam to have found at one point, was the possibility that the files within the /etc/cron.d directory might be CHMOD'ed wrong, but I haven't found anything to confirm this either way. [root@server cron.d]# ls -all total 60 drwxr-xr-x 2 root root 4096 Dec 17 03:07 . drwx--x--x 94 root root 12288 Jan 3 09:28 .. -rw-r--r-- 1 root root 61 Jun 22 2007 csf_update -rw-r--r-- 1 root root 81 Apr 11 2007 lsm -rw-r--r-- 1 root root 79 Jun 22 2007 prm -rw------- 1 root root 366 Feb 23 2007 sa-update -rw-r--r-- 1 root root 82 Jun 22 2007 spri -rw-r--r-- 1 root root 188 Nov 16 23:14 sysstat [root@server cron.d]#
View Replies!
View Related
Cron Jobs Failing
I have jobs that fail every now and then. I get this email: Looking up www.xxxx.com www.xxxx.com Making HTTP connection to www.xxxx.com Sending HTTP request. HTTP request sent; waiting for response. Alert!: Unexpected network read error; connection aborted. Can't Access [url] Alert!: Unable to access document. lynx: Can't access startfile
View Replies!
View Related
Software To Control Cron Jobs?
Is there any software which would control cron jobs? I've a problem with cpu load where some customers are running more than enough of them at the same time. Is there any software which would be able to: If there are more than x crons running at the same time, put others in queue and execute after there are no more than x-1 are running?
View Replies!
View Related
Cron Jobs And Time Zone Differences
I have a customer billing system. I would like crons to run at midnight so that the invoices are on schedule and have the right dates etc. My server is overseas and my time is plus 14 hrs here. I have set my software up to plus 14 hrs time difference also. What should I set my crons to?
View Replies!
View Related
Determine What Cron Jobs Are Killing Server And When
We're running on Linux/Apache/MySQL/RoR and have a number of cron jobs that run throughout the day on our server. We've been noticing lately that at certain times of the day the site becomes really slow. When I'm online with my engineers I can mention this to them and they can check and see and say "Oh yeah, it's job XYZ that's spiking the server load." That's great but much of the time when I notice the sluggishness my developers are offline (we're in different time zones). I'm wondering if there's a fairly easy way to track this when they're not online so we can say "Yup, last night at 10 PM your time when you noticed that it was job ABC." There has to be something that allows you to do this right?
View Replies!
View Related
Variable Filenames By Date In Cron Jobs
How do you insert variables in cron jobs? e.g. the current date. Let's say I want to back up a file and append the date to it. 0 0 * * * cp /some/file.txt /some/outputfile_[DATE].txt >/dev/null (note that I'm not sure the cp will actually work like that, it's just an example) Where outputfile_[DATE].txt has the date in it. Are there variables cron can use for date, hour, minute, etc.?
View Replies!
View Related
Cron Jobs Not Executing PHP Files
I have a new dedicated server and am trying to set up a cron job via CPanel on on of my accounts (we'll call it "abc" account). In the Cron job area, where it asks for the command to run, I enter this: /home/abc/public_html/forum/class/sendnotice.php But when the job runs, it doesn't seem to be executing the .php file. Instead, I get stuff like this via email: /home/acb/public_html/forum/class/sendnotice.php: line 1: ?php: No such file or directory /home/abc/public_html/forum/class/sendnotice.php: line 2: ////////////////////////////: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 3: //: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 4: //: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 5: //: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 6: //: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 7: //: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 8: //: is a directory /home/abc/public_html/forum/class/sendnotice.php: line 9: //: is a directory So it is as if the cron job is reading each line of the .php file instead of just running it. Am I doing something wrong in setting up the cron job to run that file or could it be a configuration issue with the new server?
View Replies!
View Related
Free CGI Access
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 Replies!
View Related
Free SMTP Access For Email Forwarding?
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 Replies!
View Related
Deny Access To Exim For Free Trial Users
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 Replies!
View Related
Free Hosting And Free Domain
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 Replies!
View Related
Shared Hosting With Shell, Cron And Ping/traceroute
I'm looking to set up some custom monitoring stuff that ties into my existing systems, so that's why I'm not looking for established monitoring services. I'm looking for a shared environment where I could ping and trace to my equipment, either from cron or a background daemon which I'd write in perl, python, etc. I'd also want it located somewhere on the left coast or Texas. Does anyone know any hosts that would meet the above?
View Replies!
View Related
Best Free Hosting
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 Replies!
View Related
Looking For A Free Hosting
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 Replies!
View Related
Free Hosting For Joomla
I'm hungarian and my english is not very well. So I'm looking for a free hosting with the most space (for videos etc.) and in which Joomla can run correctly. I've been looking for a hosting like this for weeks now but I couldn't find any. I would be really grateful if anyone can show me a hosting like that.
View Replies!
View Related
Free Hosting Server
im looking a free hosting server, let me explain what im looking for, i have some free softwares on my hard drive, i want to host them so other people also downloads these and its give me also a web location to store them in one place, for this im looking a free hosting server which support a great amount of web space and bandwidth.
View Replies!
View Related
Finding The Right Free Hosting
I have searched the internet all over , to find a web host that offers : FREE Domain Mapping Full support of Wordpress << MySQL , PHP Send mail Hot linking enabled Great uptime Decent bandwidth speedy servers NoOo Ads , and the ability to put mine did it mention it should be?
View Replies!
View Related
Adult Free Hosting?
Is there a site that shows the different companies that offer free hosting? I have found a few but they never state if the company offers a free site creator or if the site allows you to use ithe free service for adult websites? Please help i need a site creator because i do not know html plus i want to make a adult site!
View Replies!
View Related
Best Free Hosting Site
i play for a football team and have designed a web site for the team and i am now looking for a free web hosting service and also a good site to buy a domain name, i'm based in the united kingdom.
View Replies!
View Related
Free PhpBB Hosting
I wanted to create a phpBB forum without having to pay so I found a website and got it hosted. You can find it HERE: [removed] I wanted to add on a "Downloads" section but I don't believe this is possible... Does anyone know of another free website that lets you host a phpBB forum and a web page or two?
View Replies!
View Related
Free Web Hosting .....
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 Replies!
View Related
Free Web Hosting
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 Replies!
View Related
Free Web Hosting
Me and a few friends decided to start a web site but we don't have a very large member base at the moment so we are on free forum hosting. I thought the next logical step would be to get some free or very inexpensive website hosting that offered a domain name. So I got gfboards.net from Godaddy.com and tried out their free hosting. What is really bothering me is that their ad that they put on the top of every page apparently "interferes" with the registration images on PHPBB and SMF forums. I really don't know a lot about web hosts but this just sounds fishy to me. Should I switch web hosts?
View Replies!
View Related
Godaddy Free Hosting Plan
I registered a domain with the godaddy.com. I also have a free web hosting plan attached to it. Now i purchased(not upgraded) a new web hosting plan(economy plan.). Now I want to attach my domain with the new hosting plan. But the godaddy is not allowing me to do so.
View Replies!
View Related
Free Adult WebSite Hosting
I am looking for free adult web hosting, as I am doing a site for an escort. It's fine if it has the following for her site: escortName.someDomain.domainSuffix Also, need CGI, PHP, MySQL, good amount of web space & bandwidth as she may want a video or two -- besides gallery images -- to be put up, etc.
View Replies!
View Related
What You Choose: Paid Or Free Hosting?
My opinion such, that I prefer paid service as I am assured that in this case I have a guarantee that during work something will not occur. In fact the main thing continuous work..... Well I wait for you and I hope for your participation in to this post ...
View Replies!
View Related
VPS To Offer Free Hosting
I need a VPS with Cpanel/WHM/WHMCS or iHost. Looking to spend around 25 - 40 month. The must allow free hosting with legal adult content. Right now i am with a reseller and the are abusing their downtime.
View Replies!
View Related
Free Web Hosting And DirectAdmin
why is so hard to find free web hosting space with the DirectAdmin control panel. There are a lot of free web hosing companies who offers cpanel, but I was unable to find any hosting company that's offer free web hosting with DirectAdmin.
View Replies!
View Related
Free Web Hosting Ads?
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 Replies!
View Related
Free PHP Hosting With Subdomains
I'd like to hear recommendations to get free PHP hosting, the kind where you can create a subdomain in their host, instead of using a real full domain, you know like geocities. (Note: I do pay for regular hosting these days, but this is for an experimental proyect)
View Replies!
View Related
Good Free Hosting For A Freeware Application
I have developed a small application that I want to put somewhere online so that people can download it and use it for free. I'm not much into free hosting so maybe some of you could recommend a good solution. This will be a 2-3 MB download but I don't think there will be any huge traffic. I know sourceforge.net offers hosting for open source software but I don't know yet if I want to make it open source. Preferrably, I would like a web host with a decent likelihood that my address will not change, no overintrusive ads and somewhat reliable. Or perhaps there are dedicated sites for hosting free programs that would better suit my needs?
View Replies!
View Related
Which Free Hosting Manager Is Recommended For Directadmin?
1.i have a free hosting company and i changed to Directadmin servers from Cpanel so this panel: www.fhm-script.com doesent work anymore its only for cpanel. and i need something like Ipanel free any recommendations? 2. how can i open an option for free radio stations on my server with my ssh? (its a dedicated server with centos5) btw
View Replies!
View Related
How Do I Create My Own Free Forum Hosting Website?
How would I go about creating my own website for free forum hosting? You know, sites such as ProBoards and Forumer. A site where someone can fill in some information (name, URL, e-mail, etc.) and instantly have their own phpBB, IPB, or MyBB forum. I could host it, but I don't understand how to make it so right when they click submit it creates them a forum. If someone could point me in the right direction or link me to a tutorial (which I doubt exists),
View Replies!
View Related
|