photo album software
  PHP Gallery     Live Demo     Free Download     Support Forum     How To     Contact  
ArabicBulgarianChineseCroatianCzechDanishDutchEnglishFinnishFrenchGermanGreekHindiItalianJapaneseKoreanNorwegianPolishPortugueseRomanianRussianSpanishSwedishTurkish
Ask a question...
 

From: Guest   Date: June 11 2008, 19:27
Is it possiable to browse to an upload location for multiple files. I am building a WIKI site and want to enable photo albums. One of the requirements would be for my end users to be able to upload multiple files easily and use album software to create their own photo albums.

The other question is do you yet have an extension for MediaWiki so that this software can easily be use with that WIKI or will I have to build that myself.
      
From: Encaps   Date: June 12 2008, 08:50
Unfortunately no

From: Guest   Date: June 11 2008, 13:29
I'm trying to edit catalog.class.php but the code is all obfusciated- is there a way for me to view it>
      
From: Encaps   Date: June 11 2008, 14:47
That's right, the code is obfuscated. The only way is to buy the code.
      
From: Guest   Date: November 24 2008, 09:03
      
From: Guest   Date: November 24 2008, 09:12
how to possible for me to change the copyrights.

From: Guest   Date: June 11 2008, 09:21
Our ISP moved us to a new server without warning. When we try and use the admin functionality we just keep getting prompted for ID/Pwd which each click or action. It is like it will not hold a session. Another 3rd party app is doing the same thing. Any suggestions?
      
From: Encaps   Date: June 11 2008, 12:32
Just one suggestion - please ask your hosting provider to fix php sessions for your webserver (sometimes it is misconfigured "session.save_path" from php.ini)

From: Guest   Date: June 10 2008, 23:53
hi, I want to add the category image, <img src="rwx_gallery/thumbs/<?php echo @$category['img']?>">, but the image link only display site/rwx_gallery/thumbs/ , i don't know what's the code of category image
      
From: Encaps   Date: June 11 2008, 12:30
Where do you want to add the category image?
            
From: Guest   Date: June 12 2008, 02:12
I'd like to add category image when onmouse over the sidebar category list, and mouse out undisplay the image. I find that admin catalog_categs.html file have the image address, so I try add<?php echo @$category['img']?>, but can't display the image file.
                  
From: Encaps   Date: June 12 2008, 09:05
For deal with onMouseOver/onMouseOut thumbnails, you need to build and apply dhtml javascript functions
                        
From: Guest   Date: June 12 2008, 22:29
the problem is that image name address. I have set the java already, if I set the static image address, can be seen, but I don't know how to set the dynamic image address
                              
From: Guest   Date: June 12 2008, 23:58
I use the javascript for the catalog images, that can be used, the javascript has no problem. I just add the "_", that can be display now!<?php echo @$_category['img']?>

From: Guest   Date: June 10 2008, 07:46
My question was answered about how to display only the thumbnails to categories by changing the index.php to show catalog_categs.php. However, I loose the border that is seen on the catalog.php page. I have looked at the code and cannot see where to make the changes. Thanks for the gallery, it is awsome
      
From: Encaps   Date: June 10 2008, 09:20
Thanks for the feedback.
What border did you mention?
            
From: Guest   Date: June 10 2008, 09:27
On the main index.php page using the catalog.html file, each image has a border around it which is an image. example: r1-00100.gif on the catalog_categs.php this is not included. Really like the image border and would like the catalog_categs.php to include them. But when I try, it doesn't work. Thank you.
                  
From: Guest   Date: June 17 2008, 13:47
Hi

If I purchase your software can I connect to any credit payment company like networksolution.com I want the payment should take place from your code to networksolution.

reply me as soon as possible I want to buy..............
                        
From: Encaps   Date: June 17 2008, 15:17
You may try to change payment gateway even without purchasing EncapsGallery - the files /core/shopcart.class.php and shopcart.php are not encoded - clean native php code.

From: Guest   Date: June 10 2008, 00:14
Hi
Believe it or not, I'm stuck before I've got started lol.
Anyway, files are uploaded and permissions chnaged.
The next step is to run www.yoursite.com/encapsgallery/admin/catalog_cfg.php

When I do that, I get a page with a login box. What user nand pass do I enter, because the ones such as demo, demo or admin, admin dont work.

Sorry for being dumb. :)
      
From: Encaps   Date: June 10 2008, 01:36
The user name and password is empty by default.

From: Guest   Date: June 09 2008, 20:13
Is there a way to make the watermark more visible on black and white images? If I make the text white, it shows up fine on dark areas but disappears in light areas. the opposite happens if I use dark text. Can a border be placed around the text, or a background placed behind it? Perhaps applying a highlight to the text in a contrasting shade?
      
From: Encaps   Date: June 10 2008, 01:38
You may modify /core/watermark.php for add watermark "shadow" - duplicate the watermark text as black with little shift

From: Guest   Date: June 08 2008, 04:33
how to upload files with filenames like "c'est la vie.jpg"?
because im having an error message like Error: unable to execute query: [SELECT * FROM en_gallery WHERE cat=25 AND filename_normal='c'est la vie.jpg'] ...

i even try the new version of encaps... still there's an error message...
tnx.
      
From: Encaps   Date: June 08 2008, 06:32
I will test special chars, will let you know.

From: Guest   Date: June 08 2008, 04:19
how to set the encaps gallery to recognize bitmap files?
the error message was "Resize failed for [../rwx_gallery/filename.bmp] - it's not .png or .gif or .jpg or .jpeg"

tnx....
      
From: Encaps   Date: June 08 2008, 06:27
To recognize .bmp files you need to install ImageMagic and customize Misc::resize() function from core/misc.class.php
            
From: Guest   Date: June 08 2008, 09:26
ok... thanks
                  
From: Guest   Date: June 08 2008, 09:41
tried what you suggested...
and i got an error message... Resize failed, can't access GD library
im new at this stuff... and ive got ImageMagick and GD installed...

how to access GD library?
                        
From: Encaps   Date: June 08 2008, 17:03
I've found ImageMagic guide here:
www.php.net/imagick
And there is a sample for thumbnails manipulation:
www.php.net/manual/en/function.imagick-thumbnailimage.php
<?php
$im = new Imagick("image.jpg");
$im ->thumbnailImage(100);
$im ->writeImage("image_thumb.jpg");
?>
                              
From: Guest   Date: June 10 2008, 16:48
where will i put it and how?
                                    
From: Guest   Date: August 19 2009, 14:42
I would also love to know what spacific edits to add to mist.class.php to enable bitmap files..

I do have ImagageMagick, and GD2 installed.

From: Guest   Date: June 05 2008, 11:13
when i open index.php file say me

Unable to connect the database host test with username myuser and password mypassw
Lost connection to MySQL server during query

and what i need to change here?in file config.php
$config["db_host"] = "??";
$config["db_name"] = "??";
$config["db_user"] = "myuser?";
$config["db_pass"] = "mypassw?";

thanks reply me!!!
      
From: Encaps   Date: June 05 2008, 11:31
Config params:
$config["db_host"] - your database host name or IP
$config["db_name"] - your database name
$config["db_user"] - database user name
$config["db_pass"] - database user password

Make sure the params are valid - the database host is accessible, the database name exists, the database user can connect the database


Encaps © 2005-2010 PHP Gallery | Live Demo | Free Download | Support Forum | How To | Contact
?>