photo album software
  PHP Gallery     Online Demo     Free Download     Buy Sources     Support Forum     HowTo     Contact  
ArabicBulgarianChineseCroatianCzechDanishDutchEnglishFinnishFrenchGermanGreekHindiItalianJapaneseKoreanNorwegianPolishPortugueseRomanianRussianSpanishSwedishTurkish
Ask a question...
 

From: Guest   Date: May 09 2008, 12:49
How do I tell what version of software I have installed? Also, I've tried to pay for the code twice and it will not go through. Can I pay directly through Paypal somehow?
      
From: Encaps   Date: May 09 2008, 17:51
You may check the version from the pachage you downloaded.
I'm sorry for the payment inconvenience, I will change the registrar.
            
From: Guest   Date: May 09 2008, 19:05
I don't have the original zip file I downloaded. Was Version 2 first available for download on April 30? If so then I have an older version. Since I've customized the gallery can I update only the changed files? I would hate to start all over again setting it up!
                  
From: Encaps   Date: May 11 2008, 14:51
EncapsGallery-2.0.5 was released on April 30. I can't guess what files you customized, so can't advice how to upgrade.
                        
From: Guest   Date: May 12 2008, 14:49
Is there a list of changed files from the previous version so I can manually update the software? I don't mind going from line to line but a list of which files have been changed would sve a lot of time searching!

I would also still like to buy the source code but the normal payment page just doesn't work for me. Ideas?
                              
From: Encaps   Date: May 12 2008, 16:09
Unfortunately no, there is no changed files list :(
Actually we already jumped to another registrar, so you may pay from paypal directly (you will be redirected to paypal)

From: Guest   Date: May 08 2008, 03:25
Cool stuff, saved me a ton of time...two questions

1. How do I turn on the watermark? I have a PNG file, do I copy it to code/img folder do I "enable" it somewhere or where do I tell it the path to the file?

2. I don't get how paypal will work if they can view the full-size images, do I take out the dynamic link for each file or if I leave the large files available (but put a nasty watermark on them) when they do the paypal transaction they'll be able to download that file without the watermark, right?

Thanks, cool stuff. Cheers. -Aaron
      
From: Encaps   Date: May 08 2008, 08:57
Hello Aaron, thank you.

1) Watermark - unfortunately png-watermark is not supported, only text string over images.

For apply watermark you can modify the file "gallery_custom.html" - replace the following
line:
<IMG src="./rwx_gallery/<?php echo $html["item"]["filename_normal"]?>"

with new one:
<IMG src="core/gallery_watermark.php?file=../rwx_gallery/<?php echo
$html["item"]["filename_normal"]?>"

This relates to templates "simple_sc", "acd", "expo", "light".

For apply watermark to "raym" template, you should modify file "html/raym/gallery.html",
line #68:
document.getElementById("photo_img_id").src =
'core/gallery_watermark.php?file=.'+_path_filename_normal;

2) Paypal shopcart - when visitors do paypal transaction, they will not download
anything, they will just receive a purchase notification by e-mail from paypal.

From: Guest   Date: May 08 2008, 01:17
how can i hide the image file suffix name, for example, 129.jpg file, all i want is to show the name 129 only
      
From: Encaps   Date: May 08 2008, 08:48
You may modify catalog.html - replace the line
<?php echo $item["title"]?>
with the new one:
<?php echo preg_replace('/..*$/i','',$item["title"])?>
            
From: Guest   Date: May 08 2008, 22:02
I change the code, nothing display now- -|||(no file name), <?php echo preg_replace('/..*$/i','',$item["title"])?> maybe it's wrong, and I also want change the catalog_custom.html, the code is <?php echo $html['item']["title"]?> how to change?
                  
From: Encaps   Date: May 09 2008, 17:42
Oh, really, sorry.
So, for the catalog.html:
<?php echo preg_replace('/\..*$/i','',$item["title"])?>

for the catalog_custom.html:
<?php echo preg_replace('/\..*$/i','',$html["item"]["title"])?>

From: Guest   Date: May 05 2008, 01:01
i have the error
"Missing a temporary folder (in php.ini)"
when trying to upload,
what should i do?
      
From: Encaps   Date: May 05 2008, 06:36
So you should ask your hosting provider to set up temporary folder in your php.ini

From: Guest   Date: May 02 2008, 21:18
how can you set the http://***.your-site.com/gallery/ folder to automatically open on a specific category, such as a "home" category.

I saw your "how to" question where this was asked, but the script version I have which I just bought doesnt show that script in your answer, to replace or make that change.
      
From: Guest   Date: May 02 2008, 22:56
ok, i got it to direct onto the home category by putting header("Location:catalog.php?cat=1") in the gallery/index.php file, but now when i select another category it always directs back to cateogry 1. no matter what category i select it goes to category 1. any ideas? thank.
            
From: Guest   Date: May 02 2008, 23:03
lol, sorry, i got it, i think.
I just changed the catalog_cats_select.html form to action="category.php" file instead of index.php.

From: Guest   Date: May 02 2008, 20:58
I'm including the gallery within a table of another page. Clicking a thumbnail brings up the larger image correctly. Clicking on a category brings up the gallery by itself, without the rest of my page. How can I make the gallery always appear within the table on my site?

From: Guest   Date: April 30 2008, 17:27
Is it possible to use subdirectories in the "rwx_gallery" folder? I have several hundred images and would like to keep them organized.
      
From: Encaps   Date: April 30 2008, 17:57
Unfortunately no, customization required
            
From: Guest   Date: April 30 2008, 18:38
Thanks for the reply. For future versions it would be nice to have a file browser where you could create subdirectories and move images between them!

From: Guest   Date: April 29 2008, 15:46
I am confused. I downloaded encapsgallery-2.0.4 and the Howto of your website says to invoke http://***.php but there is no gallery_cfg.php/ Readme says run http://***.php and there is one of those, but it prompts me for a user id/password, and the ones that get me in my host do not work. I think it is looking for something in encaps, but I did not see where to set it
      
From: Encaps   Date: April 29 2008, 15:53
The user id/password is empty by default.

From: Guest   Date: April 29 2008, 15:02
Hi! I purchased the code recently. It's been working great for me so far. However, I came up with some questions:
1. I am trying to change the code so that when a thumbnail is clicked, the image opens in a new window. I did what you suggested, changed target to "_blank" from "_self" in the "html/_your_skin_/gallery.html". However, when the page opens i see enlarged images for all of the thumbnails, along with the header... and other stuff.. I need to have just the enlarged image, and nothing else, with the size of that new window to be the size of the enlarged image.
2. How do I get rid of the page numbers? I changed the code to display all of the thumbnails on the same page, so I don't really need the page number on the top of the page.

Thank you very much,

Sasha

      
From: Encaps   Date: April 29 2008, 15:51
Hello Sasha,
1) I will show you the demo
2) you may remove the line <?php include("pagination.html")?> from your "html/catalog.html" template

From: Guest   Date: April 28 2008, 17:59
We are trying to work with Ecommerce with your codes. We would like to process credit cards using a gateway that directly deposits into our bank account. Is this possible?
      
From: Encaps   Date: April 29 2008, 03:48
Unfortunately no


Encaps Team © 2005-2010 PHP Gallery | Online Demo | Free Download | Buy Sources | Support Forum | HowTo | Contact
?>