photo album software
  EncapsGallery     Demo     Download     Buy     Support     HowTo     Contact  

Ask a question...
 

From: Guest   Date: January 10 2007, 14:04
Hi,

I think I've followed the directions, but I get multiple instances of this when I try to run gallery config...

Warning: fputs(): supplied argument is not a valid stream resource in /home/chimera/www/exgal1/core/Config.php on line 41
      
From: Guest   Date: January 10 2007, 14:09
oops, think I got it, had to chmod that file, not just the directory.
            
From: Guest   Date: January 10 2007, 14:12
alright, now I get this in the next install page:

Error: unable to execute query: [SELECT * FROM encaps_gallery_category WHERE parent_id=0 ORDER BY pos , id]Table 'exgal1.encaps_gallery_category' doesn't exist
Error: unable to execute query: [SELECT * FROM encaps_gallery_category WHERE parent_id=0 ORDER BY pos , id]Table 'exgal1.encaps_gallery_category' doesn't exist
Error: unable to execute query: [SELECT * FROM encaps_gallery_category WHERE id=0]Table 'exgal1.encaps_gallery_category' doesn't exist
Error: unable to execute query: [SELECT COUNT(*) FROM encaps_gallery WHERE cat = ]You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
[DROP TABLE IF EXISTS encaps_gallery_test;]
[CREATE TABLE encaps_gallery_test (`test` TEXT);]
[INSERT INTO encaps_gallery_test VALUES('test');]
[DROP TABLE IF EXISTS encaps_gallery_category]
[CREATE TABLE encaps_gallery_category ( id int(11) NOT NULL auto_increment, title text, pos int(11) default 0, vis_anons VARCHAR(80), parent_id int(11) default 0, PRIMARY KEY (id) );]
[INSERT INTO encaps_gallery_category VALUES (1,'Default',0,'on',0)]
[DROP TABLE IF EXISTS encaps_gallery]
[CREATE TABLE encaps_gallery ( `id` int(11) NOT NULL auto_increment, `filename_normal` varchar(255) default NULL, `position` int(11) default NULL, `visible` varchar(255) default NULL, `title` varchar(255) default NULL, `comment` text, `cat` int(11), `price` int(11) NOT NULL default '0', PRIMARY KEY (`id`) );]
[DROP TABLE IF EXISTS `encaps_shopcart`;]
[CREATE TABLE `encaps_shopcart` ( `id` int(10) unsigned NOT NULL auto_increment, `subtotal` int(10) unsigned NOT NULL default '0', `firstname` varchar(255) NOT NULL, `lastname` varchar(255) NOT NULL, `address` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `phone` varchar(255) NOT NULL, `datetime` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`) )]

I mssed up the config page somehow right?
                  
From: Encaps   Date: January 10 2007, 14:32
Hi,
this means the database sql-dump executed successfully.
Now you get EncapsGallery installed.

From: Guest   Date: December 18 2006, 20:20
How easy would it be to insert code to have say 4 links at the bottom of the screenshot/image for alternate resolutions? Wouldn't mind using the same code and raym template for the wallpaper page also.

Cheers mate!
      
From: Encaps   Date: December 19 2006, 07:48
If you'd like to use "raym" skin, you can do following:
create 4 links below the big image:
<a href="gallery.php?action=show_custom&size=100">100px</a>
<a href="gallery.php?action=show_custom&size=200">200px</a>
<a href="gallery.php?action=show_custom&size=300">300px</a>
<a href="gallery.php?action=show_custom&size=400">400px</a>
then create the template "/html/raym/gallery_custom.hrml" , put the tag
<img src="core/gallery_resize.php?size=<?=$_GET["size"]&filename=../rwx_gallery/<?=$item["filename_normal"]?> >
and some Javascript should be added for change 4 bottom links on thumbnails click
            
From: Guest   Date: December 19 2006, 17:35
array(1) { [0]=> array(2) { [0]=> string(1) "4" ["MAX(id)"]=> string(1) "4" } }
Parse error: parse error, unexpected '=', expecting ',' or ';' in ....\html\raym\gallery_custom.html on line 1

Is there not something simple i could just put in the code so that when you click on their image it gives you each button for a resolution and you download the image file? Like the thumbnail and image sections display the image and at the bottom you have your download buttons for each resolution.
I dont want to use the script in a sense that it modifys the image to a size in its code, just want to have download links that modify it's path based on what image you click on.
                  
From: Encaps   Date: December 22 2006, 02:56
Take a look at the core of gallery_custom.html:
<img src="core/gallery_resize.php?filename=../rwx_gallery/<?=$html["item"]["filename_normal"]?>&size=<?=$_GET["size"]?>" >

From: Guest   Date: December 14 2006, 17:39
The raym theme i have modifed to work in with my site. Though it doesn't seem to work properly in Internet Explorer. The thumbnails load ok but the screenshots/images do not. Does the same on the demo front end using raym also. Firefox is fine.
      
From: Guest   Date: December 14 2006, 21:51
This is specific to IE6. IE7 and Firefox don't have this problem.
            
From: Encaps   Date: December 15 2006, 07:40
The "raym" skin is fixed. Thank you for info
for fix it in your template you can just replase the html/raym/gallery.html line# 91:
<a href="#" class="thumbnail" id = "asdf_<?=$i?>" onclick="javascript:return false;"><img onclick ="exchange(<?=$i?>)" src="core/gallery_resize.php?filename=../rwx_gallery/<?=$item["filename_normal"]?>&amp;size=90" alt="" /></a>
                  
From: Guest   Date: December 17 2006, 16:05
It worked! Thank you.

From: Guest   Date: December 14 2006, 00:22
hi
can i make a link for each pic after being inlarged???
and if want to use this script for product catalog how it could be???
thx in advance
Mike
      
From: Encaps   Date: December 14 2006, 07:12
Hi,

1) for make a link for each pic you can:
- add one more field "link" for database table encaps_gallery
- modify the gallery admin page "admin/html/gallery.html" for add new column "link"
- modify the gallery front-end skin gallery.html for apply new param "link"
- update the core/Gallery.php for manipulate new param "link"
2)for use EncapsGallery as product catalog just choose any skin you like, or modify choosed skin as you need, or create new skin

From: Guest   Date: December 04 2006, 00:53
Hi All,
Before buying Photo Gallery, I would like to know if it has 2 features I would need :
-- is it possible for end-users to upload their pictures via an upload public page ?
-- as I want to include the photo gallery in the ID/password protected area of an existing community web site, I was wondering if I can easily protect the pages of photo gallery (current community website is protected by ID/password managed by php/mysql + sessions)

Thanks for any clarification
---SaS
      
From: Encaps   Date: December 04 2006, 06:49
- for let public user upload images you can do the following:
copy gallery/admin/* files into the new folder inside encapsgallery, let's say gallery/publicupload/, then modify html-templates as you wish (remove all image management features except file upload), and you will get user's back-end with limited functionality.

- for apply your password protection feature replace the admin/encaps-auth.php file content with your current authentication functionality

From: Guest   Date: December 02 2006, 04:54
how to install the data base code

you have given that in admin/gallery_install.php


please give reply soon
      
From: Encaps   Date: December 04 2006, 06:39
For install the data base you should first configure the gallery: open the admin/gallery_cfg.php with your web-browser, set up parameters, then run the data base installer - admin/gallery_install.php

From: Guest   Date: November 22 2006, 13:33
How do I control how many characters the ['comments'] will display below each photo. I have instances where the comment is being cut-off prematurely.
      
From: Encaps   Date: November 23 2006, 14:32
It looks like you are using previous EncapsGallery release, where "comment" length was limited by 255 symbols.
The issue you described is fixed in the encapsgallery-1.2.8 release
But in case if you don't need to reinstall your current gallery, you can modify the database table "encapsgallery" for convert the "comment" field from VARCHAR into TEXT

From: Guest   Date: November 19 2006, 09:53
Hi!

Kudos! This is an excellent gallery! I have successfully tweaked and bent it, but there are TWO things that I probably have manage to screw up myself:

1. When I - as a regular user - open a gallery to browse, The first page loads with just the headline and comment for the first image. Not the image itself. I need to click the thumbnail to get it. Can I fix so that the image loads too?

2. Comments and headlines will be written in e.g. Swedish. While the Swedish characters å, ä and ö (in html/ASCII they are: &aring; &auml; and &ouml;) work in the comments, they fail in the headlines. When I type e.g. ä in the headline box of admin image list, it shows as "&#228;" (without the "") in thew page. If I type &auml;, it comes out exactly in that way. I have charset UTF-8.

Could this be a MySQL coallition thing? But why is one working and not the other?

Cheers, and a million thanks in advance for feeback and a great app.
Dan
      
From: Guest   Date: November 19 2006, 09:56
Ooops... me again.
I don't know if this is important, but I'm using the "raym" skin.

Cheers,
Dan
            
From: Encaps   Date: November 20 2006, 07:05
Hi Dan,
could you please hit me on MSN, AIM or Yahoo Messenger?
I need some details:
1) what EncapsGallery release are you using?
2) let me look at the your gallery online (Swedish characters in headline)?
                  
From: Guest   Date: November 20 2006, 10:49
The version is 1.2.8. I downloaded a couple of days ago.
However, I was wrong about that the image doesn’t load without me being forced to clock the thumbnail. It does load.
                        
From: Encaps   Date: November 20 2006, 12:09
Dan,
thank you for screenshots and details,
please, try updated release and let me know is it ok?
                              
From: Guest   Date: November 20 2006, 12:18
YES!!!!
Worked !

From: Guest   Date: October 22 2006, 08:45
Do I need to have Zend Optimizer installed to run encaps?
      
From: Encaps   Date: November 01 2006, 06:59
Zend Optimizer should be installed to run free version of EncapsGallery.
But optimizer is not required with EncapsGallery sources.

From: Guest   Date: October 20 2006, 01:23
Hi,

I plan to purchase the licence for creating gallery’s for my clients. I have few questions for you.

First, if I purchase the source code, can I use it for different website?

Is the template based on one .css file?

Can I set the size of the thumbnails?

And, if I use my own header and footer, Will it be possible for me to change the copyrights.



Thanks
      
From: Encaps   Date: October 20 2006, 05:50
Hi,

1) with source code you can do anything what you neeed
2) templates based on html, and you can use css for apply styles. You can download templates for free for test them
3)you can change the thumbnails size from config, or manually from the gallery_resize.php script
4)with source code you can apply your header and footer, and change copyright
5)next Monday (October 23) I'm planning to release encapsgallery-1.2.5 - new version will have tree-view for categories (first step for shopping cart)

Feel free to ask questions.
            
From: Encaps   Date: October 23 2006, 07:15
Hi,

new EncapsGallery-1.2.5 release available for download:
http://***.encaps.net/software/encapsgallery/download-image-album.php

After you will buy the key, you will get possibility to download source codes for current and next EncapsGallery releases until 6 months

« 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 [40] 41 42 43 »

Share: Digg Reddit Del.icio.us Ma.gnolia Stumble Upon Facebook Twitter Google Yahoo! MyWeb Furl" BlinkList Technorati Mixx Windows Live
Encaps Team © 2005-2008 EncapsGallery | Demo | Download | Buy | Support | HowTo | Contact