-
Posts
2284 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by mark1million
-
Its been my pleasure Thank you for the the great piece of work that is "phpVMS"
-
Have you downloaded the ini file and put that in the right place? I would use kACARS much more stable.
-
Yeh i got the same just manually put it in yyyy-mm-dd is the format. The other thing is any chance of increasing the description limit? Another beauty from Dave Thanks Simpilot
-
Excellent Sim pilot i will give that a whirl now
-
Is there a way to add this to the pilots view pireps, i have have had a request to have a "add bid" to the viewed pirep, i have added this code but it just gives me invalid route, what is the variable i need to pull this from?
-
Yeh mine is OK now the problems with the nav has gone Thanks Nabeel must nearly be ready for release now?
-
Im just about to put on my dev site and i have confidence Will post back once done
-
Cheers, Thanks for that
-
Hi Ben, you can just take out the hours in the ranks then nothing will be automatically issued, or just remove them all together, as for the manual additions you can just add those to the awards section in the admin section and manually issue them when required.
-
Hi is there a quick way of displaying the current flight bids on another page just like they are in the admin section?
-
Silliness number 2 http://www.easyjetva.com/index.php/Finances Ouch.....
-
Revision 921: fixed issues with core and db, speed fixes
mark1million replied to Nabeel's topic in Build Log
just changed back to the crystal skin and its doing the same there as well. -
Revision 921: fixed issues with core and db, speed fixes
mark1million replied to Nabeel's topic in Build Log
To be honest Nabeel im not sure what its doing, i have removed the one from the template core folder and its still the same, i have just created another page from the admin section and it has also duplicated the navigation tpl links, strange. **stock one is duplicated as well** -
Revision 921: fixed issues with core and db, speed fixes
mark1million replied to Nabeel's topic in Build Log
Nabeel i think i have found the problem, i have the core_navigation.tpl in the core templates and the skins folder for some reason. Skins Folder <li><a href="<?php echo SITE_URL ?>/index.php/Frontpage">Home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo SITE_URL ?>/index.php/registration">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo SITE_URL ?>/index.php/profile">Pilot Center</a></li> <li><a href="<?php echo url('/Exams') ?>">Exam Center</a></li> <?php } ?> <li><a href="<?php echo SITE_URL ?>/index.php/pilots">Pilots</a></li> <li><a href="<?php echo SITE_URL ?>/index.php/acars">Live Map</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { //if(Auth::UserInGroup('Administrators')) if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.SITE_URL.'/admin/">Admin Center</a></li>'; } ?> <?php $admin = ExamsData::check_admin(Auth::$userinfo->pilotid); if ($admin->admin_level >= '1') {echo '<li><a href="'.url('/Exams_admin').'">Exam Center Admin</a></li>';} ?> <li><a href="<?php echo SITE_URL ?>/index.php/login/logout">Log Out</a></li> <?php } ?> Core Template folder <li><a href="<?php echo url('/'); ?>">home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo url('/login'); ?>">Login</a></li> <li><a href="<?php echo url('/registration'); ?>">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo url('/profile'); ?>">Pilot Center</a></li> <?php } ?> <li><a href="<?php echo url('/pilots'); ?>">Pilots</a></li> <li><a href="<?php echo url('/acars') ?>">Live Map</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>'; } ?> <li><a href="<?php echo url('/logout'); ?>">Log Out</a></li> <?php } ?> -
Revision 921: fixed issues with core and db, speed fixes
mark1million replied to Nabeel's topic in Build Log
All its calling in the core navigation, <li><?php Template::Show('core_navigation.tpl'); ?></li> Its the same template in all the site. The only pages with duplicate entries are the additional pages i have created from the admin section the normal frontpage is fine for example. -
Revision 921: fixed issues with core and db, speed fixes
mark1million replied to Nabeel's topic in Build Log
Sorry got delayed, -
Revision 921: fixed issues with core and db, speed fixes
mark1million replied to Nabeel's topic in Build Log
One thing that is happening also is just the additional pages that were created the links are duplicated. Other pages are fine it just seems to be pages that were created from the admin section. Apart from that everything else seems OK and to be working. -
Im trying to get my head around this post, it seems all over the place, if i can be of assistance Valdis please let me know. Maybe a good starting poing would be to re-download and then upload to your server and run the checkinstall.php and checkdb.php then post the results here.
-
Renamed file already in the folder for such an occurrence
-
contact_form.tpl Add this where you want the dropdown, <td><strong>To whom:</strong></td> <td><select name="recipient"> <option value="your email" selected="selected">Please select</option> <option value="your email">Flight Operations</option> <option value="your email">IT Support</option> <option value="your email">Human Resources</option> <option value="your email">Events</option> <option value="your email">CEO</option> </select> </td> Edit, core/modules/contact/contact.php Find this Util::SendEmail(ADMIN_EMAIL, $subject, $message); Replace with this, Util::SendEmail($this->post->recipient, $subject, $message); i started so ill finish
-
Give me 5 and i will post the edits and code needed
-
Hi, the code is here somewhere, im at work at the moment and cant look but its on here somewhere as i done it the other day on my site. You just need to modify the contact.tpl and the contact.php in the core modules if i remember right. Its a real easy mod to do just finding the post seems to be the hard bit
-
Excellent I have a big event coming up and would be good to have this in place for that
-
just give me a shout if you get stuck again.