Jump to content

alblua

Members
  • Posts

    84
  • Joined

  • Last visited

Everything posted by alblua

  1. Hello all, For those of you who know, Google has released a new version of the reCaptcha that doesn't have a Captcha: noCaptcha reCaptcha. Some more information can be found at http://www.google.co...ntro/index.html. Now, I've figured out (kind of) on how to implement it (very easy change), so I'm hoping it's backwards compatible. If anyone is willing to give it a try, please try my code snippet. My development copy of phpVMS isn't working as I want it to due to the skin, and I'm too lazy to go into the admin panel to change the skin to crystal. recaptchalib.php is attached, to install, go to (phpVMS isntall directory)\core\lib\recaptcha. Make sure to backup your old one! I'm not being held liable here. You were warned. Thank you for anyone who tries, let me know how it goes. -Albert Lua recaptchalib.php
  2. Agreed... That is simply amazing, web design... I'm inspired!
  3. Hi, can you please explain a little more about your issue? It feels very vague about what's going on. Thank you!
  4. If you can, ensure to mark the issue as [sOLVED] in the title; just helps us know if it's needing assistance or not.
  5. I created a thread on this: http://forum.phpvms.net/topic/20629-most-common-fixes-phpvms-installation/ Directing a quote from my article: Bug Number 1 This is honestly a very silly issue. I would definitely suggest to the developers on fixing this right away, or fixing the installation package, for obviously it is ridiculous. Without completing this step, you would get this right when you go to http://myairline.com...ll/install.php: Fatal error: Class 'DB' not found in /home/myairline/public_html/phpvms/core/common/SettingsData.class.php on line 28 This is a very easy fix. Simply navigate towards /phpvms/core/local.config.php, where you then open that file with your text or code editor program and then completely delete everything in it. After saving and closing, you should check that the file size is absolutely zero. Good luck!
  6. Click on the original thread, edit, use full editor, and you will be able to change it from there.
  7. Very nice website, I like the concept and designs! As for responsiveness.... May I introduce the Bootstrap gridsystem? One of my favorite inventions. http://getbootstrap.com/css/#grid
  8. My method is to read the massive books of coding. Within one week, I was able to code with referencing the book knowing what I can do, and a while later, I'm quite fluent in HTML, as in a second language. Of course, the big books are very old school and seem tiring, but they are very nice sources. w3schools provides a nice layout of teaching in which I use to base off my lessons in which I teach students at a school to code. Give it a try, both are very nice. Sometimes even reading through coding forums and finding out what errors others have actually teach you something, as have I. There is no standard in how to become a great coder.
  9. Maybe that's your issue? If he's logged in, and if he has access, and it seems that he has the permission to, then he can view it by direct admin URL. Have you tried logging out and seeing if it still goes in or logging in to another account that has no access? No worries about your lack of knowledge; it's just learning.
  10. alblua

    Fatal Error

    I totally forgot how in the world I fixed it, but it was something about me inputting some PHP error turnoff in the correct place. I managed to fix it before I decided to create our new current skin. If anyone still has issues, I'm willing to look into it.
  11. When referencing JS, do not do the direct reference from root directory. Simply use /(install directory)/lib/js instead of whatever it was; it's a fix that I used so long ago I've forgotten, but still in there. Let me know how it works.
  12. To install it, you would usually put the files in the template folder directory and reference it in your main .tpl file. Input the correct code in the right place, and then you should be good. If you need more help installing it, I can provide more detailed and basic instructions on installing this plugin if you wish.
  13. I've had the same exact issue, and I know exactly how to fix it. I will put this in the guide after this post. Starting from your root phpVMS directory, go to /core/modules/Schedules. In that directory, you should find a file called Schedules.php. Open and edit that file. Now, those who are more knowledgeable than me in PHP, I'll admit this isn't quite the cleanest way to do it, but it sure did the trick for me. After the opening PHP tag (<?php), hit enter and then add this code: ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); ini_set('display_errors','off'); Lines 1-22 should then look something like this: <?php ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); ini_set('display_errors','off'); /** * phpVMS - Virtual Airline Administration Software * Copyright (c) 2008 Nabeel Shahzad * For more information, visit www.phpvms.net * Forums: http://www.phpvms.net/forum * Documentation: http://www.phpvms.net/docs * * phpVMS is licenced under the following license: * Creative Commons Attribution Non-commercial Share Alike (by-nc-sa) * View license.txt in the root, or visit http://creativecommons.org/licenses/by-nc-sa/3.0/ * * @author Nabeel Shahzad * @copyright Copyright (c) 2008, Nabeel Shahzad * @link http://www.phpvms.net * @license http://creativecommons.org/licenses/by-nc-sa/3.0/ */ class Schedules extends CodonModule { So, what I'm doing here is that the errors you are getting are able to be turned off. Here, we turn them off, and then since it won't show the errors, it's just going to show the add bid part. Strict Standards: Accessing static property Schedules::$get as non static in /home/voovirtu/public_html/va/core/modules/Schedules/Schedules.php on line 106 Strict Standards: Non-static method SchedulesData::setBidOnSchedule() should not be called statically in /home/voovirtu/public_html/va/core/common/SchedulesData.class.php on line 853 Bid added Note at the end of that, it states Bid Added. Great! We just remove the errors and we'll only get that! I've tested this on my build of phpVMS, but if it doesn't work, please do come back. I will gladly help. Good luck!
  14. May I ask where are you seeing this error? On the schedules page, or when you are actually installing? Thank you!
  15. Finally solved it by adding this to schedule.php: ini_set('display_errors','off');
  16. Please mark [sOLVED].
  17. You could find out how http://www.vatsimsigs.co.uk/ gets it's data on how it finds out if someone is online, and then when registering, have user enter if they have a VATSIM or IVAO account and have them state the ID. Not that I have the ability to do this, but it is doable.
  18. Just a thought, but you aren't using any news modules and using the default? Have you tried to make a separate installation just off to the side to see if it works there (now, I do run my own server on my computer, so I do have the ability to do that)? I really only do web design, not PHP coding, but I'm just merely throwing out suggestions of what I would try to do.
  19. You are using the default skin, I believe, which isn't quite recommended to edit. Most colors are available in the styles.css as well, if I am correct. If not, search on the forums for great skins created by web developers.
  20. Is there anything funky in /phpvms/admin/modules/SiteCMS/SiteCMS.php ? I'm not fluent in PHP, but that would be where I would start.
  21. Thanks Vangelis! This solution works; emails send like an instant (like it was before)! It was kind of fixed also already before, but it was like a 30 second delay, but now it's faster. Many thanks again!
  22. UPDATE Apparently, I didn't get the emails until today... Is that possibly a slow SMTP server? If it is, someone tell me that is is okay to tell the host company. EDIT I swear I sent it last night at around 9:00 PM; it arrived at 10:15 AM?? Definitely an SMTP server issue? EDIT NUMBER TWO Since I'm also using it as an Outlook alias to my email (emails still sent while it was aliased), can I use Outlook's SMTP servers instead in the local.config.php? If anyone has any clue what they are, I'll give it a shot. Or I'll try to find it...
  23. It was working on the same host I am using before.
  24. Yes, I see. My apologies; after homework, then dealing with coding... My lord; that get's some serious stress going.
×
×
  • Create New...