Jump to content

Nabeel

Administrators
  • Posts

    8141
  • Joined

  • Last visited

  • Days Won

    38

Everything posted by Nabeel

  1. There's a notes field. Otherwise to add a field, it has to be done in the sql code and all that stuff, its not completely automatic.
  2. Ouch, which FF version?Personally I test on 2.0, and 3.0, and I'm now using 3.1 beta, no problem. Haven't heard from anyone else.But yes, send me your info.Did you try re-uploading the admin folder? Perhaps a css file didn't fully upload.Sorry for the late reply! I remember to check, and then forget again! lol...
  3. Hmm, at this point, it is not.
  4. Good to hear, some hosts offer both 4 and 5, and 5 sometimes has to be enabled through an htaccess or something.
  5. That's interesting.What browser are you using?It shouldn't, the "skin" for the admin panel is separated in the admin folder. But if you think you overwrote something, just re-upload the admin/lib folder.But we can start with, what browser?
  6. Which PHP version? I'm wondering if it has to do with that, though I'm running 5.2 myself.Can you also try running it from the command line as above?
  7. Thanks, sorry for the late reply:Very odd, I don't see any problems.Do you get any errors running the install file from the command line? (it won't install, but might be interesting to see if it errors, to eliminate an apache error).The command would be:/usr/bin/php -f /path/to/install.php
  8. Can you zip up and send install/install.php to me? nabeel at nsslive dot netIt's a really odd error.Edit:I just downloaded the "full install" from the "downloads" section, and checked out the install.php, didn't spot any errors. Just ran the install as well, seemed to work fine.Are you running a Windows or Linux server?
  9. Try reuploading the entire package from scratch (redownload, etc). I've seen that before when a file did not completely upload properly (ftp programs do that often, if there's a hiccup).If that doesn't work we can go from there.
  10. Yeah... shouldn't be too difficult. But I also said that about many things before I actually started them...
  11. Is it per hour based on rank?
  12. Hey there,Interesting. Try reuploading the file. I just checked the line (http://phpvms.devjavu.com/browser/trunk ... ll.php#L29), weird spot for an error. Try reuploading though.Also, just checking, you're running PHP 5?Nabeel
  13. lol.. what do you need?Then try this redirect instead of the header() call: echo '<script type="text/javascript"><!--window.location = "'.SITE_URL.'/index.php/Login";//--></script>';
  14. Don't modify the codon.config.php.You can do this then, though you'll have to re-do the change after an update. Open core/bootstrap.inc.php, and under this line: Auth::StartAuth(); SiteData::loadSiteSettings(); Put: if(!Auth::LoggedIn()) { header('Location: '.SITE_URL.'/index.php/Login'); }
  15. for other pages, you can include the /core/codon.config.php, and then use: if(!Auth::LoggedIn()) { die('You are not logged in'); } // they are not logged in You can also place that in your local.config.php, at the bottom before the ?>. That should do the trick.Sorry for the late reply! Just started new job, been a little hectic.
  16. I think it's hardcoded, I"ll have to check...
  17. Ok, lets hope that works. Though I'm not sure why that would be a problem completely? I'm wondering why you didn't see those files though.
  18. Interesting, I tested on a windows server for a while. I don't see it up yet, but I'll keep checking it to see if I can spot the error. If you do see it, if you can copy/paste the whole thing here that'd be great.ThanksNabeel
  19. Do you have a rank titled 'New Hire' with 0 hours?
  20. Did you turn error reporting off? That link is blank.
  21. Those should be in the core/classes folder.Download the complete copy and re-upload I guess. Let me know.
  22. I think you do need execute permissions since the scripts are executed. Might as well try 775.Also, try turning on error reporting in your server/php.ini file (display_errors=on), as well has error_reporting=E_ALL.Blank page usually indicates some sort of parse error.
  23. Actually, fields will be this now: public function GetFieldValue($pilotid, $fieldname) IE: $value = PilotData::GetFieldValue($pilotid, 'VATSIM ID');
×
×
  • Create New...