February 5, 201214 yr I had my traffic going down badly with no clear reason, I had a little hard time with Facebook Connect, giving on some pages Unresponsive script. I didn't realize how bad can this be, but it made a major damage on traffic specially from Google. I fixed the error today, and my traffic start getting back to normal. Be careful with these crone jobs they can cause serious damage with Google if they are not functioning well.
February 6, 201214 yr wtf is a crone job? Selling fruit? Cackling? I know - maybe it runs periodically and removes typos.
February 8, 201214 yr Author I apologize for the delay in reply but had a hard time getting online. Cron jobs are scripts that do specific tasks on your website. For example, you want something marked completed after x number of time, this will be called cron job. Also, if you familiar with setting up things like Payments (using Paypal as an example), to know that somebody completed the payment before your process the order.
February 8, 201214 yr Author But a cron job wouldn't (and shouldn't) be running when each page loads, or when you reference an external script on a webpage. Paypal doesn't a cron job either - it's uses something IPN - essentially a script on your site paypal posts payment info back to9 after a payment has been made. tasks that require timely update will require cron job, for example : a job should be marked deliver or late after x number of days (these jobs usually are require load on the page). I used PayPal as an example for payments but it is not the case with other websites (I personally using 3 payment gtes on one website). My main point is that scripts and cron jobs that takes long time (too long to response), will affect your website ranking on websites like Google, so make sure to avoid them and reduce the response time on the page
February 8, 201214 yr Why would a search engine bot be doing any processing on your site that starts a cron job?
February 8, 201214 yr Author Why would a search engine bot be doing any processing on your site that starts a cron job? The search engine bot is concerned about your page load. let us say it would take 3 seconds to load, that will affect your website ranking. Scripts and cron jobs are not the issue but the load time is. If you got a broken one or unresponsive in any page, check web page optimization and you will see it goes for seconds
February 8, 201214 yr So why the thread title if cron jobs aren't an issue. Yes load times are but I don't see how google is going to find out you have a cron job running without actually doing some processing on your page.
February 8, 201214 yr Author zed, i think you misunderstand me, I said cron job can kill your website, but I didn't say it certainly well I am trying to explain the damage could be caused by ignoring the crone job timing.
February 8, 201214 yr The biggest problem with retrieving dynamic content from external websites is that the structure of the target may change and breaks all your regex. It's not really the cron timers fault but the script being called by cron is where the error log will point. Behind the scenes of my little job hunting project a similiar process takes place with a cron job banging away at a fetch_data script and the output is stored in the database. When a results page is initially loaded the stored content is shown but an AJAX call also fires the same fetch_data script and when that comes back with the most recent data a few seconds later this gets swapped into the page for the human visitor to see (& database gets updated). If googlebot runs over the site a server side trip goes off and calls the same fetch_data script. We then decide if the bot gets fed the existing stored content or is forced to wait for the new data thus controlling what google percieves as the loading time. That all may seem a lot of messing about to display dynamic content but has several advantages; 1.Visitor is happy because they had something to look at while waiting. 2.Google is happy because it finds almost fresh new content & a quick load time. 3.If the cron job or fetch_data script ever fail the site would still function for visitors by showing the last lot of information. Edited February 8, 201214 yr by Sogo7
Create an account or sign in to comment