I have done quite a bit of research on this topic but the answers still aren't clear. I have found the Mambo Component for phpBB that lets you integrate the two, however this solution requires a forum with no MODs installed, and I have several. What I have done for now to display my forum in Mambo is use the wrapper, although this is limiting because of its size and also because I cannot get specific urls for each topic. Is there another way to display my existing phpBB forum inside of Mambo?
Also is it possible to make it so that when I open a topic or any link on my forum in a new tab or window it will open with Mambo around it? Right now it will just open up the forum page.
As for Coppermine I have an existing install, I cannot start fresh. I found the modification that helps to integrate Coppermine and Mambo, however the link for the download was broken. It does appear okay in the wrapper, the way I have it now, but once again the problems I have are that if I open a link in a new window I loose Mambo, I cannot specify a specific page or link since this is in the wrapper (frames), and also that the size is smaller.
Does anyone have any ideas on how to solve some of these problems?
Thanks,
Garibaldi
+ Reply to Thread
Results 1 to 21 of 21
-
-
If your refferring to the user database look in the coppermine/bridge folder for user database integration. I did it with a frsh install of Coppermine on a older install of phpbb, don't see whay it wouldn't work if both were older installs. Essentially it hands the duties for logging in over to the phpbb login screen.
-
If I have read my info correctly that would wipe out my Coppermine database though wouldn't it? That would mean that I would loose all the 2000+ pictures already uploaded there. I'm not really as concerned with user base integration as getting the applications to work together, so I don't have to use frames to view them in Mambo (like you said, frames suck!)
-
I don't think you would lose the images, that just integrates the user database for login purposes, it also integrates the membergroups and few other things related. They may lose access to their current galleries, never done it with an existing gallery that is in use so I don't know... you could create a new gallery to test it out, just make sure you use a different prefix when you create the second coppermine databse. or head over to the coppermine page and look in the forum. I'm sure that issue has been discussed.
I'm unfamiliar with Mambo so I can't help you there, I've never used frames so I really don't know how they work. To get the links to work properly I'd imagine you would have to modify the coppermine files which can be a nightmare since there's no templates.... just try adding your own custom footer. :P -
Originally Posted by thecoalman
The concern that I have using the wrapper (which is frames) is that search engines won't be able to index it. Do you think the best solution for this is to leave the pages in frames but also make hidden text links at the bottom of the page (which are visible to search engines) so they can view the pages? -
Originally Posted by Garibaldi
Most likely they'll get indexed whether framed or not but what happens is it treats each frame as an individual page. If the page relies on the parent frame for navigation for the entire site they will only be able to navigate within sub frame, in this case it would be coppermine. At least that was the case years ago, perhaps search engines have become smarter in that regards, you'd have to do a little research. You could always make a sitemap with all the major links, but again if the each page relies on the parent frame they will still be stuck in no mans land. I'm sure there a scripts avaialable for detecting that the parent frmae is present in the browser but that would open another can worms.
Why not just build your own wrapper, use phpfetchall for the forum content, there's a simialr mod for coppermine too.... -
Originally Posted by thecoalman
Using phpBB Fetch All would be a good idea. Does that require me to insert some html/php code into the page that I want to display the forum on? I'm not sure that Mambo will let me insert complex html into a page, although I can try.
Would this let me display every aspect of the forum and coppermine? Do you have a link for the coppermine app or its name? -
I would remove that immediately, just do a search for google and hidden text and you'll come across many articles about it.
fetch all comes witha predesigned portal page (and others), you can incoporate it as you wish. It's pretty straightforward to change it...I haven't used the one for coppermine but I do remeber seeing it.
Here's the demo board for the portal: http://www.phpbbfetchall.com/phpBB2/mods/phpbb_fetch_all/examples/portal.php -
Originally Posted by thecoalman
I'm removing that now, thanks for the tip. Should I resubmit my site to google now?
What I was thinking of doing for the fetch is usingCode:<?php include("fetch.php");?>
Code:<?php include("http://www.wiscollectorcar.com/cfmfetch/cftest.php");?>
Warning: Unknown(): URL file-access is disabled in the server configuration in /xxxx/xxxxx/xxxxxx/home.wiscollectorcar.com/mambots/content/kl_php.php(65) : eval()'d code on line 1 -
Originally Posted by Garibaldi
What I was thinking of doing for the fetch is usingCode:<?php include("fetch.php");?>
Code:<?php include("http://www.wiscollectorcar.com/cfmfetch/cftest.php");?>
Warning: Unknown(): URL file-access is disabled in the server configuration in /xxxx/xxxxx/xxxxxx/home.wiscollectorcar.com/mambots/content/kl_php.php(65) : eval()'d code on line 1 -
Originally Posted by thecoalman
-
Originally Posted by Garibaldi
-
Originally Posted by thecoalman
What do you mean I can use the php includes in the templates? Does that mean I can include the forum index.php file in another template (like a mambo template) and it will recognize it? -
Originally Posted by Garibaldi
Anyhow one of the great things about php is the include function here's how a template looks for every page I build....
Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="Content-Style-Type" content="text/css"> <title></title> <link rel="stylesheet" href="mainformat.css" type="text/css"> <meta name="description" content= ""> <meta name="keywords" content= ""> </head> <body> <?php include 'header.php'; ?> <?php include 'footer.html'; ?> </div> </body> </html>
Getting it work correctly within phpbb correctly is not that hard, simply edit the overall header template and put the include where it needs to go.
Coppermine is a different story..... :P -
Ok, I'm actually using a different method to insert the code, but I'm going to try to install this as well. One question, I downloaded the install file and it has files to upload to the /admin, /includes/ and /xs_mod/ folders. However there isn't anything different in the ACP, how do I install it?
How can I go about adding some code to my coppermine install? Rather than using a php include I'll just insert the code. What file and where do I need to modify to get this done correctly? -
Originally Posted by Garibaldi
How can I go about adding some code to my coppermine install? Rather than using a php include I'll just insert the code. What file and where do I need to modify to get this done correctly? -
I've successfully modded the file and added the new header, it looks great! Now that I have coppermine and the forum done I should be pretty well set. Thanks Coalman!
-
Now try adding a custom footer to Coppermine above the coppermine footer without breaking the html. :P
BTW I don't see any difference in your site.... -
Originally Posted by thecoalman
You won't see any difference for now, I'm keeping the old overall_header and template files in place until I complete the new site. Then one day the whole thing will change...
One other question I have for you. When I put this menu on my forum it makes the top part of the forum quite large. I worked with the code and actually removed the forum image and then centered the menu text (Private Messages, Log in, Register, Memberlist, ect). Is this okay? Does it harm the code or SEO at all? -
Originally Posted by Garibaldi
Normally that's just used to add comments in the html code. In this case it's switch, the Begin and END comment have to be on their own line. -
All of that stuff is still intact, I simply removed the forum logo. Do you think that takes away from the site at all?
Similar Threads
-
Incorporate a light weight browser in an LG BD-390
By wschomburg in forum Video Streaming DownloadingReplies: 1Last Post: 12th Dec 2010, 21:17 -
adding new subtitles over existing ones
By fishdog in forum Authoring (DVD)Replies: 5Last Post: 22nd Apr 2010, 02:22 -
Edit Existing DVD
By prncess23 in forum DVD RippingReplies: 2Last Post: 4th Sep 2009, 14:52 -
Cutting an existing DVD
By stumpman13 in forum Newbie / General discussionsReplies: 7Last Post: 6th Aug 2009, 10:49 -
Would it be possible to "killfile" in phpbb?
By Midzuki in forum FeedbackReplies: 1Last Post: 12th Dec 2007, 11:08