vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Coppermine CoppermineFetch and Photos on vBulletin FORUMHOME (https://vborg.vbsupport.ru/showthread.php?t=131643)

4Prometheus 11-14-2006 10:00 PM

Coppermine CoppermineFetch and Photos on vBulletin FORUMHOME
 
OK..

After a lot of finding no answers I have pieced together how to integrate vb and coppermine..
You must first download and install CoppermineFetch (found here http://www.fistfullofcode.com/)


Then upload the attached random.php to your forum root.

(Note: inside the random.php you will have to change the relative path if your site is not setup as follows:
domain_name/forum
domain_name/gallery
domain_name/cpmfetch
This random.php is set to display the last 8 pictures in one column. Other functions can be found here: http://www.fistfullofcode.com/php-li...ual/index.html )

In your forumhome template add this code below the <head>

Code:

<script language="Javascript">
<!--
var x1;

x1 = createRequestObject();

function createRequestObject() {
  var x = false;

  try {
    x = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (e) {
    try {
      x = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (E) {
      x = false;
    }
  }

  if (!x && typeof XMLHttpRequest != "undefined") {
    x = new XMLHttpRequest();
  }

  return x;
}

function getPhotos() {
  x1.open('get','random.php'); //Replace random.php with whatever php script you are using to fetch photos
  x1.onreadystatechange = function() {
    if (x1.readyState == 4) {
      document.getElementById("photos").innerHTML = x1.responseText;
    }
  }
  x1.send(null);
}

onload = getPhotos();
//-->
</script>


Then add this code to your forumhome template wherever you want the pics to appear.

Code:

  <!-- / COPPERMINE GALLERY -->

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
                                <td class='tcat' colspan='0' align=left>
                                <span class='smallfont'>
                                <strong>&raquo; <a href="http://yourdomain.com/gallery">Photo Gallery</a>
                                </strong></span></td>
                                </tr>

                                <tr>
                                <td class='alt1' width='100%' align-middle valign=middle>
  <div id="photos" align="center">

</td></tr></table>
<!-- / COPPERMINE GALLERY -->
  <br><br>


Done!

These are basically the same instructions as given here
http://coppermine-gallery.net/forum/...8236#msg108236 on Coppermines site.



Peace.

projectego 11-15-2006 04:15 PM

Just what I needed! Cheers. ;)

Immortal_Shades 11-19-2006 12:39 PM

Okay quick question;

I am running coppermine through Mkportal.
Which is public_html/mkportal/modules/coppermine.

My cpmfetch folder is my forum/cpmfetch directory.

Now for thelife of me I cant figire out how to get this work, and load. I did all the forum templates but still no luck!

DjTaz 01-20-2007 11:03 PM

Dont the similar mods posted on this do what yours does just without coppermine fetch ? Just out of curiouslty ?

Soliloquy 02-02-2007 04:52 AM

I can't get it to work either. My coppermine fetch worked fine, I performed all the template edits, double-checked all the paths, but still no results.

TorGa3iGhT 04-25-2007 07:04 AM

does this work for 3.6.5?


All times are GMT. The time now is 09:09 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01546 seconds
  • Memory Usage 1,722KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete