Jump to content
MakeWebGames

mikemastah

Members
  • Posts

    79
  • Joined

  • Last visited

    Never

mikemastah's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Re: Illegalife and his GFX that's pretty good. nice work Illegalife.
  2. Re: intergrate html layout into mccodes what layout? do you have it on a site somewhere? otherwise please at least post html+css.
  3. Re: secured forums   You know, you could search the forums..
  4. Re: split variable ok, thanks for the info. I changed it.
  5. Re: split variable ah, figured it out. /*User input*/ var mrnaCodes = "AAAUUUCCCGGGAAAUUUCCCGGGGGGCCCUUUAAA"; function someThing(); { var startSlice = 0; var mrnaArray=new Array(); while(startSlice<mrnaCodes.length) { endSlice = startSlice+3; var i=startSlice/3; mrnaArray[i] = mrnaCodes.slice(startSlice,endSlice); startSlice = startSlice+3; } }   thanks for the help
  6. Re: cod4 online I play cod4 on ps3 [PSN: mikemastah] but I only had the game for 2 weeks so I'm only level 30.. what's the prestige thing you're talking about?
  7. Re: split variable looks like what I need but I need some help to use it I'm afraid. At this time I have a var 'mrnaCodes' which is the value of an input field. I used to do this "var mrnaArray = mrnaCodes.split(" ");" for the input with spaces (ex1)   but now I want them able to choose between ex1 and ex2.   I do need however the same array mrnaArray[0]="BLA" mrnaArray[2]="BLA" etc.
  8. I was wondering is it possible to split a variable per 3 characters like split(" "); but not split at a space but really every three characters.
  9. Re: Cron Jobs   /bin/sh: /public_html/underworld/cron_minute.php?code=mycode: No such file or directory there is something wrong with your crontab. can you tell me once again exactly what your crontab is. (the execute bit) what does it have to execute? you are using cPanel right? Because of the email i'd say your crons are setup correctly.
  10. Re: Cron Jobs if you are absolutely sure, manually enetering http://underworld.underground-hosting.net/cron_day.php?code=mycode does work and the cron curl [url]http://underworld.underground-hosting.net/cron_day.php?code=mycode[/url] does not, even though cURL is enabled contact your host, the may have setup crons wrong. Maybe you can show a screenshot of the "Advanced (Unix Style)" page in cPanel?? the one I included in the attachment.
  11. Re: Cron Jobs instead of cURL try wget, it might work.
  12. Re: Cron Jobs try to run the cron manually. can you do that?
  13. Re: Cron Jobs you probably need to specify the complete path /home/username/public_html/cron_minute.php or something close to that
  14. Re: Cron Jobs you'll need crontab too. If you don't have that you'll not be able to setup crons.
  15. Re: adding php to an embed code ? There's nothing wrong with the SQL? try "SELECT * FROM videos WHERE videoID=someid" in phpmyadmin or another mysql client. it is 'videoID' right? not 'videoid' I made that mistake myself a couple of times :) Glad you fixed it
×
×
  • Create New...