Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
OakGallery 2.0 Released ! [Great image gallery] Details »»
OakGallery 2.0 Released ! [Great image gallery]
Version: 1.00, by Bergman Bergman is offline
Developer Last Online: Aug 2006 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 04-05-2003 Last Update: Never Installs: 32
 
No support by the author.

?ke is finally done with version 2.0 of the OakGallery.

OakGallery home:
http://www.ake.nu/gallery/

Some live galleries:
- http://blixten.ake.nu/gallery/ (Ver 2.0)
- http://pictures.potatoesmc.com/ (Ver 2.0)
- http://websociety.wm.net/~wmanbem/fi...k/fotogalleri/ (Ver 2.0)

Please post a link to your installed gallery.

Info:
- Integrated with your existing forum software
- Easy to integrate with other methods of user authentication
- IP-based authentication included for users without forum software
- Does not need 'register_globals' to be switched on
- It's FREE of charge ;-)

- Organize images into categories and subcategories
- Lets users rate and comment on the images
- Sort the images by date, rating, views, etc.
- Languages available: English and Swedish. Easy to translate to your own language!
- Most features are configurable in some way
- The design is very configurable
- Define your own data fields
- Built with speed and security in mind
- Automatic generation of thumbnails and display images
- Can add your logo to uploaded images automatically
- Uses ImageMagick for high quality thumbnail resizing
- Ban IP's from commenting
- Show random images from the gallery on any page on your site!
(This is done simply by including random.php in your own PHP page)

...and more!

Requriments:
Database Server
- MySQL or MS SQL Server (experimental support for ODBC)
- Administration tool for the database server (e.g. phpMyAdmin)
- Support for MySQL has been tested thouroughly.
- Support for MS SQL has been tested and seems to work fine.
- Support for ODBC is currently untested.
- PhpMyAdmin to import database structure http://www.phpmyadmin.net/
- ImageMagick installed on server http://imagemagick.sourceforge.net/
- The variable include_path = "." in php.ini

- PHP 4 (PHP 3 untested, but should work)
- Tested with PHP 4.2.2
- Forum Software
- Tested with phpBB 2.0.4
- Tested with vBulletin 2.2.x
- With vBulletin 2.3.x, and error message is produced by vBulletin, but still works.
- Forum software is not really needed (but highly recommended), you can use ip-based authentication too.

Web Server
-OakGallery currently requires a web server that allows you to run shell commands from php-scripts (for ImageMagick).

Installation:
1. Create a database for the gallery (using e.g. phpMyAdmin)
(You can use the same database for OakGallery as for other things, as long as the table names don't collide)
2. Execute the complete database script found in InstallDB/<server-type>-OakGallery.sql
3. UnZip the gallery to a local folder
Edit the Upload/config/galleryconfig.php to suit your needs. The configuration options should be self-explanatory. To find where ImageMagick's convert and composite are located. Try running this from your shell (unix):

which convert or
whereis convert

4. Upload all files in the 'Upload' subdirectory to your webserver.

5. Make the directories 'thumbnails' and 'images' writeable by the webserver.

E.g:
chown nobody thumbnails
chmod 770 thumbnails
(In this example, the webserver is run as user nobody.)

7. Also, you need to make the PHP temporary upload directory writable by the webserver.

(Contact your system administrator if you need help with step 6-7)
Now, try loading the gallery page in your webbrowser and start creating categories for your pictures!

8. Dont you get it working ? Please post your problem here ... include the following:

- Path to the gallery
- Path to the forum
- Path to phpinfo.php
- Path?s in the galleryconfig.php

Then it will be much easier to help you out.

Modification:
If you want to modify OakGallery to better suit your needs, the following rules must be obeyed:

- The 'PayPal-donate' link and text must be CLEARLY visible. Preferrably near the top of the page.
- The original copyright message must be CLEARLY visible near the top of ALL pages.
- Add a message saying 'Modified by xxxx' or similar near the copyright message.
- Have fun! (and yes, that is a rule!)).

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #222  
Old 12-11-2003, 05:13 AM
mlevenson mlevenson is offline
 
Join Date: Apr 2003
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok so I go tthis installed and I have been testing it out, so far so good except I'm getting error's on file size. It seems that when I upload a file of 603546 it fails due to the configured limit of 524288.

I have modified the galleryconfig.php $cfgMaxFormFileSize = 30720000 but there is a comment on it that it can be ignored. I even hard coded in this value in the upload.php file and I still get an error.

HELP!
Reply With Quote
  #223  
Old 12-11-2003, 08:30 AM
Oak Oak is offline
 
Join Date: Apr 2003
Location: Stockholm
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mlevenson
Ok so I go tthis installed and I have been testing it out, so far so good except I'm getting error's on file size. It seems that when I upload a file of 603546 it fails due to the configured limit of 524288.

I have modified the galleryconfig.php $cfgMaxFormFileSize = 30720000 but there is a comment on it that it can be ignored. I even hard coded in this value in the upload.php file and I still get an error.

HELP!
You need to change the setting in your php.ini. The problem has nothing to do with the HTML being sent to the client, but is a limit set in php itself.

I think the directives you need to change are:

upload_max_filesize = 8M
post_max_size = 8M

8M can replaced with something else, like 1M or 2M ..

