One thing I noticed though is that any user can post in any gallery. Is there a way to make it so that a user can only post in the albums they create? Or would there be a way to limit the amount of albums a person could create? I'm going to try the updated one now.
CHMOD 777 these directories:
- gallery root directory (where this installer file is located)
- userpics directory (inside 'albums' directory)
- include directory
One thing I noticed though is that any user can post in any gallery. Is there a way to make it so that a user can only post in the albums they create? Or would there be a way to limit the amount of albums a person could create? I'm going to try the updated one now.
that would require a some more code editing
currently u can create an album and allow user to upload or only allow admin/gmod to upload
Could not create a mySQL connection, please check the SQL values entered
Hmmm.... I installed it and when I run the install.php script I get this error:Code: [Select]CHMOD 777 these directories:
- gallery root directory (where this installer file is located)
- userpics directory (inside 'albums' directory)
- include directory
But I set these rights absolut correct!
Anyone a idea?
NicoQuote
Things to do
CHMOD 777 these directories:
- gallery root directory (where this installer file is located)
- userpics directory (inside 'albums' directory)
- include directory
I get this error:Code: [Select]Could not create a mySQL connection, please check the SQL values entered
I did not entered any... where van I enter the SQL values?
CREATE TABLE `{$db_prefix}gallery_albums` (
aid mediumint(10) NOT NULL auto_increment,
title varchar(60) NOT NULL default '',
description text NOT NULL,
uploads enum('YES','NO') NOT NULL default 'YES',
date bigint(20) NOT NULL default '0',
PRIMARY KEY (aid)
) TYPE=MyISAM;
CREATE TABLE `{$db_prefix}gallery_comments` (
pid mediumint(10) NOT NULL default '0',
msg_id mediumint(10) NOT NULL auto_increment,
msg_author varchar(25) NOT NULL default '',
msg_body text NOT NULL,
msg_date bigint(20) default NULL,
PRIMARY KEY (msg_id),
KEY pid (pid)
) TYPE=MyISAM;
CREATE TABLE `{$db_prefix}gallery_pictures` (
pid mediumint(10) NOT NULL auto_increment,
aid mediumint(10) NOT NULL default '0',
caption mediumint(10) NOT NULL default '0',
filepath varchar(200) NOT NULL default '',
filename varchar(200) NOT NULL default '',
filesize int(25) NOT NULL default '0',
title tinytext NOT NULL,
pwidth smallint(6) NOT NULL default '0',
pheight smallint(6) NOT NULL default '0',
hits mediumint(10) NOT NULL default '0',
mtime bigint(20) NOT NULL default '0',
ctime bigint(20) NOT NULL default '0',
owner_id varchar(40) NOT NULL default '',
PRIMARY KEY (pid),
KEY aid (aid)
) TYPE=MyISAM;
<?php<br>// ------------------------------------------------------------------------- //<br>// Coppermine Photo Gallery v1.0 Release Candidate 2 //<br>// Moduled for YaBB SE by Spaceman-Spiff //<br>// ------------------------------------------------------------------------- //<br>// Copyright (C) 2002 Grégory DEMAR <[email protected]> //<br>// http://chezgreg.net/coppermine/ //<br>// ------------------------------------------------------------------------- //<br>// Based on PHPhotoalbum by Henning Støverud <[email protected]> //<br>// http://www.stoverud.com/PHPhotoalbum/ //<br>// ------------------------------------------------------------------------- //<br>// This program is free software; you can redistribute it and/or modify //<br>// it under the terms of the GNU General Public License as published by //<br>// the Free Software Foundation; either version 2 of the License, or //<br>// (at your option) any later version. //<br>// ------------------------------------------------------------------------- //<br><br><br>// ImageMagick configuration<br>$CONFIG['impath'] = ""; // The full path to the ImageMagick convert program if you want to use ImageMagick for thumbnails<br><br>// PICTURE AND THUMBNAIL SETTINGS<br>$CONFIG['fullpath'] = "albums/"; // Path to album directory RELATIVE to Coppermine directory<br>$CONFIG['userpics'] = "userpics/"; // The directory where user uploaded pictures are stored (RELATIVE to $CONFIG['fullpath'])<br>$CONFIG['install_lock'] = "install.lock"; // The lock file used by the installer<br><br>$CONFIG['thumb_pfx'] = "thumb_"; // Prefix used for thumbnail<br>$CONFIG['normal_pfx'] = "normal_"; // Prefix used for normal size image (reduced size)<br><br>$CONFIG['max_upl_size'] = "500"; // Maximum allowed size for uploaded pictures<br><br>$CONFIG['thumb_method'] = "gd1"; // Method for creating thumbnail and resized images:<br> // "im" : use ImageMagick<br> // "gd1": use GD 1.x image imagecopyresized function<br> // "gd2": use GD 2.x image imagecopyresampled function<br><br>$CONFIG['nopic_image'] = 'nopic.gif'; // Image showed when there is no pictures uploaded in an album. Put the image inside 'images' folder.<br>$CONFIG['albums_per_page']= 6; // Number of albums per page in the album view<br>$CONFIG['thumbrows'] = 4; // Number of rows on thumbnail page<br>$CONFIG['thumbcols'] = 3; // Number of cols on thumbnail page<br>$CONFIG['max_tabs']= 10; // Max number of tabs to display in thumbnail or album view<br>$CONFIG['caption_in_thumbview']= true; // Set this to false if you don't want the image caption to appear in the thumbnail view<br>$CONFIG['default_sort_order']='na'; // Default sort order for albums<br> // na : name ascending<br> // nd : name descending<br> // da : date ascending<br> // dd : date descending<br>$CONFIG['thumb_width'] = 100; // Maximum width or height of a thumbnail<br>$CONFIG['picture_width'] = 400; // Maximum width or height of a picture<br>$CONFIG['make_intermediate'] = true;// Wether to create intermediate size images<br>$CONFIG['jpeg_qual'] = 85; // Quality for jpeg compression. Default 85, if you use ImageMagick you can set this to 80<br>$CONFIG['read_exif_data'] = true; // Wether to read EXIF data or not (require PHP compiled with --enable-exif)<br><br>$CONFIG['number_in_toplist'] = "50";// Number of entries to show on the statistics page<br><br>$CONFIG['charset'] = 'iso-8859-1'; // Default charset to use. Change this to what is suitable for your country. <br> // Most western people will use ISO-8859-1<br>// PERMISSION SETTINGS<br>$CONFIG['gmod_power'] = true; // Allow global mods to have admin powers in gallery (except to go to gallery settings page).<br>$CONFIG['user_create_album'] = true;// Allow users to create albums in the gallery<br>$CONFIG['user_upload'] = true; // Allow users to upload pictures<br>$CONFIG['user_comments']= true; // Allow users to post comments<br>$CONFIG['guest_upload'] = false; // Allow guests to upload pictures<br>$CONFIG['guest_comments'] = false; // Allow guests to post comments<br><br>// ECARDS SETTINGS<br>$CONFIG['enable_ecards']= true; // Set this to false to disable ecards<br><br>// COMMENT SETTINGS<br>$CONFIG['max_com_wlength']= 38; // Maximum length of a word (vandal protection)<br>$CONFIG['max_com_lines']= 10; // Maximum number of lines in a comment<br>$CONFIG['max_com_size']= 512; // Maximum characters in a comment<br><br>// using $db_prefix from YSE<br>$CONFIG['TABLE_PICTURES'] = $db_prefix."gallery_pictures"; // MySQL table for pictures<br>$CONFIG['TABLE_ALBUMS'] = $db_prefix."gallery_albums"; // MySQL table for albums<br>$CONFIG['TABLE_COMMENTS'] = $db_prefix."gallery_comments"; // MySQL table for comments<br><br>// What HTML tags to keep in posts<br>$CONFIG['keep_tags'] = array(<br> 'description' => '<b><i><a>', // Album description<br> 'message' => '<b><i><a>' // e-Cards messages<br>);<br><br>$CONFIG['cookie_name'] = "CPGCookie";<br>?>
if u havent put <yabb galleryHeader> inside <head>, the JS functions wont work
for ecard...
about gzcompress()... i'll edit the code for the next version so it wont use it, cuz its already used in Subs.php
if u wanna edit it, i guess its safe to change:
$encoded_data = urlencode(base64_encode(gzcompress(serialize($data),9)));
into
$encoded_data = urlencode(base64_encode(serialize($data)));
inside ecard.php
i'll have to ask Greg from coppermine for the details on this...
would be nice to be able to be able to show the gallery stats (maybe just last comments/photo added) on the boardindex?
i know picstat.php does the stats... how would i use it elsewhere ???
This is a great mod, but I'm going to have to use photopost or something just because of the security issue. That is people being able to post pictures in other albums. The other thing is people can't delete their own pictures.
For me, those are security issues as I've had 4 or 5 people already posting in the wrong albums. Like I said, I think you've done a great job with this and I appreciate it very much but I'm going to have to keep looking.
For me, those are security issues as I've had 4 or 5 people already posting in the wrong albums. Like I said, I think you've done a great job with this and I appreciate it very much but I'm going to have to keep looking.
1. Is it possible to select groups of your members who get access of posting pictures?
2. Give members a limit to upload?
3. Make the gallery online readable for members only?
* Hint * - If you want to restrict your gallery to registered members only then set your menu so only registered members can see the link to the gallery.
cheers.........
include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
Warning: Failed opening './template.html' for inclusion (include_path='.:/php/includes:/usr/share/php') in /var/www/vhosts/sportsbike.cc/httpdocs/testboard/yabbse/Sources/Subs.php on line 208
...
Doesn't recognise me as admin, shows errors when $sourcedir is used but works with ../...
...Won't load template.htmlCode: [Select]Warning: Failed opening './template.html' for inclusion (include_path='.:/php/includes:/usr/share/php') in /var/www/vhosts/sportsbike.cc/httpdocs/testboard/yabbse/Sources/Subs.php on line 208
The "gallery" directory is in the Yabbse dir (e.g same as Sources etc)
Can't get it to work at all
Doesn't recognise me as admin, shows errors when $sourcedir is used but works with ../Code: [Select]include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
Won't load template.htmlCode: [Select]Warning: Failed opening './template.html' for inclusion (include_path='.:/php/includes:/usr/share/php') in /var/www/vhosts/sportsbike.cc/httpdocs/testboard/yabbse/Sources/Subs.php on line 208
The "gallery" directory is in the Yabbse dir (e.g same as Sources etc)
also it's currently not working in YaPP
im pretty busy lately, havent gotten the chance to review the codes :(
...It's really a great mod and deserves credit. For you YaPP users, just remember that where the .mod file says to edit index.php for the link to the gallery admin, you also need to edit asubs and place the link there changing 'action' to 'op'
Can't get it to work at all
Doesn't recognise me as admin, shows errors when $sourcedir is used but works with ../Code: [Select]include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
Won't load template.htmlCode: [Select]Warning: Failed opening './template.html' for inclusion (include_path='.:/php/includes:/usr/share/php') in /var/www/vhosts/sportsbike.cc/httpdocs/testboard/yabbse/Sources/Subs.php on line 208
The "gallery" directory is in the Yabbse dir (e.g same as Sources etc)
Nice mod!
Both of these also happened to me.. I just manually edited the path and uploaded another template.html to the gallery folder and now it is working....
I have just few questions, Is there a way for the users to edit the descriptions of their album? How about limit the creation of the album to the admin?
Thanks
Errr ta
Still doesn't tell me why there's no admin area
anyone who knows what they are doing know how to add "last photo added" and maybe a few other gallery stats to boardindex??
Errr ta
Still doesn't tell me why there's no admin area
You have done the following?
3. edit your forum template and add these tags:
- <yabb galleryMenu> Recommended place: right after <yabb menu>
- <yabb galleryHeader> Place: somewhere inside <head>
- <yabb galleryBodyTag> inside <body> tag, example: <BODY text=#000000 link=#0033ff bgColor=#f5f5f5<yabb gallerybodytag>>
the gallery menu should be like this:
:: Album List :: Latest Uploads :: Upload Picture :: Gallery Settings ::
and your gallery isnt showing that
so, u must've forgotten to put <yabb galleryMenu>
<TR vAlign=center align=middle bgColor=#b7bbda>
<TD bgColor=#afc6db class=titlebg><FONT size=1><yabb menu><yabb galleryMenu></FONT></TD>
</TR>
I was wondering if you could help me since noone will answer my question at Coppermine. It's funny when people think your question is stupid because this question has been asked several times...so they decide not to answer it.
thx, Thunderace
onsforum, imagemagick is optional, its for better jpeg quality (also in GD 2.x) and gif support
Parse error: parse error, unexpected '.' in /home3/cldforum/public_html/cgi-bin/yabbse/gallery/include/config.inc.php on line 77
Warning: Cannot add header information - headers already sent by (output started at /home3/cldforum/public_html/cgi-bin/yabbse/gallery/include/config.inc.php:77) in /home3/cldforum/public_html/cgi-bin/yabbse/Sources/Subs.php on line 122
Warning: Cannot add header information - headers already sent by (output started at /home3/cldforum/public_html/cgi-bin/yabbse/gallery/include/config.inc.php:77) in /home3/cldforum/public_html/cgi-bin/yabbse/Sources/Subs.php on line 123
Warning: Unable to access ./template.html in /home3/cldforum/public_html/cgi-bin/yabbse/Sources/Subs.php on line 196
Warning: Failed opening './template.html' for inclusion (include_path='.:/usr/local/lib/php') in /home3/cldforum/public_html/cgi-bin/yabbse/Sources/Subs.php on line 196
There was an error while processing a database query.
You can try to refresh the page by clicking here.
Error Returned
While executing query "SELECT count(*) from "
mySQL error: You have an error in your SQL syntax near '' at line 1
We apologise for any inconvenience
Warning: Failed opening './template.html' for inclusion (include_path='') in /home/pioneer/public_html/yabbse/Sources/Subs.php on line 208
Got this error... don't know how to change?
Could not create a mySQL connection, please check the SQL values entered
MySQL error was : Can't connect to MySQL server on 'localhost' (10061)
Warning: Failed opening './template.html' for inclusion (include_path='') in /home/pioneer/public_html/yabbse/Sources/Subs.php on line 208
this error happens in yse version 1.3.0 and maybe yapp too
just copy your current template.php, rename it as template.html and upload that...
<file>
english.lng
</file>
<search>
$txt[888] = "Most Online:";
</search>
<add after>
$txt[900] = "Main";
</after>
<search>
$img['admin'] = $txt[2];
</search>
<add after>
$img['index'] = $txt[900];
</add>
<search>
$img['admin'] = "<img src=\"$imagesdir/admin.gif\" alt=\"$txt[2]\" border=\"0\">";
</search>
<add after>
$img['index'] = "<img src=\"$imagesdir/index.gif\" alt=\"$txt[900]\" border=\"0\">";
</add>
<file>
/sources/subs.php
</file>
<search>
$yymenu = "<a href=http://www.yourdomain.com>$img[home]</a>$menusep<a href=\"$helpfile\" target=_blank>$img[help]</a>$menusep<a href=\"$cgi;action=search\">$img[search]</a>";
$yymenu .= "$menusep<a href=\"$scripturl?action=gallery\">$img[gallery]</a>";
</search>
<edit>
$yymenu = "<a href=http://www.yourdomain.com>$img[home]</a>$menusep<a href=http://www.yourdomain.com/yabbse/index.php>$img[index]</a>$menusep<a href=\"$helpfile\" target=_blank>$img[help]</a>$menusep<a href=\"$cgi;action=search\">$img[search]</a>";
$yymenu .= "$menusep<a href=\"$scripturl?action=gallery\">$img[gallery]</a>";
</edit>
Can't get it to work at all
Doesn't recognise me as admin, shows errors when $sourcedir is used but works with ../Code: [Select]include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
Won't load template.htmlCode: [Select]Warning: Failed opening './template.html' for inclusion (include_path='.:/php/includes:/usr/share/php') in /var/www/vhosts/sportsbike.cc/httpdocs/testboard/yabbse/Sources/Subs.php on line 208
The "gallery" directory is in the Yabbse dir (e.g same as Sources etc)
erm............... just a guess,
but try putting in the full path to your subs.php file
The file you need to play with is init.inc.php
by path, I mean the server path not the URL.
for example...
home/user/public_html/yabbse/Sources/subs.php
I dont know what your path would be, but I think it would fix your problem.
# FROM YaBB
include_once "/home/coyote/public_html/mainboard/QueryString.php";
include_once "/home/coyote/public_html/mainboard/Settings.php";
include_once "/home/coyote/public_html/mainboard/english.lng";
include_once "/home/coyote/public_html/mainboard/Sources/Subs.php";
include_once "/home/coyote/public_html/mainboard/Sources/Errors.php";
include_once "/home/coyote/public_html/mainboard/Sources/Load.php";
include_once "/home/coyote/public_html/mainboard/Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
# FROM YaBB
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/QueryString.php";
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/Settings.php";
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/english.lng";
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/Sources/Subs.php";
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/Sources/Errors.php";
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/Sources/Load.php";
include_once "/data/members/free/tripod/nl/w/i/n/winnubstforum/htdocs/forum/Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
why dont I have a comment-field where users can fill in their comment. I have "allow users users to post comments" enabled!
<body bgcolor="#e85c00" onLoad="MM_preloadImages('template/template_r3_c8_f2.jpg','template/template_r5_c9_f2.jpg',
'template/template_r7_c9_f2.jpg','template/template_r10_c7_f2.jpg',
'template/template_r12_c5_f2.jpg','template/template_r14_c4_f2.jpg',
'template/template_r16_c3_f2.jpg');">
When I try to put <yabb galleryBodyTag> into the body tag it takes away my bg color. This is what my body tag looks like:Code: [Select]<body bgcolor="#e85c00" onLoad="MM_preloadImages('template/template_r3_c8_f2.jpg','template/template_r5_c9_f2.jpg',
'template/template_r7_c9_f2.jpg','template/template_r10_c7_f2.jpg',
'template/template_r12_c5_f2.jpg','template/template_r14_c4_f2.jpg',
'template/template_r16_c3_f2.jpg');">
I don't know if the preloaded images have anything to do with this problem. My bg color is orange and after I put the gallery body tag in between the body tag it turns white.
???
<body bgcolor="#e85c00" onLoad="MM_preloadImages('template/template_r3_c8_f2.jpg','template/template_r5_c9_f2.jpg',
'template/template_r7_c9_f2.jpg','template/template_r10_c7_f2.jpg',
'template/template_r12_c5_f2.jpg','template/template_r14_c4_f2.jpg',
'template/template_r16_c3_f2.jpg');" <yabb galleryBodyTag> >
I just registered on Spiff's test board and noticed he has a button for uploading images and an album list button. This was not included in my zip. ??? My question above was answered....sort of. But the mod is not doing for me what it is doing on Spiff's board.
You have to create your own buttons and code them in if you want that...that's what he/I did. His mod inputs text links where his buttons appear.
<ID>
Coppermine Gallery Mod
</ID>
<Version>
0.9
</Version>
<Mod Info>
change the string "gallery/" to where u install your gallery
</Mod Info>
<Author>
Spaceman-Spiff
</Author>
<Homepage>
http://www.monkey-pirate.com
</Homepage>
<Edit File>
english.lng
</Edit File>
<Search For>
$img['boardmod'] = $txt[boardmod1]; #BoardMod Center Logo
</Search For>
<Add After>
$img['gallery'] = "Gallery"; #Coppermine Gallery Mod
</Add After>
<Search For>
done $img['boardmod'] = "<img src=\"$imagesdir/boardmodlogo.gif\" alt=\"$txt[boardmod1]\" border=\"0\">"; #BoardMod Center Logo
</Search For>
<Add After>
done $img['gallery'] = "<img src=\"$imagesdir/gallery.gif\" alt=\"Gallery\" border=\"0\">"; #Coppermine Gallery Mod
</Add After>
<Edit File>
index.php
</Edit File>
<Search For>
done else if ($action == 'yabbinfo') { include_once "$sourcedir/Admin.php"; showYaBBInfo(); } could not find
</Search For>
<Add After>
done else if ($action == 'gallery') { header("Location: gallery/"); } simple redirect
</Add After>
<Edit File>
Sources/Subs.php
</Edit File>
<Search For>
function footer() {
done global $yyboardname,$yytitle,$yyuname,$yyim,$yytime,$yymenu,$yymain;
done global $yytemplate,$yycopyin,$yytemplatemain,$yycopyright,$settings,$yyVBStyleLogin,$yynews;
</Search For>
<Add After>
done global $runningGallery;
done if ($runningGallery) { $yycopyright = "<small>Gallery powered by <a href=\"http://www.chezgreg.net/coppermine/\" target=\"_blank\">Coppermine Photo Gallery</a> v1.0 RC 3</small><br>\n".$yycopyright; }
</Add After>
<Search For>
NO $yymenu = "<a href=\"$scripturl\">$img[home]</a>$menusep<a href=\"$helpfile\" target=_blank>$img[help]</a>$menusep<a href=\"$cgi;action=search\">$img[search]</a>";
</Search For>
<Add After>
NO $yymenu .= "$menusep<a href=\"$scripturl?action=gallery\">$img[gallery]</a>";
</Add After>
Have tried change this
$templateFile = $boarddir."/template.php";
if (!file_exists($templateFile))
$templateFile = $boarddir."/template.html";
include ($templateFile);
to
$templateFile = "/home/pioneer/public_html/yabbse/template.php";
include ($templateFile);
and it works now ???
Weird...
if (!file_exists($templateFile))
$templateFile = $boarddir."/template.html";
if (!file_exists($templateFile))
$templateFile = $boarddir."./template.php";
else if ($action == 'gallery') { header("Location: gallery/"); }
...I manually created the table sand it works!!!!!...
trying to get this working on v1.5.
all actions are now in an array in index.php
I think everything will work if I can figure out how to get the
else if ($action == 'gallery') { header("Location: gallery/"); }
into the array. Any ideas?
Hi,
First of all, can I say to anybody that has had to put the paths in, the best way to sort this problem is to change the paths in the YaBBSE Admin centre - not in the settings file for the gallery.
Changing it in the admin center also sorts out the need to not have a duplicate template.html file in the gallerry root.
The rest of the problems are associated with the place you put the tags in the template.
If your gallery CSS isnt working, its to do with <yabb galleryHeader> place this directly before </head>
I have replicated your problem diva, and the way I solved it was to place the tag at the end of the body not at the beginning.
so your body tag should beCode: [Select]<body bgcolor="#e85c00" onLoad="MM_preloadImages('template/template_r3_c8_f2.jpg','template/template_r5_c9_f2.jpg',
'template/template_r7_c9_f2.jpg','template/template_r10_c7_f2.jpg',
'template/template_r12_c5_f2.jpg','template/template_r14_c4_f2.jpg',
'template/template_r16_c3_f2.jpg');" <yabb galleryBodyTag> >
I hope this helps.
trying to get this working on v1.5.
all actions are now in an array in index.php
I think everything will work if I can figure out how to get the
else if ($action == 'gallery') { header("Location: gallery/"); }
into the array. Any ideas?
I'm tried to configure the gallery for 1.5.0 also...but I'm not that much into "programming" ...can't figure aout how to embed it into the arry....
somebody run this mod with 1.5.0 ?
*excuse may bad english* :-)
cheers
'yabbinfo' => array("$sourcedir/Admin.php", 'showYaBBInfo'));
'gallery' => array("$boarddir/gallery/", 'gallery'),
2: Unable to access /gallery/
(/home/virtual/site461/fst/var/www/html/community/index.php ln 292)
$cgi = "$scripturl?board=$board";
$galleryurl = "$boardurl/gallery/";
global $mnum, $munred, $ID_MEMBER;
global $galleryurl;
$yymenu = "<a href=\"$scripturl\">$img[home]</a>$menusep<a href=\"$helpfile\" target=\"_blank\">$img[help]</a>$menusep<a href=\"$cgi;action=search\">$img[search]</a>";
$yymenu .= "$menusep<a href=\"$galleryurl\">$img[gallery]</a>";
Step 3 ... failed - ERR(1): Search string could not be found
else if ($action == 'yabbinfo') { include_once "$sourcedir/Admin.php"; showYaBBInfo(); }
else if ($action == 'gallery') { header("Location: gallery/"); }
else if ($action == 'yabbinfo') { include_once "$sourcedir/Admin.php"; showYaBBInfo(); }
showYaBBInfo
. else if ($action == 'gallery') { header("Location: gallery/"); }
else if ($action == 'yabbinfo') { include_once "$sourcedir/Admin.php"; showYaBBInfo(); }
else if ($action == 'test') { include_once "$sourcedir/UserLanguage.php"; LoadLanguage(); }
else if ($action == 'gallery') { header("Location: gallery/"); }
Warning: Failed opening './Sources/Subs.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/virtual/site7/fst/var/www/html/yabbse/membersgallery/include/init.inc.php on line 22
Warning: Failed opening './Sources/Errors.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/virtual/site7/fst/var/www/html/yabbse/membersgallery/include/init.inc.php on line 23
Warning: Failed opening './Sources/Load.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/virtual/site7/fst/var/www/html/yabbse/membersgallery/include/init.inc.php on line 24
Warning: Failed opening './Sources/Security.php' for inclusion (include_path='.:/php/includes:/usr/share/php') in /home/virtual/site7/fst/var/www/html/yabbse/membersgallery/include/init.inc.php on line 25
Fatal error: Call to undefined function: clicklog() in /home/virtual/site7/fst/var/www/html/yabbse/membersgallery/include/init.inc.php on line 45
That's what happens when I try to run the install.php for the gallery. I chmodded everything appropriately and the tables showed up in MySQL databse, but no go as of right now. include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
include_once "$sourcedir/Subs.php";
include_once "$sourcedir/Errors.php";
include_once "$sourcedir/Load.php";
include_once "$sourcedir/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
include_once "../Settings.php";
include_once "../english.lng";
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
The only problem that I see so far, is that it isn't reading my template properly. The menu buttons are text instead of images and the gallery index page just hangs there. But we're getting closer ;D
Actually there is no template.html. I would figure an html page with php in it would not fuction correctly. In the Subs.php file find this line :Code: [Select]if (!file_exists($templateFile))
$templateFile = $boarddir."/template.html";
And change it to this:Code: [Select]if (!file_exists($templateFile))
$templateFile = $boarddir."./template.php";
Just that simple.
In older post I noticed everyone was trying to figure this out. No need to have 2 of the same file on your server.
<TD bgColor=#afc6db><yabb menu> <A
href="http://www.pzsweb.com/yabbse/membersgallery/index.php?action=gallery"><IMG
alt="Member's Photo Gallery" src="http://www.pzsweb.com/yabbse/YaBBImages/gallery.gif"
border=0></A> <yabb galleryMenu> </td>
yeah, my sort buttons did work, and then as a week or so ago they stopped working ???
oh well...it's a minor thing i guess
Spiffman,
It would be nice, although I don't know if it's possible to have each user be able to lock his or her own Gallery. Not from viewing, but from uploads. So far it hasn't been an issue (we just got started), but the question and concern has been raised by a Board Member. I had to handle it like this ...[glow=Black,right,300][size=9]OOPS![/size][/glow]CLARIFICATION
It turns out that I was wrong about your albums :-[
Any user (that's you guys)
Can upload to any of your albums :-\
It seems that only I have the Authority to lock an album.
I read it in the help file for the administrator ...
"Allow user uploads
When you create a new album, you can choose to allow or disallow user uploads. If you choose "Yes", everyone is allowed to upload pictures to that album. If you choose "No", only people with admin password can upload to that album."
I know what you mean. It has been requested before, and I think it will be a good idea to restrict the album for yourself only. I'll wait till YSE1.51 is final, then I'll start working on the mod again.
May I call you Spiff?
Warning: imagecreatefromjpeg: 'albums/userpics/1999_4tenores.jpg' is not a valid JPEG file in /home2/www/camerata/yabbse/gallery/showthumb.php on line 75
Fatal error: imagecreatetruecolor(): requires GD 2.0 or later in /home2/www/camerata/yabbse/gallery/showthumb.php on line 78
GD Support enabled
GD Version 1.6.2 or higher
JPG Support enabled
PNG Support enabled
WBMP Support enabled
Fatal error: imagecreatetruecolor(): requires GD 2.0 or later in /include/functions.inc.php on line 487
i get this msg when trying to upload a png image:QuoteFatal error: imagecreatetruecolor(): requires GD 2.0 or later in /include/functions.inc.php on line 487
maybe u put GD2 in the setting instead of GD1 for thumbnail method
Warning: imagecreatefromjpeg: 'albums/userpics/1999_4tenores.jpg' is not a valid JPEG file in /home2/www/camerata/yabbse/gallery/showthumb.php on line 88
Warning: Supplied argument is not a valid Image resource in /home2/www/camerata/yabbse/gallery/showthumb.php on line 92
Warning: Cannot add header information - headers already sent by (output started at /home2/www/camerata/yabbse/gallery/showthumb.php:88) in /home2/www/camerata/yabbse/gallery/showthumb.php on line 93
Warning: Supplied argument is not a valid Image resource in /home2/www/camerata/yabbse/gallery/showthumb.php on line 95
To use this script you need a server with :
- a not too old version of PHP (Maybe PHP >= 4.0.6 is OK)
To install and run YaBB SE successfully you server needs to meet or exceed these requirements
* mySQL 3.22
* PHP 4.1
Fatal error: Call to undefined function: db_connect() in /home/virtual/site5/fst/var/www/html/Forum/gallery/searchnew.php on line 42
'gallery'=> array('$boarddir/gallery/index.php', 'gallery'),
$galleryurl = "gallery/displayimage.php?album=1&pid=18&slideshow=2000";
----------------------------------------------------------------------
global $runningGallery;
if ($runningGallery) { $yycopyright = "<small>Gallery powered by <a href=\"http://www.chezgreg.net/coppermine/\" target=\"_blank\">Coppermine Photo Gallery</a> v1.0 RC 3</small><br>\n".$yycopyright; }
-----------------------------------------------------------------------
global $galleryurl;
$yymenu .= "$menusep<a href=\"$galleryurl\" target=\"_blank\" ><$img[gallery]\"></a>";
-----------------------------------------------------------------------
Spaceman-Spiff has done a really good job of integrating this into YaBB.Is his script comp with 1.5.1 (maybe i should ask him myself ;D
QuoteSpaceman-Spiff has done a really good job of integrating this into YaBB.Is his script comp with 1.5.1 (maybe i should ask him myself ;D
<input type="text" class="textinput" name="msg_body" maxlength="2000" style="WIDTH: 100%;">
to this:<TEXTAREA NAME="msg_body" ROWS="3" COLS="50" STYLE="WIDTH: 100%;"></TEXTAREA>
If I knew how to use BoardMod I could probably make this into a "real" mod ;)
Everything seems to be working now except, I get this error message when I try to send an e-card.My host is using PHP 4.1.2 and the gzcompress() was available since 4.0.1, thought this might help determine why the script is saying it is undefined. Thanks
Fatal error: Call to undefined function: gzcompress() in /usr/home/jackcarr/htdocs/yabbse/gallery/ecard.php on line 56
thoughts?
Finally got around the relative link problem by creating a symbolic link to the YaBBImages directory in the gallery directory. Seems to work fine.
Follow up to:QuoteEverything seems to be working now except, I get this error message when I try to send an e-card.My host is using PHP 4.1.2 and the gzcompress() was available since 4.0.1, thought this might help determine why the script is saying it is undefined. Thanks
Fatal error: Call to undefined function: gzcompress() in /usr/home/jackcarr/htdocs/yabbse/gallery/ecard.php on line 56
thoughts?
Jack
if (function_exists("gzcompress")) {
$encoded_data = urlencode(base64_encode(gzcompress(serialize($data),9)));
} else {
$encoded_data = urlencode(base64_encode(serialize($data)));
}
and replace it with $encoded_data = urlencode(base64_encode(serialize($data)));
YSE 1.5.1 is using a different method of gzip, no longer using gzcompress function, but it uses: ob_start("ob_gzhandler");Thanks , but you know that one thing is almost always going to raise another question or problem. The email sent just fine, took me to a e-card sent page.
i dont know if it affects the ecard or not
if the problem still appear, u can open ecard.php, search for Code:
if (function_exists("gzcompress")) {
$encoded_data = urlencode(base64_encode(gzcompress(serialize($data),9)));
} else {
$encoded_data = urlencode(base64_encode(serialize($data)));
}
and replace it with Code:
$encoded_data = urlencode(base64_encode(serialize($data)));
I don't understand why on one system the file paths for the images work and on another they don't work.
Any reflection on this before I start hard coding paths in my installation?
In the thumbnail settings, I've tried GD1 and GD2 but there is no effect on the output (there is no output). Can anyone tell me what GD is and if I need to install it?check in your phpinfo if u have GD installed
<?php phpinfo(); ?>
upload it, and view it using your browserThe email sent just fine, took me to a e-card sent page.
However, on the e-mail the FROM: name appeared as (Jack.<) and if you try to reply you have the same thing in the TO: field.
oh yea, i forgot to add the session handling :|I will be needing this update too. Thanks
will do that tomorrow... working on something else atm...
I have tried to install this cool mod but everytime i try to open the gallery it only gives some errors and nothing more:Parse error: parse error, unexpected '.' in /home/dekroego/public_html/kroeg/gallery/include/config.inc.php on line 77
http://www.dekroegonline.nl/kroeg/gallery/
Please help me, and thanks in advance.
I just upgraded to 0.5, and now my gallery menu shows images instead of text. How do I go back to the text menu?if u read the readme.txt file, u'll get this:
Sorry, the copyright tag must be in the template.
Please notify this forum's administrator that this site is using an ILLEGAL copy of YaBB!
I have tried to install this cool mod but everytime i try to open the gallery it only gives some errors and nothing more:Parse error: parse error, unexpected '.' in /home/dekroego/public_html/kroeg/gallery/include/config.inc.php on line 77
http://www.dekroegonline.nl/kroeg/gallery/
Please help me, and thanks in advance.
Problem !
When you write in Pictures comments
in the gallery 0.95 1.5.1 i get this error up
Quote:
Sorry, the copyright tag must be in the template.
Please notify this forum's administrator that this site is using an ILLEGAL copy of YaBB!
and i test it in the ---> Demo site <---
the same error come up there too
whats wrong !
Please help !
Devilrazor
...but I'm seeing Error on Page in the status box as soon as I click inside the comment text box. This is on my site at: http://www.carrscorner.com/yabbse (http://www.carrscorner.com/yabbse) and also on your Demo Site.
I had the same parse errors. I had to delete the . before the gallery dirs. My database doesn't like those. but now, unfortunatley, I can't upload anything.
I had the same parse errors. I had to delete the . before the gallery dirs. My database doesn't like those. but now, unfortunatley, I can't upload anything.
which gallery dir?
maybe u need to put full path instead?
like /home/dekroego/public_html/kroeg/gallery
the settings im using:
Directory & file settings:
Path to album directory RELATIVE to Coppermine directory: album/
The directory where user uploaded pictures are stored (RELATIVE to album directory): userpics/
I'm still having problems uploading pics.
I tried setting the full path, but nothing changed.
I still get a blank page after clicking upload.
Maybe removing the '.' did something?
But If I leave the '.' in, I get parse errors and the mod won't run. ???
http://www.swja.net/yabbse/gallery/
I hate to be a whiner, but could somebody please read my post.Assuming that you have set the permissions correctly on that file (min 644) so that it can be written to, I have had occassions that I would have a file give me fits too. Usually, I can ftp a copy back to my computer, then delete the copy on the server. I then alter it like it is needed and ftp it back to the server and reset the permissions on it. Most times this has corrected my problem. I have never figured out the "WHY" behind it doing this though. Someone else may have an answer to that to help avoid the problem in the future. Hope this helps or some one can come up with a better answer.
Can anyone tell me how to modify the config file?
I cannot alter the config file because it is protected in some way...
I hate to be a whiner, but could somebody please read my post.Assuming that you have set the permissions correctly on that file (min 644) so that it can be written to, I have had occassions that I would have a file give me fits too. Usually, I can ftp a copy back to my computer, then delete the copy on the server. I then alter it like it is needed and ftp it back to the server and reset the permissions on it. Most times this has corrected my problem. I have never figured out the "WHY" behind it doing this though. Someone else may have an answer to that to help avoid the problem in the future. Hope this helps or some one can come up with a better answer.
Can anyone tell me how to modify the config file?
I cannot alter the config file because it is protected in some way...
Jack
I cannot alter the config file because it is protected in some way...
I'm still having problems uploading pics.
I tried setting the full path, but nothing changed.
I still get a blank page after clicking upload.
Maybe removing the '.' did something?
But If I leave the '.' in, I get parse errors and the mod won't run. ???
http://www.swja.net/yabbse/gallery/
@ smacktalk: u should install the gallery in a subdirectory (prefered directory name is 'gallery') of the forum so it can find Settings.php in its parent directory
thx jack for the fix :)
smacktalk, could u pls send me your url, so i can see the error msg, just IM me if u dont wanna give it out to public
@ dschwab9: u're the 2nd person that reported this, a temporary fix is to change the $db_prefix . "gallery_album" into: "yabbse_gallery_album" (where yabbse_ is your db prefix)
i'll try to look into this issue again later...
the problem must've been in the installer then... :(
Yordy, your problem may be that the owner of the config file is changed (wrong). If the PhP process runs under a different user than the FTP you may not be able to delete the file (or change it) the only way I know of to fix this is to connect via telnet or SSH, logged in as root and delete the file that way. (Or chown the file to the FTP user)
chown command refrence (http://www.computerhope.com/unix/uchown.htm)
Free SSH client (http://www.ssh.com)
If this is the problem and you don't have root access you may have to ask your ISP to delete the file or chown it for you.
P.S. This is a Linux/Unix thing this wouldn't apply to a Win32 server
if ($settings[7] == 'Administrator' || $settings[7] == 'proupholsterers')
$yymenu = $yymenu.$menusep."<a href=\"$boardurl/yabbse/chat/login.php?option=chat&username=$euser\">$img[chat]</a>";
thats a nice trick JRCarr ;) but i have one more problem with my forum buttons table and when you click on gallery button the color of the background buttons table change cuz am using bakcground image for tables.
<TD bgColor=#F2D3B7 background="YaBBImages/catbg.jpg">
Quoteif ($settings[7] == 'Administrator' || $settings[7] == 'proupholsterers')
$yymenu = $yymenu.$menusep."<a href=\"$boardurl/yabbse/chat/login.php?option=chat&username=$euser\">$img[chat]</a>";
this will hide the gallery button but guest still can view the gallery ??? for example they can type this in their browser:
http://dtg35.defenderhosting.com/~babylon/forum/gallery/ (http://dtg35.defenderhosting.com/~babylon/forum/gallery/)
if ($username == "Guest")
fatal_error($txt[223]);
u can write something like this at the end of init.inc.php: Code:
if ($username == "Guest")
fatal_error($txt[223]);
I cant get past this:
Could not create a mySQL connection, please check the SQL values entered
MySQL error was : Access denied for user: '*****@*****' (Using password: YES)
i'll try to send u a modified installer when im back home (another 4-5 hrs)
I cant get past this:
Could not create a mySQL connection, please check the SQL values entered
MySQL error was : Access denied for user: '*****@*****' (Using password: YES)
I have done all of the hints you gave me but I still get the same error. :(
I even tried reinstalling everything from scratch. Any more ideas?
i dont know why the installer wont pick up the values from Settings.php :|
is your settings.php located in the parent directory of the gallery installer?
im attaching a galler test installer, u'll need to open the file and edit the db settings first before running it
When I try to install a "Photo Gallery Mod", one of step is run 'Gallery0.9.mod' in BoardMod. I have download BoardMod (bm252setup.exe) from www.boardmod.org, but I don,t know how to use it. ???
When I try to install a "Photo Gallery Mod", one of step is run 'Gallery0.9.mod' in BoardMod. I have download BoardMod (bm252setup.exe) from www.boardmod.org, but I don,t know how to use it. ???
- download the zip version, unzip it somewhere
- go to Mods directory and delete everything there, make a new directory called 'YSE1.5.1' and put my .mod file there
- load the boardmod.exe
- browse for index.php (your yabb se files)
- apply the mod
- upload the changed files (i think only english.lng and subs.php)
read the BoardMod site's FAQ for more info
i dont know why the installer wont pick up the values from Settings.php :|
is your settings.php located in the parent directory of the gallery installer?
im attaching a galler test installer, u'll need to open the file and edit the db settings first before running it
I will try that installer. Also, my Settings.php in in my forum directory along with template.php and English.lng etc... I also have the gallery directory created within my forum directory.. just like the Sources and YaBBImages directories.
I still have the following error when I loading the install.php page:
Notice: Undefined index: test_gd2 in D:\cgi-bin\yabbse\gallery\install.php on line 585
Notice: Undefined index: phpinfo in D:\cgi-bin\yabbse\gallery\install.php on line 592
Notice: Undefined index: impath in D:\cgi-bin\yabbse\gallery\install.php on line 71
The installer can not find the '
Notice: Undefined index: impath in D:\\\\cgi-bin\\\\yabbse\\\\gallery\\\\install.php on line 301
/' directory you have specified for ImageMagick or it does not have permission to access it. Check that your typing is correct and that you have access to the specified directory.
@ Zombie: i dont know much about ImageMagick settings, can u try to post here: http://www.chezgreg.net/cpgboard/ in Coopermine 1.0 support, explain about your GD and IM settings
hopefully ppl there will know more about those stuff...
Sorry, the copyright tag must be in the template.
Please notify this forum's administrator that this site is using an ILLEGAL copy of YaBB!
QuoteSorry, the copyright tag must be in the template.
Please notify this forum's administrator that this site is using an ILLEGAL copy of YaBB!
My member said he get that error when he posted comments on gallery section. ::)
OK. Now that I finally got the gallery installed (thanks Spaceman-Spiff), how can I make it look like all of the rest? Mine is not formated.. CHECK IT HERE
QuoteOK. Now that I finally got the gallery installed (thanks Spaceman-Spiff), how can I make it look like all of the rest? Mine is not formated.. CHECK IT HERE
The <yabb galleryHeader></HEAD> should look like this in your forum template.
Latest error is Fatal error: Call to undefined function: clicklog() in /Test/gallery/include/init.inc.php on line 47
# FROM YaBB
include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
# Why do these need to be hard coded?
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
# Back to normal...
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
Fatal error: Call to undefined function: exif_read_data() in /home/hamilton/public_html/forums/gallery/include/exif.inc.php on line 58
Check your Database and see if the installer inserts these three tables.
Wistman, Are you getting "include" errors. I had to hard code some paths to the forum code. In the init.inc.php file.
My code looks like this now...Code: [Select]Posted by: babylonking
# FROM YaBB
include_once "../QueryString.php";
include_once "../Settings.php";
include_once "../english.lng";
# Why do these need to be hard coded?
include_once "../Sources/Subs.php";
include_once "../Sources/Errors.php";
include_once "../Sources/Load.php";
include_once "../Sources/Security.php";
# Back to normal...
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
Everything seems to work fine !!
Except for one thing..............whenever I change the CSS, I see no changes. The style.css IS changed (I can see that), but it looks like it doesn't use it or something ?
My text keeps white, and that is a problem on the light background.
Does the board CSS overrule the Photo Gallery CSS ?!
"help" ??
Nice try....ofcourse I had it CHMOD'ed 666.
I now use the same .css as my board (I use the external CSS mod), so the problem is solved.
My members LOVE it !
When you are looking at an album there are options to sort by name and date.. if you click on any.. they dont do anything ???
Unable to connect to database !and would love to know what to do. I've tried editing my include_once settings in all different ways. If I really screw it up, I get a blank page. When I set it to:
Check your configuration
MySQL said: No Database Selected
# FROM YaBB
include_once "/yabbse/Settings.php";
include_once "/yabbse/QueryString.php";
include_once "/yabbse/english.lng";
include_once "/yabbse/Subs.php";
include_once "/yabbse/Errors.php";
include_once "/yabbse/sources/Load.php";
include_once "/yabbse/sources/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
include_once "/yabbse/Settings.php" (site root, then yabbse =error)
include_once "../yabbse/Settings.php" (up 1, then yabbse = wrong path, blank page)
include_once "../../yabbse/Settings.php" (up 2, then yabbse = right path but error)
include_once "/Settings.php" (failed since settings is not in the site root)
# FROM YaBB
include_once "../Settings.php";
include_once "$boarddir/QueryString.php";
include_once "$boarddir/english.lng";
include_once "$sourcedir/Subs.php";
include_once "$sourcedir/Errors.php";
include_once "$sourcedir/Load.php";
include_once "$sourcedir/Security.php";
include_once "include/config.inc.php";
include_once "include/functions.inc.php";
# FROM YaBB
include_once ("../Settings.php");
include_once ("../QueryString.php");
include_once ("../english.lng");
include_once ("../Sources/Subs.php");
include_once ("../Sources/Errors.php");
include_once ("../Sources/Load.php");
include_once ("../Sources/Security.php");
include_once ("include/config.inc.php");
include_once ("include/functions.inc.php");
My sort used to work fine... was working for weeks. Then one day it just stopped working ???
I moved hosts.. worked again.... then a month later it stopped ??? ???
The hosts had recompiled apache etc though.. so not sure if that caused it
I found the following error where I run install.php : ???
Notice: Undefined index: test_gd1 in D:\cgi-bin\yabbse\gallery\install.php on line 577
Notice: Undefined index: test_gd2 in D:\cgi-bin\yabbse\gallery\install.php on line 585
some members are getting this error.
Sorry, the copyright tag must be in the template.
Please notify this forum's administrator that this site is using an ILLEGAL copy of YaBB! ???
$meta = "<META http-equiv=\"refresh\" content=\"1; url=$HTTP_REFERER">";and delete this line !
msg_box("Information","<div align=\"center\">Your comment was added</div>", "BACK", "$HTTP_REFERER");
msg_box("Information","<div align=\"center\">Your comment was added</div>", "BACK", "javascript:history.back()");
Iccwz02, this just means that GD is not compiled into your PHP. You'll need to recompile with GD in or install ImageMagic.
Iccwz02, this just means that GD is not compiled into your PHP. You'll need to recompile with GD in or install ImageMagic.
I believe it's self explanitory. you need to put the db_input.php file in the same directory as your SETTINGS.PHP file, which is in Sources, not gallery, :DSorry, but my Settings.php is in the home/root directory of Gallery, not in the Sources directory. From the looks of the error message, he needs to check the db_input.php at line 172 and see what is going on there. The line in question is this:
OK. Now that I finally got the gallery installed (thanks Spaceman-Spiff), how can I make it look like all of the rest? Mine is not formated.. CHECK IT HERE (http://gqr-enterprises.com/forum/gallery)@smacktalk: i cant get to your forum since u're using the appllication mod. u can edit the gallery css to match your yse colors, the option is in gallery administration page. also i have the XP buttons for the gallery
OK. Now that I finally got the gallery installed (thanks Spaceman-Spiff), how can I make it look like all of the rest? Mine is not formated.. CHECK IT HERE (http://gqr-enterprises.com/forum/gallery)@smacktalk: i cant get to your forum since u're using the appllication mod. u can edit the gallery css to match your yse colors, the option is in gallery administration page. also i have the XP buttons for the gallery
<?php
// ------------------------------------------------------------------------- //
// Coppermine Photo Gallery v1.0 Release Candidate 3 //
// Moduled for YaBB SE by Spaceman-Spiff //
// ------------------------------------------------------------------------- //
// Copyright (C) 2002 Grégory DEMAR <[email protected]> //
// http://chezgreg.net/coppermine/ //
// ------------------------------------------------------------------------- //
// Based on PHPhotoalbum by Henning Støverud <[email protected]> //
// http://www.stoverud.com/PHPhotoalbum/ //
// ------------------------------------------------------------------------- //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 2 of the License, or //
// (at your option) any later version. //
// ------------------------------------------------------------------------- //
// ImageMagick configuration
$CONFIG['impath'] = ""; // The full path to the ImageMagick convert program if you want to use ImageMagick for thumbnails
// PICTURE AND THUMBNAIL SETTINGS
$CONFIG['fullpath'] = "albums/"; // Path to album directory RELATIVE to Coppermine directory
$CONFIG['userpics'] = "userpics/"; // The directory where user uploaded pictures are stored (RELATIVE to $CONFIG['fullpath'])
$CONFIG['install_lock'] = "install.lock"; // The lock file used by the installer
$CONFIG['thumb_pfx'] = "thumb_"; // Prefix used for thumbnail
$CONFIG['normal_pfx'] = "normal_"; // Prefix used for normal size image (reduced size)
$CONFIG['max_upl_size'] = "512"; // Maximum allowed size for uploaded pictures
$CONFIG['thumb_method'] = "gd1"; // Method for creating thumbnail and resized images:
// "im" : use ImageMagick
// "gd1": use GD 1.x image imagecopyresized function
// "gd2": use GD 2.x image imagecopyresampled function
$CONFIG['nopic_image'] = 'nopic.gif'; // Image showed when there is no pictures uploaded in an album. Put the image inside 'images' folder.
$CONFIG['albums_per_page']= 6; // Number of albums per page in the album view
$CONFIG['thumbrows'] = 3; // Number of rows on thumbnail page
$CONFIG['thumbcols'] = 3; // Number of cols on thumbnail page
$CONFIG['max_tabs']= 10; // Max number of tabs to display in thumbnail or album view
$CONFIG['caption_in_thumbview']= true; // Set this to false if you don't want the image caption to appear in the thumbnail view
$CONFIG['default_sort_order']='na'; // Default sort order for albums
// na : name ascending
// nd : name descending
// da : date ascending
// dd : date descending
$CONFIG['thumb_width'] = 100; // Maximum width or height of a thumbnail
$CONFIG['picture_width'] = 400; // Maximum width or height of a picture
$CONFIG['make_intermediate'] = true;// Wether to create intermediate size images
$CONFIG['jpeg_qual'] = 85; // Quality for jpeg compression. Default 85, if you use ImageMagick you can set this to 80
$CONFIG['read_exif_data'] = true; // Wether to read EXIF data or not (require PHP compiled with --enable-exif)
$CONFIG['number_in_toplist'] = "50";// Number of entries to show on the statistics page
$CONFIG['charset'] = 'iso-8859-1'; // Default charset to use. Change this to what is suitable for your country.
// Most western people will use ISO-8859-1
// PERMISSION SETTINGS
$CONFIG['gmod_power'] = true; // Allow global mods to have admin powers in gallery (except to go to gallery settings page).
$CONFIG['user_create_album'] = true;// Allow users to create albums in the gallery
$CONFIG['user_upload'] = true; // Allow users to upload pictures
$CONFIG['user_comments']= true; // Allow users to post comments
$CONFIG['guest_upload'] = false; // Allow guests to upload pictures
$CONFIG['guest_comments'] = false; // Allow guests to post comments
// ECARDS SETTINGS
$CONFIG['enable_ecards']= true; // Set this to false to disable ecards
// COMMENT SETTINGS
$CONFIG['max_com_wlength']= 38; // Maximum length of a word (vandal protection)
$CONFIG['max_com_lines']= 10; // Maximum number of lines in a comment
$CONFIG['max_com_size']= 512; // Maximum size of a comment
// MySQL TABLE NAMES
$CONFIG['TABLE_PICTURES'] = forum_."gallery_pictures"; // MySQL table for pictures
$CONFIG['TABLE_ALBUMS'] = forum_."gallery_albums"; // MySQL table for albums
$CONFIG['TABLE_COMMENTS'] = forum_."gallery_comments"; // MySQL table for comments
// What HTML tags to keep in posts
$CONFIG['keep_tags'] = array(
'description' => '<b><i><a>', // Album description
'message' => '<b><i><a>' // e-Cards messages
);
?>
/me wanders if there are other people who don't seem to get the sorting to work....
smacktalk, check the first topic, i've put an XP image pack for the gallery buttons
if there are other people who don't seem to get the sorting to work...
@Nerd3d: i haven't tested that picture sort :-\
Quote
@Nerd3d: i haven't tested that picture sort :-\
Test it :-\
3. edit your forum template and add these tags:
- <yabb galleryMenu> Recommended place: right after <yabb menu>
- <yabb galleryHeader> Recommended place: inside <head> after YSE <style> tag
- <yabb galleryBodyTag> inside <body> tag, example: <BODY text=#000000 link=#0033ff bgColor=#f5f5f5<yabb gallerybodytag>>
4. create a folder for your gallery inside YSE directory, recommended directory name: 'gallery'
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">i removed the <style> part above cuz it's too long
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta content="<yabb title>" name="description" />
<meta content="PHP, MySQL, bulletin, board, free, open, source, yabb, yet, another, SE" name="keywords" />
<meta content="mshtml 6.00.2600.0" name="generator" />
<title><yabb title></title>
<yabb galleryHeader>
</head><body text="#000000" link="#0033ff" bgcolor="#f5f5f5" <yabb galleryBodyTag>>
Notice: Undefined index: test_gd1 in ...\gallery\install.php on line 577[/b]
Notice: Undefined index: test_gd2 in ...\gallery\install.php on line 585
Notice: Undefined index: phpinfo in ...\gallery\install.php on line 592
Notice: Undefined index: impath in ...\gallery\install.php on line 71
Notice: Undefined index: impath in ...\gallery\install.php on line 286
when i upload picture i found this error
An Error Has Occurred!
2: open_basedir restriction in effect. File is in wrong directory
(/mnt/host-users/satitkku/forum/gallery/db_input.php ln 172)
when i upload picture i found this error
An Error Has Occurred!
2: open_basedir restriction in effect. File is in wrong directory
(/mnt/host-users/satitkku/forum/gallery/db_input.php ln 172)
anyone having this problem, pls try this alternate db_input.php: http://www.monkey-pirate.com/spiff/mods/Gallery Mods
$dir_to_open = "$boarddir/smilies";
$dir_to_open = "/home/**username**/public_html/yabbSE/smilies";
When the pictures are viewed by Last hits every picture has the default date and looking at the database I noticed the mtime is not being recorded.
db_query("UPDATE {$CONFIG['TABLE_PICTURES']} SET hits=hits+1, mtime=".time()." WHERE pid='$pid'");
im developing the new album permission manager, could use some beta testing help when done :)
hope i can get something done tonight
im developing the new album permission manager, could use some beta testing help when done :)
hope i can get something done tonight
my users have advised me that sometimes when they add a comment, the confirmation is displayed "your comment was added" then the page changes and the warning "Sorry, the copyright tag must be in the template.till this moment, i cant figure out what causes this, since i never gotten it myself
Does it ro it every time? Do you see a window that says "Your comment has been added"?
$meta = "<META http-equiv=\"refresh\" content=\"1;url=$HTTP_REFERER\">";
$meta = "<META http-equiv=\"refresh\" content=\"1;url=http://www.yoursite.com/forum/gallery\">";
This is just a guess, but I'll bet this is the problem child...Code: [Select]$meta = "<META http-equiv=\"refresh\" content=\"1;url=$HTTP_REFERER\">";
This is line 100 of db_input.php Try changing it to something like this just to see what happens...Code: [Select]$meta = "<META http-equiv=\"refresh\" content=\"1;url=http://www.yoursite.com/forum/gallery\">";
If this stops it then something is going wrong with the HTTP_REFERER variable. Try hovering over the back button to see where it leads too. Likely the URL is messed up.
<yabb gallerycopyright><yabb copyright>
Both tags are required and you will receive errors if they are not there. $yymenu = "<a href=\"$scripturl\">$img[home]</a>$menusep<a href=\"$helpfile\" target=\"_blank\">$img[help]</a>$menusep<a href=\"$cgi;action=search\">$img[search]</a>";
$yymenu .= "$menusep<a href=\"$scripturl?action=gallery\">$img[gallery]</a>";
} else {
test_fs();
if ($errors != '')
html_prereq_errors($errors);
else {
test_im();
html_input_config();
}
} else {
html_input_config();
}
im developing the new album permission manager, could use some beta testing help when done :)
hope i can get something done tonight
<title><yabb title></title>
<yabb galleryHeader>
</head>
<body text="#000000" bgcolor="#F3F3F3" link="#284357" <yabb galleryBodyTag>>
<br>
<table border="0" width="100%" cellpadding="3" cellspacing="0" bgcolor="#808080" align="center">
<tr>
<td valign="middle" bgcolor="#DADADA" align="center"><font size="1"><yabb menu>
<yabb galleryMenu>
Here's my temp fix... I just re-created the pages that are required by the searching function and gave them a different name. For anyone that needs this working NOW feel free to try these files.
This is not the right way to do it, but it is a workign way. Hopefully someone will be able to fix that $title variable so we don't have to do this. Until then...
http://pfabb.lunabyte.com/attachments/searchfix.zip
$connection = db_connect();
to:$connection = $dbcon;
Then you can leave that change because it's only used when clicking searchnew from the gallery's admin menu.function add_picture($aid, $filepath, $filename, $title)
To:function add_picture($aid, $filepath, $filename)
After using the searchnew function to add multiple pictures, you will need to change function.inc.php back to the way it was, or your users will not be able to add a titile to a picture when uploading.My users can't delete their comments, when the delete button is pressed it goes to a information page saying "no changes have been made....."Unless something else has change since I did this, the was my solution to the same problem.
@Spiff, did you have any joy with the advanced user level changes you were looking at? It would be great if I could set access privileges for various albums.
;)
Spaceman-Spiff, I found the problem of a non-admin user not being able to delete their own comments. In the delete.php file the following section:Hope this helps.
case 'comment':
if ($AUTHORIZED){
$query = "DELETE FROM {$CONFIG['TABLE_COMMENTS']} WHERE msg_id='$HTTP_GET_VARS[id]'";
} else {
$query = "DELETE FROM {$CONFIG['TABLE_COMMENTS']} WHERE msg_id='$HTTP_GET_VARS[id]' and author_id='$username'";
}
Needs to have the variable in the "else" changed from "author_id" to msg_author". The yabbse_gallery_comments Table contains the field msg_author not author_id. Hope this helps any one else that have the problem.
Works the Gallery with 1.5.1 Final?if u want to upgrade to 1.5.1, u only need to run the .mod file again in BoardMod, and upload Subs.php & english.lng again, and everything will be fine :)
Must I use boardmod after upgrade to 1.5.1 final? When cames a new Gallery?
i've made a new .mod file last week, did anyone try it? it's supposed to fix the copyright error bugThat problem went away for a few of my users after the copyright change.
Warning: Failed opening './QueryString.php' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 30
Warning: Failed opening './english.lng' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 31
Warning: Failed opening './german.lng' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 32
Warning: Failed opening './Sources/Subs.php' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 33
Warning: Failed opening './Sources/Errors.php' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 34
Warning: Failed opening './Sources/Load.php' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 35
Warning: Failed opening './Sources/Security.php' for inclusion (include_path='.:/usr/local/lib/php') in /kunden/domain/gallery/include/init.inc.php on line 36
Fatal error: Call to undefined function: clicklog() in /kunden/domain/gallery/include/init.inc.php on line 48
in my gallery the search new pics doesn't work - is this a bug?i forgot to check that feature when converting the gallery, will try to do that for the next version, if i recall correctly, someone made a fix about a few pages back :P
include_once "../Settings.php";
include_once "$boarddir/QueryString.php";
include_once "$boarddir/english.lng";
include_once "$sourcedir/Subs.php";
include_once "$sourcedir/Errors.php";
include_once "$sourcedir/Load.php";
include_once "$sourcedir/Security.php";
and change them into their full path, like:include_once "/kunden/webmedia-dezign.de/webseiten/friends-lounge/english.lng";
or use include_once "../english.lng";
that worked, but when i've upload a photo and click on the (i) info button, i got an error ...what's the error msg? is it about exif function not exist?
OK, I'm currently running 1.4.1 and the 0.9 gallery (With a couple of manual hacks.) I want to upgrade to 1.5.1 with the gallery. I also want to add PfaBB. What order should I do this in? My guess it to remove the gallery mod, Upgrade to 1.5.1, Add the 0.95 gallery, then PfaBB.
OR
Would I be better off if I backed up my database and image folders, wiped every thing out and started with a clean install then restored my data?
An Error Has Occurred!
2: Missing argument 4 for add_picture()
(/home/sites/site284/web/yabbse/gallery/include/functions.inc.php ln 300)
Yep, yep, I see it. You've replaced the "title" field with a name field. That could work, but the name of the text box needs to remain as "title" or you will need to do some serious hacking to change that.
if(!add_picture($album, $CONFIG['userpics'], $picture_name, $title))
and in function.inc.php, line 297:function add_picture($aid, $filepath, $filename, $title)
so they "should" be fine...if (add_picture($aid, $dir, $pic)){
and replace withif (add_picture($aid, $dir, $pic, '')){
i've fixed most of the bugs above
the problem with the javascript is maybe u didnt upload the .js file in binary
Coppermine 1.1.0 is now available for download. You can get it in the "Coppermine stable" download area.
http://www.chezgreg.net/coppermine/
sorry, meant to say ASCCI >_<
can u give me a url to your gallery so i can check?
u'll need to uninstall the previous .mod file first, install this new one, then add <yabb gallerycopyright> in your forum template, right before <yabb copyright>
pls post a link if its still showing problems
The called "author_id" not exist! The name in the sql-table is "msg_author".Great!
You will see the error if you try to delete your own comment with no-admin-rights. Changing the "author_id" to "msg_author" will fix the problem.
Tom
To get the search new function working, edit addpic.php, search for:Code: [Select]if (add_picture($aid, $dir, $pic)){
and replace withCode: [Select]if (add_picture($aid, $dir, $pic, '')){
as simple as that :)
Can someone tell me what a Host needs to do to implement the GD Library? (slow host :P )check in phpinfo to find out if your host has it installed and compiled or not
Thanks!
hello i french and your mod is interessant but is in english... can you créate a file french.lng for your mod?maybe i will...
JRCarr is right, the one I integrated to YSE is Coppermine 1.0 RC3, 1.1 has it's own user system. you'll also need the modified coppermine (link is in the first post) to run it with YSE, the clean version from coppermine site won't workO.K... I have now installed RC3 and users no longer have to login to upload images or view galleries, but I'm still not seeing the Gallery Settings menu like I think I'm supposed to and the look of the gallery is not integrated with the look of YaBBSE (see image http://www.drunk-n-stupid.com/images/compare.jpg (http://www.drunk-n-stupid.com/images/compare.jpg)). Is the YSE header supposed to carry over to the gallery? Have I done something wrong?
It doesn't use the same CSS as YSE and when I click on "Edit Gallery CSS" in the Gallery Settings, it brings up a CSS alright, but when I change anything, save and then refresh, nothing changes!
Any idea on when we might see a permanent fix for the newsearch.php problem? One that doesn't disable the $title variable?i think there's a fix for this a few pages back... u just have to do some digging :P
TIA
1. My forum uses the german buttons. When I go the gallery there'll be shown the english buttons. What can I do without copying the german buttons into YaBBimages?1. edit include/init.inc.php, search for
2. Which are the best thumbnail settings? GD1, GD2, ImageMagick
3. Is there a possibility to change the title of the pictures from the gallery?
include_once "$boarddir/english.lng";
replace withinclude_once "$boarddir/german.lng";
That typically means your sql variables (to connect to your database) aren't correct...such as your database name, username, pwd, localhost, etc...
That typically means your sql variables (to connect to your database) aren't correct...such as your database name, username, pwd, localhost, etc...
HI Charlotte, well I was never prompted for them. the install.php prompts for imagemagick path only. ??
That typically means your sql variables (to connect to your database) aren't correct...such as your database name, username, pwd, localhost, etc...
HI Charlotte, well I was never prompted for them. the install.php prompts for imagemagick path only. ??
slack, try the manual gallery installer (link in 1st post)
and for the upload link, u need to add <yabb galleryMenu>
read the readme file for more tags to add to your template
</STYLE>
<yabb galleryHeader>
change it to:</STYLE>
<yabb galleryHeader>
</head>
maybe its because of the other JS stuff in your forum
Look back a few pages in this thread, there is a fix posted for anyone that was having javascript errors.
u're right, there's a js error
i'll change the textbox with a yse-like textarea in the next version
Spiff? Could you maybe look at my gallery and tell me why I can see full size images? Does it have something to do with the fact that I patched the gallery to allow searchnew.php to work?that will be a js error
TIA
<style type="text/css">
<yabb galleryHeader>
<yabb galleryHeader> should be outside the style tag (i thought i've said this before)Note: Above question has been answered. (Nope. Don't need it.).Sorry :-[
check Subs.php, search for $yymenuNote: Above question has been answered. (Nope. Don't need it.).Sorry :-[
I have got a problem, it links all the menu items to the gallery directory, for example for the profile it links to "forum/gallery/;action=profile;user=admin" instead of "forum/index.php?;action=profile;user=admin", does anybody knows how I can fix this?
Don't worry, I'm as anxious to get this posted as you are - and it'll be posted here as soon as I get the say-so.
Thanks for your answer, the menu works ok at the forum but when you get in the gallery you have got that problem :-\thats pretty weird, since the gallery shouldn't modify the content of $boardurl and $scripturl
You can check it at http://roxette.cs.caltech.edu/runto/forum/gallery/ :-\
$scripturl = "$boardurl/index.php";
replace with$scripturl = "http://roxette.cs.caltech.edu/runto/forum/index.php";
you have to run the .mod file and upload the gallery.gif image
Did the manual install, and it said it went successfully. However, when I click on the Gallery button, it comes back to my SE board and doesn't go to the gallery. When I go to the gallery's url, it comes up. My button is obviously not pointing to the right place. How can I get it fixed?
Warning: main(/home/warcraft/public_html/forums/gallery/include/config.inc.php) [function.main]: failed to create stream: No such file or directory in /home/warcraft/public_html/forums/gallery/include/init.inc.php on line 36
Warning: main() [function.main]: Failed opening '/home/warcraft/public_html/forums/gallery/include/config.inc.php' for inclusion (include_path='') in /home/warcraft/public_html/forums/gallery/include/init.inc.php on line 36
Warning: Cannot modify header information - headers already sent by (output started at /home/warcraft/public_html/forums/gallery/include/init.inc.php:36) in /home/warcraft/public_html/forums/Sources/Subs.php on line 361
Warning: Cannot modify header information - headers already sent by (output started at /home/warcraft/public_html/forums/gallery/include/init.inc.php:36) in /home/warcraft/public_html/forums/Sources/Subs.php on line 363
Warning: Cannot modify header information - headers already sent by (output started at /home/warcraft/public_html/forums/gallery/include/init.inc.php:36) in /home/warcraft/public_html/forums/Sources/Subs.php on line 369
Warning: Cannot modify header information - headers already sent by (output started at /home/warcraft/public_html/forums/gallery/include/init.inc.php:36) in /home/warcraft/public_html/forums/Sources/Subs.php on line 371
An Error Has Occurred!
2: Cannot modify header information - headers already sent by (output started at /home/warcraft/public_html/forums/gallery/include/init.inc.php:36)
(/home/warcraft/public_html/forums/Sources/Subs.php ln 361)
Warning: main(/home/warcraft/public_html/forums/gallery/include/config.inc.php) [function.main]: failed to create stream: No such file or directory in /home/warcraft/public_html/forums/gallery/include/init.inc.php on line 36make sure u've uploaded config.inc.php into include/ directory, and set it CHMOD 666
I could not run the install.php so i tried the manual install, (all i have to do is upload those 2 files, and run the dbmod.php, right?)u'll need to upload all of the source files too, of course ;)
Is it possible to allow users delete their own pictures?i dont remember if the feature doesnt exist or its buggy
Is it possible to allow users delete their own pictures?
if im not mistaken, you were getting a blank page when uploading?yes, I get a blank page. The pictures are uploaded to albums/userpics but I am not sure if it support GD1 or 2, how can I know it? ???
1. check if your host supports GD 1 or 2, check in phpinfo and match it with your gallery settings
2. check if the file is uploaded to albums/userpics/ or not
<!-- Created by Tim C
-Email: [email protected]
-Webpage: http://yabb.xnull.com/
-->
echo "<a href=\"thumbnails.php?album=" . $row['aid'] . "\" class=\"albums\">";
With this echo "<a href=\"thumbnails.php?album=" . $row['aid'] . "&sort=" . $CONFIG['default_sort_order'] . "\" class=\"albums\">";
Thanks Sapceman. I cannot find where to edit a gallery CSS file off the admin page but I see Style.CSS in the gallery directory - so will fool with that.its not in forum's admin page
Thanks again!
slack
Can you tell which CSS class it edit to display a background jpeg in the gallery?if you do View Source in the gallery page, you can see which table uses which style
I still am unable to get my gallery buttons to show up directly on the main forum page, but that's ok if I don't get that working, the mod still works great from the direct link.it is designed that way, will need to add more code to do that
Was a fix ever developed for the "search new pictures" error?yes, i cant remember if its in the fixed db_input file, or in one of the pages o.o
To get the search new function working, edit addpic.php, search for:Code: [Select]if (add_picture($aid, $dir, $pic)){
and replace withCode: [Select]if (add_picture($aid, $dir, $pic, '')){
as simple as that :)
Right here...To get the search new function working, edit addpic.php, search for:Code: [Select]if (add_picture($aid, $dir, $pic)){
and replace withCode: [Select]if (add_picture($aid, $dir, $pic, '')){
as simple as that :)
This appears as a plain white page with the error messages about an illegal copy of YaBB and an illegal copy of Coppermine Gallery Mod at the top.We usually solve this by putting a copy of the template.html from the YaBB folder in with gallery.
I keep on getting an error message saying that there's an error at line 609, can someone please help me? :-\QuoteThis appears as a plain white page with the error messages about an illegal copy of YaBB and an illegal copy of Coppermine Gallery Mod at the top.We usually solve this by putting a copy of the template.html from the YaBB folder in with gallery.
at line 609 of what file?ok, now I am using that add-on but now it says that there's an error at line 366
have you tried the bridge file mod yet? it should be better than this version
Hi !
I've a Problem with the "Add Comment" at the pics.
When I clik on the box, is open a explorer's window error and i don't write.
Excuse me but my english is little.
FaSan
PS : Tested with Mozilla, and no problem with it.
it is recommended to use this mod instead: http://www.yabbse.org/community/index.php?thread=24525
it is recommended to use this mod instead: http://www.yabbse.org/community/index.php?thread=24525
Why?
I hoping that this will fix the major hole in coppermine 1.03 - is this the case?