Jump to content

Recommended Posts

Posted

Afternoon Gents,

I have been researching this problem and since Im not a professtional at DIY stuff I have been stumped at this problem.

ANY help is appreciated!

I have a joomla website and I have the site in the /public HTML site and everything on it work correctly..

I installed PHPVMS at the /public html/pirep folder and installed it on its own MYSQL database.

Well, Im trying to get a custom roster for joomla site and I cannot seem to get it to work..

I dont know where to start when it come to this. I have used VAFS for so long and they made it easy

for addons to be putin through a IFRAME. I just dont like the way it looks here so I am on a mission

to get one that looks decent.

What code will I need to have to integrate the Roster in an article for Joomla?

I put several scripts listed on the forums here and came up with constant line errors?

Again, Any help is GREATLY appreciated.

Best Regards,

Greg Lee

Apex Air

Posted

Afternoon Gents,

I have been researching this problem and since Im not a professtional at DIY stuff I have been stumped at this problem.

ANY help is appreciated!

I have a joomla website and I have the site in the /public HTML site and everything on it work correctly..

I installed PHPVMS at the /public html/pirep folder and installed it on its own MYSQL database.

Well, Im trying to get a custom roster for joomla site and I cannot seem to get it to work..

I dont know where to start when it come to this. I have used VAFS for so long and they made it easy

for addons to be putin through a IFRAME. I just dont like the way it looks here so I am on a mission

to get one that looks decent.

What code will I need to have to integrate the Roster in an article for Joomla?

I put several scripts listed on the forums here and came up with constant line errors?

Again, Any help is GREATLY appreciated.

Best Regards,

Greg Lee

Apex Air

There have been a lot of posts on this actually. What most people end up doing is they skin PHPVMS to look like their Joomla skin and then just point links to that. I know that is not what your wanting to do but that is just one suggestion. There really is not a "bridge" between the two software so skinning would be your best option.

http://forum.phpvms....h__1#entry20866

http://forum.phpvms....h__1#entry20221

http://forum.phpvms....h__1#entry19159

http://forum.phpvms....h__1#entry15969

  • Administrators
Posted

You could try to include an instanace of the codon structure within a custom page of joomla, I have not tried it so I can not say if it will play nicely with joomla. It does work on stand alone pages.

Something like

<?php
//start an instance of phpvms/codon
require_once 'yourpathto/core/codon.config.php';

//get all the pilot data
$pilots = PilotData::getAllPilots();

//use a foreach to display the pilot info you would like (read as "customize this part")
foreach($pilots as $pilot)
{
echo $pilot->firstname.' '.$pilot->lastname.'<br />';
}

?>

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...