Author Topic: lady need help :( site not working  (Read 183 times)

aphrodite

  • Member2
  • **
  • Posts: 7
  • Karma: +0/-0
lady need help :( site not working
« on: February 20, 2012, 10:20:55 AM »
help please :( i am having issues setting up, i setup the cron job but it keeps failing so i setup a remote cron from setcronjob.com - having no errors but my search still not showing result, and blogs arent showing even after approval :(
any ideas?

aphrodite

  • Member2
  • **
  • Posts: 7
  • Karma: +0/-0
Re: lady need help :( site not working
« Reply #1 on: February 20, 2012, 10:43:16 AM »
ive got the blog to show now by using cron/gen_blogs_full.php

but the search still yield no result :( but it shows when im using the Admin - in the Members and browse for Members, but not as a user in the Search Advance

also the friends list still not working :(

maverick

  • Active Member
  • **
  • Posts: 1382
  • Karma: +93/-1
    • Etano Templates
Re: lady need help :( site not working
« Reply #2 on: February 20, 2012, 01:42:21 PM »
All of the issues that you are having are related to your cron jobs not working properly. This is by far the most common problem users have and the main cause of things not functioning properly.

Using cron/gen_blogs_full.php will make the blogs show up, and also if you go into the Etano Admin and select "Skin Settings" from the menu and "regenerate" your skin, it will update the user profiles and your search results should then appear. However this is just a temporary solution and the problem will continue to exist until you get your cron jobs working properly.

Cron jobs auto regenerates and updates user info and blogs about every 10 minutes. Either your crons are setup incorrectly or your host doesn't allow crons to be run that frequently (every 10 minutes).

First make sure that your cron jobs are set at */5 * * * * and not 5 * * * *

This short hand */5 * * * *
Stands for: “Every Five Minutes”   “Every Hour”  “Every Day”   “Every Month”   “Every Week Day”

I can't offer much help with trying to run cron jobs from a third party service such as setcronjob.com but one thing is you will need is a premium account with them since their free service only allows crons to be run every hour which won't work for Etano.

If you can't get a third party cron service to work, your best bet is to get your site hosted on a server that allows you to run cron jobs that will work with Etano. You can try hostforweb.com or try contacting  "HyerGrnd" in the forums who provides hosting for Etano and will assist with the crons if need be.

The cron jobs do various things at different time intervals, which can be anything from clean up jobs to updating info, cron tasks run anywhere from 5 minutes to monthly. The main purpose of cron jobs is to distribute the load for various tasks and keep the site running efficiently. Things such as blog and profile updates run every 10 minutes, which means the info could be updated anywhere from 1-10 minutes depending when the info is submitted and when the scheduled cron job is ready to run again.

You can try reading this thread and see if any of the info is helpful ... http://forum.datemill.com/general/strange-result-cron-job-2884.0.html
« Last Edit: February 20, 2012, 03:40:39 PM by maverick »
Etano Templates and Mods

http://www.maverickwebworks.com

aphrodite

  • Member2
  • **
  • Posts: 7
  • Karma: +0/-0
Re: lady need help :( site not working
« Reply #3 on: February 21, 2012, 10:42:00 AM »
all good now :) yay!!
now is there a way to turn off the User is online icon thingy..?

maverick

  • Active Member
  • **
  • Posts: 1382
  • Karma: +93/-1
    • Etano Templates
Re: lady need help :( site not working
« Reply #4 on: February 21, 2012, 12:03:07 PM »
Open the skins_site/def/styles/content.css file and locate the following code starting around line #183 and remove the background URL's shown in the brackets, you should probably also change the padding-left: 17px; to padding-left: 0px;

/* ONLINE/OFFLINE ICON NEXT TO EVERY USER NAME */

.member_link {
   background: url('../images/member_offline_medium.gif') no-repeat top left;
   padding-left: 17px;
}

.is_online .member_link, .member_online {
   background: url('../images/member_online_medium.gif') no-repeat top left;
}


If you also don't want it show when a user is online on their profile pages, open the skins_site/def/profile.html file and locate and remove the following lines of code starting at around line #16  ...

   <!--opt name="output.is_online"-->
   <p id="online_stat">{output.user} is online now!</p>
   <!--/opt name="output.is_online"-->

Etano Templates and Mods

http://www.maverickwebworks.com