Regards,
?ke
Reply With Quote
  #224  
Old 12-11-2003, 02:07 PM
mlevenson mlevenson is offline
 
Join Date: Apr 2003
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Oak
You need to change the setting in your php.ini. The problem has nothing to do with the HTML being sent to the client, but is a limit set in php itself.

I think the directives you need to change are:

upload_max_filesize = 8M
post_max_size = 8M

8M can replaced with something else, like 1M or 2M ..

Regards,
?ke
Ok they both are at 8M they where set to upload_max_filesize = 2M post_max_size = 8M prior so it shouldn't have been any big deal. I copied the exact error that I'm getting in the log file.

[Thu Dec 11 08:03:29 2003] [error] [client 209.221.185.226] Requested content-length of 610908 is larger than the configured limit of 524288, referer: http://www.r1wolfpack.com/gallery/upload.php

If I change the file and make it 65K it works just fine.
Reply With Quote
  #225  
Old 12-12-2003, 05:59 AM
mlevenson mlevenson is offline
 
Join Date: Apr 2003
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mlevenson
Ok they both are at 8M they where set to upload_max_filesize = 2M post_max_size = 8M prior so it shouldn't have been any big deal. I copied the exact error that I'm getting in the log file.

[Thu Dec 11 08:03:29 2003] [error] [client 209.221.185.226] Requested content-length of 610908 is larger than the configured limit of 524288, referer: http://www.r1wolfpack.com/gallery/upload.php

If I change the file and make it 65K it works just fine.
Problem was not with the php.ini I found that the file size was being limited by the php.conf file located in httpd/conf.d directory. There is a line called limitfile size or something like that when I changed that to 6M and restared apache it worked fine.
Reply With Quote
  #226  
Old 12-17-2003, 08:07 PM
coolmile coolmile is offline
 
Join Date: Feb 2003
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zelda-King
Doh! It was my fault. I hadn't added my userid.

i have the same problem. i just installed the latest version 2.03, and i coudln't see the second line on the admin page.

what do you mean by "didn't add userid"? it could help me figure out the problem.

after installed, it shows i logged in as admin.. but no way to add categories.

if type in the url manually to create category, it says i need to be an admin to do that..
Reply With Quote
  #227  
Old 12-19-2003, 04:34 AM
WeBBy WeBBy is offline
 
Join Date: Jun 2003
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

First, your problem coolmile...

Search for yourself on vB (in control panel), then click on edit or something, and look at the address for userid=x. Whatever that number is, that is your userid #. Then, open your galleryconfig.php. On line 74, you will see "$cfgAdminList = '1';". Change that "1" to your userid# and it should work.

NOW MY PROBLEM...

It would appear that Oak Gallery and the small calendar hack dont get along too good. This is my error when trying to upload:

Warning: Cannot modify header information - headers already sent by (output started at /home3/www/basementsystems/dealerarea/cal.php:121) in /home3/www/basementsystems/dealerarea/gallery/upload_handle.php on line 108

Any idea how to get around this and or what the problem might be?

Thanx

EDIT: IGNORE THIS POST (I really should just delete this post but maybe someone is as stupid as I am and will be helped by it). Removing the end comment "<-- End of vbPortal calendar script" from the cal.php script solved the whole problem. What a dumb ass .. lol :O
Reply With Quote
  #228  
Old 01-02-2004, 02:21 AM
ScottW23 ScottW23 is offline
 
Join Date: Oct 2003
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
So, this does make OakGallery the BMW 7-series of Gallery software.
LOL sorry no, I don't think OakGallery is the BMW 7-series of Gallery software. It's silly to say that all applications that allow image uploads and user comments are automatically in the same league whatsoever. After 2-3 years of development work, maybe oakgallery will get there - who knows, but it isn't now.

PhotoPost has been developed for several years with thousands of manhours and has improved VASTLY since you installed it over a year ago. Here's an example, PhotoPost is now deeply integrated with vBulletin 3: http://www.photopostdev.com/
Reply With Quote
  #229  
Old 01-02-2004, 03:00 AM
Mr L Mr L is offline
 
Join Date: Jan 2002
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ScottW23
LOL sorry no, I don't think OakGallery is the BMW 7-series of Gallery software. It's silly to say that all applications that allow image uploads and user comments are automatically in the same league whatsoever. After 2-3 years of development work, maybe oakgallery will get there - who knows, but it isn't now.

PhotoPost has been developed for several years with thousands of manhours and has improved VASTLY since you installed it over a year ago. Here's an example, PhotoPost is now deeply integrated with vBulletin 3: http://www.photopostdev.com/
Nice to see that you obviously saw there was issues and it could have been improved. I shall certinally be taking a look when I am not at work later today.
Reply With Quote
  #230  
Old 03-19-2004, 11:02 PM
phenomenon phenomenon is offline
 
Join Date: Aug 2003
Location: Seattle, WA
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Any idea if Oak Gallery will be upgraded to vb 3 compatibility?
Reply With Quote
  #231  
Old 03-23-2004, 12:06 AM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i relize everyone is into vb3 now but i am sticking with vb2 for a long while, and was wondering if this hack is going to be updated for vb 2.3.2

thanks alot
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 04:31 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04937 seconds
  • Memory Usage 2,324KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete