Jump to content

mark1million

Moderators
  • Posts

    2288
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. Remove the MB
  2. All you should need is the form in the post above and the script below, <?php if ((($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/pjpeg")) && ($_FILES["file"]["size"] < 20000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />"; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } } else { echo "Invalid file"; } ?> What that is doing is going to do is allow the upload a, "image/gif" "image/jpeg" "image/pjpeg" To a folder on your server called "upload/" change to what you want and you will need to allow write permissions
  3. Whats on your line 39 of upload_file.php?
  4. Just a quick demo from w3 schools, <form action="upload_file.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> <br /> <input type="submit" name="submit" value="Submit" /> </form> This will explain everything, http://www.w3schools.com/PHP/php_file_upload.asp
  5. Nabeel, would it be possible to capture in the database the ipaddress of the user registering and have this displayed in the admin pilots list?
  6. No problem, glad its sorted for you.
  7. And would be willing to pay!!!!!! :lol:
  8. Is there a quick way to roll back to using google maps v2? I have done a bit of testing and everything seems to work OK using v2, IE and heading reporting as well as lines being drawn, i know that if i roll back then the routes wont be depicted but ill live with that for the time being. I don't really want to roll back to the general release because of modifications i have made and other tweaks, i have already tried that with a fresh install If i remember right there is a change in the acarsmap.tpl routemap.tpl and core_htmlhead.tpl but im not sure, any help would be appreciated. Thanks.
  9. Hi, You need to edit the template registration_mainform.tpl, I take it you have just updated to the latest beta? Its around line 92 replace the existing captcha with, <dt>reCaptcha</dt> <dd> <?php echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error); ?> </dd>
  10. Done.
  11. OK so now back to the problem again, this is being transmitted by xacars but still my map icons are not changing direction, Fri Mar 05 21:26:50 2010: ACARS: [MESSAGE [DATA1=XACARS_MSFS|2.0&DATA2=MESSAGE&DATA3=1&DATA4=[03/05/2010 21:26Z] +++ ACARS Mode: 2 Aircraft Reg: .N738PM +++ Msg Label: PR Block ID: 01 Msg No: M68A +++ Flight ID: EZY658 +++ Message: +++ POS N51 8.83919 W0 12.2795 +++ /ALT 203 +++ /HDG 290 +++ /HDT 285 +++ /IAS 35 /TAS 34 +++ /WND 28504 /OAT 6 /TAT 6 +++ /FOB 9021 +++ /DST 300 - 0 +++ +++ ] transmitted successfully.] Any ideas on fixing this one?
  12. Thanks for that SP there i was thinking GB was OK Any news on the new exam release?
  13. I was looking at my finances and the fuel figure was way up there, further inspection i realised that the fuel figure from FSACARS was being send in lbs, have i missed a setting somewhere because my site is configured for KG.
  14. Do pilots get an email when a pirep has been approved? If they do mine isn't working, if they dont it would be a good addition i think.
  15. Very nice and clean...
  16. Back to basics this reminds me of
  17. Let me be perfectly frank.... In life you get what you pay for. Simple as...... Free hosts suck, if you do a reverse lookup on your ip you will find well over 1000 sites on the server you are using..... If you want to run a reliable VA then you need to pay
  18. Is there any way of saving your admin templates in a skins folder so then dont get over written on an update? I think i read somewhere this was being implemented but i cant find it, i dont want to go adding bits to them if i forget one and update and lose it.
  19. Pollixx, If you look at your page with IE you get the same error as me, Mine does display in chrome and ff, http://www.easyjetva.com/index.php/schedules/details/2003
  20. Hi guys, On the update i put on my dev site All OK no problems, transferred to the live site and i get the following, Fatal error: Call to undefined function recaptcha_get_html() in /srv/www/easyjetva.com/public_html/lib/skins/ObsessBlue/registration_mainform.tpl on line 95 Which is this line for the recaptcha. echo recaptcha_get_html(Config::Get('RECAPTCHA_PUBLIC_KEY'), $captcha_error); My keys are in the config files ok so any help would be appreciated.
  21. How hard would it be to code for awards the same way as the ranks are defined, Example if a pilot completed 10 flights he gets xx award automatically and so on. I would imagine its just a case of copying the ranking system?
  22. OK i found it, This may be of some use to you, http://forum.phpvms.net/topic/936-alignment-issue/page__p__5662__fromsearch__1entry5662
  23. I just had a quick look and thats a css problem, not too hard to fix, I had that where my site would align to the center on all browsers apart from ie. I cant remember what the setting was but i did post in the forun here about it some where is you do a search.
  24. Im no expert but i will help you if i can.
×
×
  • Create New...