Jump to content

Frequently Asked Questions v1


servetas

Recommended Posts

  • Moderators

Frequently Asked Questions v1

  • Add or edit your faq categories.
  • Show them in public and help your pilots solve their questions about your virtual airline etc.

How to Install?

Copy and upload the files same as the structure as your phpvms files. If you want to link your website's visitors/users to this module, use this:

www.yoursite.com/index.php/career -or- <?php echo url('/career'); ?>

More information about the module can be found here. Support will be offered by this forum. If you have any questions do not hesitate to contact us.

For more information, do not hesitate to contact us.

  • Like 2
Link to comment
Share on other sites

  • 10 months later...
  • 7 months later...
  • Moderators

We would like to inform you that version 1.1 has been released. Our Team decided to release its next version as freeware. The module can be downloaded via our github account. In the new version (v1.1) we have done the following:

- Updated the editor used from the module.
- Stylizing changed on the admin part of the module.
- File structure correction.
- Files clean-up.
- Added Version Check System.
- Other minor changes.

More information about the module can be found here. For those who have already purchased it, we will offer to you a 10$ discount coupon code in order to use it on your next purchase. More information will be sent to you via email.

PHP-Mods

Link to comment
Share on other sites

  • 2 months later...
  • 1 month later...

yep now the admin part is there

but bringing up another error

Warning: file_get_contents() [function.file-get-contents]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /home/flyeurop/public_html/admin/templates/faq/update.tpl on line 10

Warning: file_get_contents(http://php-mods.eu/m...es/versions/faq) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /home/flyeurop/public_html/admin/templates/faq/update.tpl on line 10

There is a problem with the server connection. Please contact us.

fivedev is my hosting provider

Link to comment
Share on other sites

  • Moderators

Open the admin/templates/faq/update.tpl file and where:

$cur_version = file_get_contents("http://php-mods.eu/modules/versions/faq");
$ins_version = '1.1';

replace with

$url = 'http://php-mods.eu/modules/versions/faq';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
$data = curl_exec($curl);
curl_close($curl);
$cur_version = $data;
$ins_version = '1.1';

  • Like 1
Link to comment
Share on other sites

  • 6 months later...

I have installed FAQ and it all works wonderfully well in ADMIN. but when try to get it to display from the frontpage screens I get the following error:-

An Error Was Encountered

The module "FAQ" doesn't exist!

Any ideas what I may be doing wrong?

Regards

Keith Hadden

Owner of soon to be launched Clone Air World - Virtual Airline

Link to comment
Share on other sites

  • 9 months later...

Tried to install Version 1.2 and I get this error from FAQ downloaded from Github.

We would like to thank you for using our FAQ System Module developed for phpVMS. We are always trying to offer the best solutions for your virtual airlines.

The modules we have developed for phpVMS (either freeware or payware) can be found on our website.

There is a problem with the server connection. Please contact us.

Link to comment
Share on other sites

  • 3 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...