Jump to content

TAV1702

Members
  • Posts

    1954
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by TAV1702

  1. I actually got it working. I guess I just got frustrated last night and needed to take a break. I started messing with it right after I posted this and got it working. I did learn that my jquery I am calling is way out of date. Now I have to fgigure out how to update it? Back to the jNewsBar, I got it all working now but the 3 controllers in the right hand corner for opening up the news bar and the other 2 for going back in either direction. http://prntscr.com/dbdx9p
  2. First off, Happy Thanksgiving to anyone on the boards that is celebrating today. Hope you have a safe and happy holiday. Now on to the question. I bought the jNewsBar script for $3. it is a nifty little script. Issue is I can't make it work for my new bootstrap skin I am working on. Has anyone here used it and if so were you able to get it working? And if so, how? I worked on it last night for 2 hours before I gave up. the author of said script says it is a phpVMS thing not a script thing. When i activate it, it is on the page and showing up, but no css and no animation or form. it is just a non styled list on top of my website. Any help would be great. take care guys. Ray
  3. I was going to give this a try tonight but looked at my hosting package and I only have 23 mb left of space. time to upgrade I think.
  4. I am kind of curious as well. As stated I am a phpBB person by nature and have been on a dev team of a very major phpBB project since 2004, but really, I hate dual logins. I would rather sign up once and have ll my info right then and there for the pilots. Life would be much easier. I just need to figure out how to set permissions in SMF. I tried a couple times and quickly ditched it. I can run my server anything from php 5.3 all the way up to php7. I would rather it not fall below 5.4 if at all possible just because. My phpVMS version is Dave's 5.5.2 I believe.
  5. This module was made for a very old version of SMF. Are we even sure it ever worked on anything greater than version 2.0 SMF? I used it for a good while but frankly speaking, i couldn't get the swing of SMF forums permissions. I am curious what versions of SMF people have this working on. Right now I have a phpBB3 forum and do all manual registrations.
  6. Does this template work without a separate install yet or is it still it's own independent thing?
  7. Perfectly acceptable. However, when you "Borrow" someone else's .css file, you can't release it as your own work. Or at least give credit where credit is due. There was a couple nice features on that template though.
  8. I have to agree. If you have a localhost installed it literally takes 2 minutes to install and get running. It is one of the simplest CMS systems of all times to get from package to operational.
  9. Yeah it's all frames. No access to files or database.
  10. Ohh lovely. That is ballsy. With the changes he had to make to loose your files/css, it basically trashed the template. lol it might as well have been taken down. It's to bad people have to do that type of crap. Kudos to you for busting him out on it.
  11. Man he had such a good start going. Nice looking skin if it was finished and errors fixed. I actually like how clean the front page is, however the table headers don't work in a responsive was as was for seeable. I can create responsive tables, just not the th part.
  12. Uhh Am I missing something here? This template only contains 2 files, layout and frontpage. You had me convinced enough to download it just to look at it since demo pages are gone And man it is really to bad that that flashy thing in upper right hand corner really want pulling from database and make flight bookable. that would be sweet. How ever, I would hate to see the see querys for sql.
  13. Mine is too. I tried on Chrome browser, dolphin browser and my wife's iphone. All went to spam sites (only on cell and other mobile devices).
  14. On second thought, are you 100% certain you are using phpVMS 5.5? If you are, this should not be a problem. The reason I ask about double check the phpVMS version (not server php version 2 different things), your error is showing a line 24 throwing out an error. In that file, line 24 is commented copyright info by Nabeel. It cannot in any way shape or form call up any code. Even if I go back to Nabeels version of phpVMS, that line 24 is commented code. Please show us your line 24. Your lines 40-47 (if you got genuine files) should look like this: class TemplateSet { public $template_path = ''; public $enable_caching = false; public $cache_timeout; public $tpl_ext = '.php'; protected $vars = array(); Notice the public $tpl line shows the extension is set to .php Yours should match that. Did you have a previous install of phpVMS and just put files over the top of an old install and reinstall? If so, delete everything and start over.
  15. I am not even sure why it would be looking for a header.tpl. We have never since I can remember ever used a header file. It has always been layout.php (.tpl back in the day) and frontpage_main. Give me 10 minutes and Ill have a look at it. Well it might be longer than 10 but Ill take a look at it.
  16. Ahhh it did not register with me until you posted and I read it with my own eyes. You got it right on your first try. It was the $portal_config['md_total_poster']; I never even noticed but that option was removed from the version of software I upgraded to. DOH!!! That is why my query was failing. Well, part of the reason. It still has a syntax error but now I know it isn't even worth my time as that total poster option is removed. Thanks for taking a look man I appreciate it. Essentially what that little option was is a config option in the admin control panel to tell a block on home page how many top forum posters to show in a block. Well, the top posters option was removed in the upgraded version. I would say it is to save sql querys on the server which would be ridiculous as it is only 5 querys compared to the dozens that are ran when people are online using country and state flags.
  17. Ok all you sql gurus, I have an issue I need a hand with. First off, I must confess how much I SUCK at sql statements and trying to debug errors. This one is throwing errors. You probably see it but I don't. Have any clues? if so I should am all ears and willing to listen/read. I been banging my head on this part of the night. $sql = "SELECT username, user_id, user_posts, user_avatar, user_avatar_type, user_allowavatar FROM " . USERS_TABLE . " WHERE user_id <> " . ANONYMOUS . " ORDER BY user_posts DESC LIMIT " . $portal_config['md_total_poster']; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query users', '', __LINE__, __FILE__, $sql); } Here is the exact error word. Anyhow, here it is in all its glory. this has nothing to do with phpvms I just needed some insight so I figured I would toss it in off topic talk. Thanks for taking a look.
  18. I just added a page redirect from the success sent page. Reason is, after a form was submitted successfully, a user could sit there and hit refresh all day and spam your inbox with thousands of emails. Not any more. In the application_sent.php page, there are 2 page redirects that you may need to edit to fit your website needs. Please double check this before asking for help because this is the first place I will send you to anyhow. Page redirects do not work on all platforms or browsers but this that I used is cross browser compatible as well as java or no java just in case. it is W3C compliant as well. Where it says content=5, this is how many seconds it will sit on that page before the redirect. to increase or decrease this time, adjust that number accordingly to fit your website needs.
  19. As per this thread: http://forum.phpvms....pplication-v10/ I grabbed a copy of this module from Chase and been working on it tonight. What I have done is the following: Converted it to work with the newer .php template system. Simpilot version compatible. Dropped the template files in a folder instead of leaving them to fall in the default templates folder. Fixed the emailer script to show the subject, pilots name, pilot id, all 3 message areas and the position being applied for. (Email needs styling) At this point in time, I have not touched the .tpl version of this module nor do I plan on it for right now. We need to move forward not backwards. Also at this point in time, there is no options in the admin panel. I am still figuring that all out. So for now, any job positions that you want available for people to apply for has to be edited by hard code in the application_form.php file. The styling is basic phpVMS styling. The images shown do NOT reflect that of this module. You can grab this at my Github https://github.com/M...Application-php A word of caution, the tpl version is on my Github but is not useable really. All the other repos on my Github are junk so please ignore my mess. I can not take requests for this module as my coding skills are not good. I am lucky to get where I got today with this one. I will work on the admin side of things soon. PLEASE NOTE: I do not lay any claim to this mod. It is Chase Morgan creation. I only updated it a bit. Please be kind and leave all his original info intact in the files.
  20. Ok Update, I got the emailer working and the no captcha recaptcha. So far so good. Is good to go I would say. There is still NO admin panel access.
  21. I have been working on this and have updated it to work on Simpilots 5.5 version as well as added the no captcha recaptcha method. I will also make it work with plugin manger by Simpilot. I do NOT have any admin stuff at all. I just messed with this today. This is NOT my mod nor do I claim any ownership. I just picked it up as was said could be done. It still belongs to the OP. The code is on my Github. Later when I feel it is good to go, Ill link my Github.
  22. TAV1702

    blueIce

    Will do. Thanks for taking a look
  23. No worries. You should see the typos on my site I fix daily! It happens. I been using this module of yours to help me out on all my flights today. Great addition to a VA. Thanks again.
  24. Hi Parkho. First off, i appreciate your efforts and time you put in for this community and your work on modules. Thank you very much! I installed this module today and showed it to everyone on site and the overall opinion of it is everyone loves it. We found one minor detail that is no biggie. not sure if this is correct spelling in another language but in common North American English, http://prntscr.com/d5coll Aiviation is spelled Aviation. lol I looked at and admired this module all day and it just now only dawned on me what I was reading. This module is great Parkho. I appreciate your sharing it with us to use. Ray
  25. Oh yeah any time man. I hope it works out. I like this module. I added soem expenses to my test airline today and all is well. It is functional and clean.
×
×
  • Create New...