web541
Members-
Posts
700 -
Joined
-
Last visited
-
Days Won
17
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by web541
-
Weirdly enough, this works fine for me without your custom css. Check to see if your css for the divs doesn't have display:none; in any of them
-
http://forum.phpvms.net/topic/7383-pilot-manager-v11/ Or http://forum.phpvms.net/topic/5761-email-individual-pilot-to-his-registered-mail-address/
-
A few steps according to this http://forum.phpvms....ed/#entry114903 After you have followed the above link, you should go to your skin folder and find "acarsmap.tpl" (or php if you're on 5.5.x) and add a new <td>. This should end up something like this. <img src="path/to/my/image/<%=flight.flightcode%>.jpg" alt="<%=flight.flightcode%>" />
-
Hi, You may consider using this tutorial as it is updated and works as it should. http://forum.phpvms.net/topic/19993-navdata-update/#entry109279
-
<?php echo adminaction('/dashboard/pirepcounts');?> This line basically means go the the admin section of the website and go to your Dashboard ->Dashboard.php (so admin/modules/Dashboard/Dashboard.php) In this file, you'll see a function called public function pirepcounts() { and that function is basically triggered by that link above through the action.php, so it'd be www.yourva.com/admin/action.php/dashboard/pirepcounts That might lead you to some code (JSON Perhaps) You might be able to make a new function with this https://github.com/gfazioli/morris-php
-
Try admin/modules/Dashboard/Dashboard.php on line 44. This leads to the OFCharts.class.php in core/common
-
Having trouble changing dropdown menu colours
web541 replied to QantasVirtual's topic in Support Forum
If you're using Bootstrap, use this http://work.smarchal.com/twbscolor/ However, if you're not, then try .navbar-nav > li > .dropdown-menu { background-color: #e0001b; } -
All the tables in the admin panel seem to have a class of "tablesorter" as you thought, with an id of "tabledlist" The airports table is a bit weird with all the javascript, however still looks like the tablesorter table.
-
rename all your realschedulelite files with a .php ending
-
Sorry, I wasn't clear above, put this Config::Set('ADMIN_SKIN', 'YOURSKINNAME'); In your core/local.config.php not the admin/index.php
-
Hi Harry, Skinning the admin side seems different, though is very much similar to the main site. 1. The skin folder is in fact in admin/lib/layout . If you want to add a new one or start skinning the current one, make a new folder (or copy the layout one) and start skinning. To change the skin, you can do it one of two ways. Rename the old "layout" folder to something else (e.g. layout1) and then rename your skin folder to "layout" Or Add Config::Set('ADMIN_SKIN', 'YOURSKINNAME'); For the templates, I'm not sure whether you can just drag and drop the templates to the skin folder as I have tried and it didn't work (maybe have to adjust some code), but all the templates are in the admin/templates folder (it's mainly the same layout as the main site) Main template files core_navigation dashboard Your sidebar templates are called sidebar_pagename 2. The admin is based around the old skins format (This is in admin/lib/yourskinname) The header file is your main skin file The footer file is just for your footer The layout file is for the quotes at the bottom under the footer 3. To include your css and script links, it is much like the "layout" file on the main side, you can put all your references in the "header" file, making sure you keep the skin elements. Before your css references and after the rss references <?php Template::Show('core_htmlhead.tpl'); ?> Just after the <body> <?php Template::Show('core_htmlreq.tpl'); ?> Where you want your sidebar <?php Template::Show('core_sidebar.tpl'); ?> Where you want your core_navigation <?php Template::Show('core_navigation.tpl'); ?> I hoped this helped
-
Is your phpvms version 5.5.x?
-
Or a free alternative http://forum.phpvms.net/topic/6633-flight-board/
-
Have you uploaded the correct module for your version?
-
Which link? Do you mean the link to file the pirep? www.yourva.com/index.php/pireps/filepirep
-
[solved]pilots and scheduals not showing[solved]
web541 replied to RyanJSmyth's topic in Support Forum
Which section do you mean? If it's the user section, make sure that your pilots have a hub assigned to them and make sure that your schedules have been put in correctly. Also, make sure that your schedules have the correct day of the week, if it is Monday, then you will l only see schedules for Monday, etc. If it's the admin section, Go to your FTP and go into the admin/action.php Find this line error_reporting(E_ALL ^ E_NOTICE); And replace it with this line ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED); -
As stated above, are they enabled? And are the aircraft registrations assigned to your schedules restricted by ranks? If they are and you have not reached the rank to fly that aircraft, then you won't see it I believe. Check that in your local.config.php that this # Pilot pilots to only fly aircraft they're ranked to Config::Set('RESTRICT_AIRCRAFT_RANKS', false); Is set to 'false' then see if you can see these schedules. And while you are in there, check to see what these values are in case someone has bidded on these flights, but considering you are importing them and may have a lot, this may not make a difference. # If someone places a bid, whether to disable that or not Config::Set('DISABLE_SCHED_ON_BID', false); Config::Set('DISABLE_BIDS_ON_BID', false);
-
take out these lines <script src="<?php echo SITE_URL?>/lib/skins/WEF3.0/js/jquery.js" type="text/javascript"></script> <script src="<?php echo SITE_URL?>/lib/skins/WEF3.0/js/cloudslider.jquery.min.js" type="text/javascript"></script> and go into the cc_vaskin_02 skin and remove this line off your code <script src="<?php echo SITE_URL?>/lib/skins/cc_vaskin_02/js/timePictureChange.js" type="text/javascript"></script> then before your </head> tag place this <script> jQuery.noConflict(); </script>
-
Same old "No route passed", but JQuery noConflict does not help
web541 replied to Kishshey's topic in Support Forum
By the looks of things, there is a few problems with your animsition.js file. Try removing it from the skin and see if there are any more errors. -
Same old "No route passed", but JQuery noConflict does not help
web541 replied to Kishshey's topic in Support Forum
For a temporary solution, you are really not supposed to do this because it will cause issues in the future, Before your javascript in your head of layout.tpl put this <?php echo $page_htmlhead; ?> And just before your </head> tag, place it again and hopefully someone else can come up with a more permanent solution - if you go to the errors tab in firebug, what errors do you get? Have you checked on the forums, there seems to be a lot of posts about this? -
Same old "No route passed", but JQuery noConflict does not help
web541 replied to Kishshey's topic in Support Forum
Has the skin got the <?php echo $page_htmlhead; ?> In the head of layout.tpl? Is there any javascript or jquery libraries referenced at the top of any of the skin templates (not layout.tpl)? -
What do you mean by this? Where is the error showing?
-
Can you make sure that in your local.config.php you have got the vacentral api server to the following Config::Set('VACENTRAL_API_SERVER', 'http://api.vacentral.net');
-
Or if you were referring to your post in the "file_exists()" error, then have a look at this http://forum.phpvms.net/topic/22972-warning-file-exists-error/page__st__20#entry121598
-
http://forum.phpvms....ng/#entry120884 - Should be similar to what you are trying to do