Welcome, Guest. Please Login or Register.
April 25, 2024, 02:18:34 AM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Completed mods  |  [Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod « previous next »
Pages: 1 2 [3] 4 5 ... 49 Reply Ignore Print
Author Topic: [Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod  (Read 334303 times)
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #30 on: November 10, 2002, 04:43:42 AM »
Reply with quote

gallery settings? where abouts is this option? if i go to galler/admin.php  i can see gallery settings etc.. but cant see a link to it on the gallery.

When i log on as myself (admin).. i can see option modify/delete by the Album i have just created.

When i click on the empty icon (no image upload). I just get "No image to display in this album"


« Last Edit: November 10, 2002, 04:47:29 AM by PioneeR » Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #31 on: November 10, 2002, 04:54:09 AM »
Reply with quote

... also if i manually enter gallery/upload.php i can upload fine.

Problem i have is there doesnt seem to be any links in the gallery!  ???
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #32 on: November 10, 2002, 04:59:57 AM »
Reply with quote

Silly me..

I have no comment to make of the boo boo...  ;D
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #33 on: November 10, 2002, 05:04:02 AM »
Reply with quote

Thanks spaceman for all your help  ;D

I forgot to add <yabb galleryMenu>  (which was kindly pointed out by mr spaceman  :) )

Can go to bed now!!
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #34 on: November 10, 2002, 05:07:31 AM »
Reply with quote

i can nearly go to bed that is...

the ecard function fails on

Call to undefined function: gzcompress() in /home/hangout/public_html/yabbse/gallery/ecard.php on line 56

I assume i can disable compression to get around this?

Also.. because I already have javascript in my template.. it seems to stop view full sized working.

Think i will have a sleep 1st  ;D
Logged
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Beta] Gallery Mod
« Reply #35 on: November 10, 2002, 05:17:19 AM »
Reply with quote

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

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #36 on: November 10, 2002, 05:25:48 AM »
Reply with quote

ecard works fine now with that change  ;D
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #37 on: November 10, 2002, 05:43:30 AM »
Reply with quote

When in gallery settings and searching for New Pictures, when i click i get this error

Fatal error: Call to undefined function: db_connect() in /home/hangout/public_html/yabbse/gallery/searchnew.php on line 42

sounds painful  ???
Logged
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Beta] Gallery Mod
« Reply #38 on: November 10, 2002, 05:50:31 AM »
Reply with quote

come to think of it, i never use the search new function :P
i'll put that in my todo list
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Beta] Gallery Mod
« Reply #39 on: November 10, 2002, 05:55:22 AM »
Reply with quote

fix: remove this line:
$connection = db_connect();
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #40 on: November 10, 2002, 06:08:10 AM »
Reply with quote

that did the trick. Thanks.

 ;D

can sleep now  ;D

Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #41 on: November 10, 2002, 10:05:32 AM »
Reply with quote

The only thing (well two!) on my gallery wish list now are...

The title of the page would be the name of the album and not "Album 10"

and

The gallery i used to use ( http://gallery.menalto.com/ ) although not at all intergrated into Yabb, would like to see coppermine give more permission based functions that admin can dish out to users .. but thats not really a mod  ;D

oh morning all  :)
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #42 on: November 10, 2002, 10:50:23 AM »
Reply with quote

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  ???
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta] Gallery Mod
« Reply #43 on: November 10, 2002, 03:05:46 PM »
Reply with quote

Had to make a similar change to displayecard  ;D

Quote from: Spaceman-Spiff on November 10, 2002, 05:17:19 AMif 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...
Logged
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Beta] Gallery Mod
« Reply #44 on: November 10, 2002, 06:08:48 PM »
Reply with quote

Quote from: PioneeR on November 10, 2002, 10:50:23 AMwould 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  ???

i was/am thinking of making the SSI version of coppermine ;)
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
Pages: 1 2 [3] 4 5 ... 49 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.057 seconds with 20 queries.