Welcome, Guest. Please Login or Register.
April 24, 2024, 10:44:59 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 ... 25 26 [27] 28 29 ... 49 Reply Ignore Print
Author Topic: [Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod  (Read 334241 times)
smacktalk
Full Member
***
Posts: 236


No Personal Text!!

WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #390 on: March 07, 2003, 11:13:10 PM »
Reply with quote

Quote from: babylonking on March 07, 2003, 06:54:18 PM
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.


Cool!!! Thanks.  ;D
Logged

As a well-spent day brings happy sleep, so a life well spent brings happy death.
Wistman
Jr. Member
**
Posts: 84


I'm a llama!

Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #391 on: March 08, 2003, 09:27:48 PM »
Reply with quote

My forum is set up in a directory called "Test" I have put the Gallery in a directory called "gallery" within "Test" and set up as per instructions.

when I run gallery/index.php I have had and have cleared a series of errors.

I still haven't got the gallery to run yet, but it seems to me that init.inc.php is not recognising the YaBB settings.php as all the errors are related to data set within settings.php

Any Ideas please?

Latest error is Fatal error: Call to undefined function: clicklog() in /Test/gallery/include/init.inc.php on line 47

I have the put the full url path for include_once - settings


Logged
babylonking
Full Member
***
Posts: 174


Proudly Canadian

WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #392 on: March 08, 2003, 10:05:19 PM »
Reply with quote

QuoteLatest error is Fatal error: Call to undefined function: clicklog() in /Test/gallery/include/init.inc.php on line 47

Check your Database and see if the installer inserts these three tables. 8)

yabbse_gallery_albums  
yabbse_gallery_comments
yabbse_gallery_pictures
Logged

Proudly Canadian          
Nerd3d
Full Member
***
Posts: 107


Happy Rendering

WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #393 on: March 08, 2003, 10:20:42 PM »
Reply with quote

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

# 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";
« Last Edit: March 08, 2003, 10:21:59 PM by Nerd3d » Logged
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #394 on: March 09, 2003, 12:58:08 AM »
Reply with quote

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" ??
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
Snowman30
Jr. Member
**
Posts: 67


ICQ - 10739583 WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #395 on: March 09, 2003, 07:07:45 AM »
Reply with quote

Ive finally got this great mod working on a fresh install of 1.5.1 rc 44 after going thru the whole of this discussion and following all the confusing tips...

Everything seems to be working ok now except one thing, if you click on the picture information link you get the following error:

QuoteFatal error: Call to undefined function: exif_read_data() in /home/hamilton/public_html/forums/gallery/include/exif.inc.php on line 58

Anyone have any ideas on this?

Also any idea when a mod would be available to allow members to create their own Albums, but with them setup in such a way as that admin can moderate them, and only the registered member can upload/delete from them?

Logged
Snowman30
Jr. Member
**
Posts: 67


ICQ - 10739583 WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #396 on: March 09, 2003, 07:10:58 AM »
Reply with quote

Also how hard would it be to put the create an album section on a different page other than the index? I would rather just have a link button to create a new album on the index header.
Logged
Nerd3d
Full Member
***
Posts: 107


Happy Rendering

WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #397 on: March 09, 2003, 09:30:28 AM »
Reply with quote

Likely your server does not have exif compiled in php. No biggie, you can turn this off in your gallery config...

Uncheck the "Wether to read EXIF data or not" option (Bout 2/3 down the page.

Putting the create gallery thing on another page would require a bit of work. You would need to create a whole new php page for the gallery creation.
Logged
Wistman
Jr. Member
**
Posts: 84


I'm a llama!

Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #398 on: March 09, 2003, 09:35:15 AM »
Reply with quote

QuoteCheck your Database and see if the installer inserts these three tables.


Yes the tables are there

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


# 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";

Posted by: babylonking    


The only way I could get the "include_once" to work was to hard code using my full URL path on all the YaBB "includes"
The last two 'includes are in the "gallery/include" directory an work OK.

I then had to hard code the sql script, with username, password etc., to get it to find the tables.

It seems to me that athough it includes the "settings.php" etc, it doesn't use them or can't use them?

Oh yes BTW I'm using 1.5.1RC1 not sure what build (downloaded on the 26Feb)

I shall be spending another day on it today  :o

Any help would be apprecated
Logged
Nerd3d
Full Member
***
Posts: 107


Happy Rendering

WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #399 on: March 09, 2003, 10:24:12 AM »
Reply with quote

I'm almost afraid to mention this... Spaceman Spiff, are you sitting down. Y'all know that Coppermine 1.1 is in beta. I don't know when it will be out, but the immediate question is, "will be be able to hack it into YaBB?" (Somebody's already posed that question at the coppermine forum)

Spaceman, do you have a change log for hackin in 1.0 version? If you do I might be able to start looking at 1.1 to see what will need to happen to make it work.

It doesn't look like much of the core changed much in this build of coppermine. So it shouldn't be a huge undertaking to make the new version work. I definitely wouldn't get serious about hacking it till they have a stable version.

The new coppermine thread:
http://www.chezgreg.net/cpgboard/viewtopic.php?t=473
Logged
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #400 on: March 09, 2003, 11:30:23 AM »
Reply with quote

Quote from: Webby on March 09, 2003, 12:58:08 AM
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" ??

Does anybody have an idea ?
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
babylonking
Full Member
***
Posts: 174


Proudly Canadian

WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #401 on: March 09, 2003, 07:38:05 PM »
Reply with quote

CHMOD 666 'style.css' and then try to change it again. 8)
Logged

Proudly Canadian          
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #402 on: March 09, 2003, 07:42:04 PM »
Reply with quote

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

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #403 on: March 09, 2003, 07:48:16 PM »
Reply with quote

You seem to have the same problem as me.

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

Quote from: Webby on March 09, 2003, 07:42:04 PM
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 !
Logged
Webby
Beta Tester
YaBB God
*****
Posts: 829


Some mistakes are too funny to make only once.

ICQ - 9814812webby@salesplaza.nl WWW
Re:[Beta 1.5.1RC1 & 1.4.1] Photo Gallery Mod
« Reply #404 on: March 09, 2003, 09:42:17 PM »
Reply with quote

Quote
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  ???

Yes, that's true !

A GM pointed that one out to me.........

But I read this on the bug-list :

"made album sort to based on creation date, descending"

so maybe that is harcoded or something ?!

Will this be corrected soon ?
Logged

Webby of salesplaza.nl
The YaBBSE buttongenerator : Click HERE !
Pages: 1 ... 25 26 [27] 28 29 ... 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.049 seconds with 20 queries.