Development Help
For help and support for the development of addons
515 topics in this forum
-
- 9 replies
- 3.3k views
Has anyone created a module that creates an account in phpbb3 when signing up with the VA that they would be willing to share or would be willing to give some pointers on how to create a module that I could create and share with everyone. Many thanks Karl
Last reply by novamix, -
- 24 replies
- 6.3k views
What Is It?- The PilotShop is a free, open source module that will allow your pilots to put their money to good use to purchase an array of items! The idea is to take the PhpVms's finacial system and allow the pilot to use his/her money made from flying to purchase anything ranging from training,ratings,badges etc. . The pilot shop will have an AJAX interface that will display the items added through the Administration panel through different store fronts which pilots can view. Idea applied- So say I was starting a low budget regional airliner operationg out of KACT(Waco regional). Now when my pilots join they are conisdered as active and can start flying flights accor…
Last reply by joeri, -
- 114 replies
- 98.6k views
Nabeel what im trying to do is once a pilot is approved then a forum account is created, I have the creation script i just need to put it in to the trigger which i want to be the approve button, or thinking on further maybe when you click the pilots name i could add a button to create a forum account as well. The easiest option would be to get the script to fire reading the profile name email etc when the approve pilot button is hit, so i suppose the question is what happens now when you double click the accept pilot. Hope i make some kind of sence, Thanks
Last reply by web541, -
- 1 follower
- 4 replies
- 4.3k views
Here's a quick bash script to update phpVMS to the latest version. It'll download the update version from the server, unzip it, delete the local.config.php, and then copy the files to where phpVMS is located. You need SSH access to your server (ask your host). You can either download the zip file, and extract the file to your server, or use vi, whatever to create this script: NOTE: The download URL has changed #!/bin/bash PHPVMS_PATH="/path/to/phpvms" echo "Retrieving update" rm phpvms.update.zip wget --no-cache --no-clobber http://downloads.phpvms.net/phpvms.update.zip rm -drf phpvms echo "Unzipping file" unzip -q phpvms.update.zip rm -f phpvms/core/local.config.…
Last reply by Nabeel, -
- 7 replies
- 3.2k views
Ok so I am adding a pilot country field to the registration form and have already edited the registration_mainform.tpl, RegistrationData.class.php and the registration.php files. How I edited - The template- I added a drop down box, set the value of the box as country and entered the country data and the values aswell. The registration.php- <?php function ProcessRegistration() { // Yes, there was an error if(!$this->VerifyData()) { Template::Show('registration_mainform.tpl'); } else { $firstname = $this->post->firstname; $lastname = $this->post->lastname; $email = $this->post->email; $code = $this->post-…
Last reply by Nabeel,