![]() ![]() |
Jun 6 2005, 06:58 PM
Post
#1
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
![]() Zenith Picture Gallery v0.8 A new version has been released. Click here Thank you for your interest in the Zenith Picture Gallery project. This is the fifth public pre-release. The first official release (v1.0) is quickly approaching and I am very excited about what the gallery currently offers and what it will be able to offer in the next two milestone releases. If any bugs or problems are found, please post them in the Zenith forum here. If they are about a security vulnerability, please PM me. Requirements: * PHP 4.2 or higher. * GD2 (if you want the gallery to be able to create thumbnails). * MySQL 3.22 or higher. * Linux. Features of the current release: 01. Everything is done from the browser, from installation to configuration. 02. Searcheable records by filters. 03. Auto-resizing/resampling of images to thumbnails. 04. Easy skinning. 05. Categories and sub-categories with display permission options. 06. User accounts, user profiles, control panels and user types. 07. Easy management of languages. 08. Blacklist containing IPs of troublesome users. 09. Admin CP allows you to define countless settings and formatting options. 10. A notice appears in the nav bar to admins when there are pictures, comments or users awaiting approval. 11. Batch add pictures via FTP. 12. Batch delete pictures. 13. Rebuild thumbnails feature. 14. Search result and display page addresses are linkable. 15. Gallery can be turned on/off. 16. Adding pictures can be disabled for guests. 17. Sort pictures by Last comments, Most viewed, Top rated. 18. ZIP and download pictures. 19. User accounts and pictures can all be managed in the Admin CP. 20. Option to receive an email when a picture is submitted. 21. Option to allow only registered users to view the gallery. 22. Option to set a timezone offset for picture submission dates. Admin CP Screenshots: Screenshot 1 Screenshot 2 Screenshot 3 Screenshot 4 Demo: http://cyberiapc.com/zenith_demo/ Sample gallery: http://slam3.com/gallery Bug log: http://cyberiapc.com/forums/index.php?showtopic=5531 Discussion, mods, updates: http://cyberiapc.com/forums/index.php?showforum=43 Note: This software is free to use and distribute under the GNU General Public License. The only condition for free use is that the copyright notice at the bottom remains intact and visible without any alterations whatsoever. Save me the headaches of taking further action please and don't try to change or remove it. Download the latest release (v0.8) from: CyberiaPC.com or SourceForge.net View: v0.8 changelog and release information If you downloaded the file before June 9 2:30PM GMT please redownload it and upload the modified admin_functions.php, edit.php, add.php, display.php, functions.php and zipfile.php files. -------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
| Guest_Guest_* |
Jun 23 2005, 05:24 AM
Post
#2
|
|
Guests |
Errr, I dont have those four directories
|
|
|
|
| Guest_Guest_* |
Jul 15 2005, 02:12 AM
Post
#3
|
|
Guests |
|
|
|
|
| Guest_Dirk_* |
Jul 26 2005, 08:08 PM
Post
#4
|
|
Guests |
I've started working with the Gallery and I'm really impressed.
I wanted to know, if there is a german translation-file available. I've started to translate some parts. I could save my time, if there is already one available. If not, I could share my translation - if desired. |
|
|
|
Jul 26 2005, 08:24 PM
Post
#5
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
All translations are here: http://cyberiapc.com/forums/index.php?showforum=44
There is a Dutch translation for v0.8, but I don't know whether there are different types of Dutch or not. Check it out and if you want to post a different translation, feel free to do so. Thanks. -------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
Jul 30 2005, 05:04 PM
Post
#6
|
|
|
New Member ![]() Group: Members Posts: 2 Joined: 30-July 05 Member No.: 2,788 ![]() |
I have an issue .. http://www.indrid.com/gallery
Sometimes my descriptions show up, sometimes they do not! Sometimes the "direct path" is correct, sometimes it is not Sometimes it displays a file name, sometimes it does not This happens without me ever changing a thing, just browsing the site .. and it can affect the very same picture. So one moment I'll view the picture and it will have a description and all the information is there, then I go back and it's not.. or vice versa.. |
|
|
|
Jul 30 2005, 07:53 PM
Post
#7
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
You'll find that changing a picture's size fixes the problem. Do you remember when you downloaded the v0.8 package? I recall coming across that problem at one point, which is caused by the way some servers are set up, and think that it was fixed in the updated v0.8 package which was posted in mid-June.
If you downloaded the package at an earlier date, download it again and uploaded the files functions.php and pic_details.php and let me know if you still have any problems. If so, then I'll look into it for you. -------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
Jul 30 2005, 08:13 PM
Post
#8
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
I believe this was the resolution to the problem reported by another user. In pic_details.php, look for line 186
CODE //increment views counter for full-size pics $pid = $_GET['pid']; if(is_numeric($_GET['pid'])) { $row = mysql_fetch_array(mysql_query("SELECT counter, title, pic_width, pic_height FROM {$config['table_prefix']}pictures WHERE pid='$pid'")); $counter = $row['counter']+1; $result = mysql_query("UPDATE {$config['table_prefix']}pictures SET counter=$counter WHERE pid='$pid'"); } and replace it with CODE //increment views counter for full-size pics
$pid = $_GET['pid']; if(is_numeric($_GET['pid'])) { $row_counter = mysql_fetch_array(mysql_query("SELECT counter, title, pic_width, pic_height FROM {$config['table_prefix']}pictures WHERE pid='$pid'")); $counter = $row['counter']+1; $result_counter = mysql_query("UPDATE {$config['table_prefix']}pictures SET counter=$counter WHERE pid='$pid'"); } -------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
Jul 30 2005, 09:11 PM
Post
#9
|
|
|
New Member ![]() Group: Members Posts: 2 Joined: 30-July 05 Member No.: 2,788 ![]() |
This code update worked for me! though it was on line 176 in my version of the software..
I'm running v8 by the way, I just downloaded it last week, so I suspect the bug exists in the latest version, unless it's been fixed over the few days. Thanks! QUOTE(Ali Almossawi @ Jul 30 2005, 03:13 PM) I believe this was the resolution to the problem reported by another user. In pic_details.php, look for line 186
CODE //increment views counter for full-size pics $pid = $_GET['pid']; if(is_numeric($_GET['pid'])) { $row = mysql_fetch_array(mysql_query("SELECT counter, title, pic_width, pic_height FROM {$config['table_prefix']}pictures WHERE pid='$pid'")); $counter = $row['counter']+1; $result = mysql_query("UPDATE {$config['table_prefix']}pictures SET counter=$counter WHERE pid='$pid'"); } and replace it with CODE //increment views counter for full-size pics $pid = $_GET['pid']; if(is_numeric($_GET['pid'])) { $row_counter = mysql_fetch_array(mysql_query("SELECT counter, title, pic_width, pic_height FROM {$config['table_prefix']}pictures WHERE pid='$pid'")); $counter = $row['counter']+1; $result_counter = mysql_query("UPDATE {$config['table_prefix']}pictures SET counter=$counter WHERE pid='$pid'"); } |
|
|
|
Jul 30 2005, 09:14 PM
Post
#10
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
Glad it fixed it for you. I've only experienced that problem on two servers during the past 2 months, which leads me to believe that it's server-related. What the exact culprit is, I still don't know.
-------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
| Guest_Guest_* |
Aug 5 2005, 03:08 AM
Post
#11
|
|
Guests |
Excuse, But, Why is there a requirement to have Linux, it doesnt work in Windows?
|
|
|
|
Aug 5 2005, 05:38 AM
Post
#12
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
It hasn't been tested in Windows. It may or may not work correctly.
-------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
| Guest_kathy_* |
Aug 7 2005, 04:36 PM
Post
#13
|
|
Guests |
My host only provides GD Version between 1.3 and 1.6.1. Will the gallery work with that?
|
|
|
|
Aug 7 2005, 06:08 PM
Post
#14
|
|
![]() Boss, my code's compiling (xkcd) Group: Admins Posts: 10,440 Joined: 19-September 01 Member No.: 1 ![]() |
Hi, Yes it'll work fine with GD 1.x.
-------------------- ![]() ![]() Things that I don't suck at: Photography (flickr, JPG Mag), "Don't bail; the best gold is at the bottom of barrels of crap!" -Randy Pausch I have people-skills goddamnit! What is wrong with you people!!! | www.skyrill.com |
|
|
|
Sep 8 2005, 02:50 PM
Post
#15
|
|
|
New Member ![]() Group: Members Posts: 1 Joined: 8-September 05 Member No.: 2,865 ![]() |
i am download this zenith picture script and upload my serves
http://www.glbtportal.com/zenith/ problem one : im not find turkish language file p2 : i cant upload a picture in any category error message is ----------------------------------------- Warning: move_uploaded_file(): SAFE MODE Restriction in effect. The script whose uid is 586 is not allowed to access /home/virtual/site83/fst/var/www/html/zenith/uploads/Minyatur owned by uid 48 in /home/virtual/site83/fst/var/www/html/zenith/add.php on line 144 ----------------------------------------- and The file could not be moved. Make sure you chmoded the required directories to 777. ---------------------------------------- now i cant use this zenith php script what am i to do for correctting help help |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 20th June 2013 - 09:10 AM |