photo album software
  PHP Gallery     Android WwWatchdog     Support     How To     Contact  
ArabicBulgarianChineseCroatianCzechDanishDutchEnglishFinnishFrenchGermanGreekHindiItalianJapaneseKoreanNorwegianPolishPortugueseRomanianRussianSpanishSwedishTurkish
»Ask your question«
 

From: Guest   Date: April 24 2008, 16:03
if I have the thumbnail generator "off" will it cause a problem or conflict to display different thumbnail sizes varying from category to category. so if I had thumbnails for category "1" that are 150x150, would that be a problem if I had thumbnails for category "2" which were 120x160? would it display them both, as is, without alteration as long as the thumbnail table html is at least 160x160? thanks.
      
From: Encaps   Date: April 24 2008, 16:48
There is free demo available for download.
You may try it out and estimate will it be ok for you or not.

From: Guest   Date: April 24 2008, 11:44
Great Product. I installed everything from your demo. It works fine but couldnt display the shopping cartalso are there multiple third party shopping cart suppliers that supports your product
      
From: Encaps   Date: April 24 2008, 12:57
Hello, thanks.
Regarding the shopping cart - you may check if it's turned off in your config admin/catalog_cfg.php
Regarding the "multiple third party shopping cart suppliers" - sorry, it's not clear :(

From: Guest   Date: April 21 2008, 23:49
i want to set it up so i can have a thumbnail link take you to a new window with a new url outside of the domain, instead of having it link to the original large image. can that be done?
      
From: Encaps   Date: April 22 2008, 09:31
For this purpose you may just edit the html/_skin_/catalog.html template:
change the "href" parameter of thumbnails "<a>" anchor from
href="catalog.php?action=show_custom&amp;id=<?php echo $item["id"]?>&amp;cat=<?php echo $item['cat']?>"
to
href="<?php echo $item["description"]?>" target=_blank
So, in the "description" field you may put the url of a different website

From: Guest   Date: April 20 2008, 05:16
Fantastic software - I want to buy code but I really do need the ability to select different size photos from a drop down - It's easy enough to insert the html/php form and I have added a size catagory/field in the mysql table "shopcart" but dont know how to intigrate it all. Is there any possibility this can be done? I am happy to pay double the buy price if you can help me with this??

Thanks.
      
From: Encaps   Date: April 21 2008, 02:01
Hello, thank you. This feature will be implemented with next EncapsGallery release.

From: Guest   Date: April 17 2008, 19:28
Is it possible to put a link in an image description?
      
From: Encaps   Date: April 18 2008, 02:13
Yes, it's possible, but there is javascript restriction for the "raym" template - it's powered by javascript - comma and double quote are html special chars, so you may skip special characters, sample:
<a href=http://***.com>asdf.com</a>
For the other templates you may put links inside the description field as usual:
<a href="http://asdf.com">asdf.com</a>

From: Guest   Date: April 17 2008, 15:24
Great product, thank you! I am setting up a modified "light" style. I have a few gallery categories, each with several sub categories. Since I am displaying the catagory links in a vertical list, I would like the sub categories to show up in their own list to the right (in another cell) of the main categories. This would save screen space. How would I accomplish this?
      
From: Encaps   Date: April 17 2008, 15:41
Hello, thanks :)
You need to get and output subcategories in the way similar to html/light/catalog_cats_select.html.
I'm not yet pretty sure, how exactly, give me some time.
            
From: Guest   Date: April 17 2008, 16:44
Thanks, maybe this is more work than it's worth. What about using the expanding menu, like "shopcart" uses, in the "light" style? How would that be accomplished? I tried copying some code but couldn't make it work.
                  
From: Encaps   Date: April 17 2008, 16:47
Btw could you show your modified template?
                        
From: Guest   Date: April 17 2008, 17:10
Here is the catalog.html file:


<table width="750" align="center" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="508" height="60" bgcolor="#CCCCCC" style="vertical-align:middle;font-family: Arial;font-size: 11px;" colspan="2">
<h1 align="center">Image Gallery</h1>
</td>
</tr>
<tr>
<td bgcolor="#777777" width="242" colspan="2">&nbsp;</td>
</tr>
<tr>
<td width="242" height="87" bgcolor="#CCCCCC" style="vertical-align:middle;font-family: Arial;font-size: 11px;">
<p><font color="#666666"><b>View by Category:</b><br>
<?php include(dirname(__FILE__)."/catalog_cats_select.html");?>
<br>
<br>
Pages:
<?php include(dirname(__FILE__)."/pagination.html");?>
</font> </p>
</td>
<td width="508" height="87" bgcolor="#999999" style="vertical-align:top;font-family: Arial;font-size: 11px;">
<?php include(dirname(__FILE__)."/search_form.html")?>
<p><font color="#666666"> <b>How to use the Gallery:</b><br>
Text here</font></p>
</td>
</tr>
<?php foreach($html["items"] as $item){
if($item["is_visible"]!="on")continue; ?>
<?php }?>
</table>
<table width="750" align="center" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#777777" width="242">&nbsp;</td>
<td bgcolor="#555555">&nbsp;</td>
</tr>
<?php foreach($html["items"] as $item){
if($item["is_visible"]!="on")continue; ?>
<tr >
<td bgcolor="#888888" >
<div align="center"> <a target="_self" href="?action=show_custom&amp;id=<?php echo $item["id"]?>&amp;cat=<?php echo $item['cat']?>" ><img
border="0" src="./rwx_gallery/thumbs/<?php echo $item["filename_thumb"]?>" alt="<?php echo $item["title"]?>" ></a>
<BR>
</div>
</td>
<td valign="top" style="background-color:#444444; color:#FFFFFF ">
<div class="title">
<?php echo $item['title']?>
</div>
<div class="comment">
<?php echo $item['comment']?>
&nbsp;
<?php if($this->html["config"]["sc_active"]=="Y"){?>
<br>
$
<?php echo sprintf("%.2f",$item['price'])?>
&nbsp; <a href="shopcart.php?action=add&amp;item_id=<?php echo $item['id']?>" class="price">[Add
to Cart]</a>
<?php } ?>
</div>
</td>
</tr>
<tr>
<td bgcolor="#777777">&nbsp;</td>
<td bgcolor="#555555">&nbsp;</td>
</tr>
<?php }?>
</table>
                              
From: Encaps   Date: April 18 2008, 07:03
For apply the expanding menu, like "shopcart" template, you may copy
html/shopcart/catalog_cats_select.html into
html/light/catalog_cats_select.html

From: Guest   Date: April 17 2008, 12:42

Hello!
I bought the code and I'm very happy with it. But I have one little question:
I am using the raym-skin, and I would like to show thumbnails or banners for each category in the category box, instead of the text-links.
How do I do that?

      
From: Encaps   Date: April 17 2008, 14:28
Hello, thank you.
So, you need to modify html/raym/catalog.html, line #110:
echo "<img src=rwx_gallery/thumbs/".$_category["img"].">". $_category["title"] ;
            
From: Guest   Date: April 18 2008, 18:03
Thank you, works fine! =)
One more question, though...how can I keep the border from appearing around the thumbnails?
                  
From: Encaps   Date: April 18 2008, 18:09
You may set image border to 0:
<img border=0 src="...">

From: Guest   Date: April 16 2008, 13:03
I have everything uploaded to my website, but when I right click and go into properties I get the following message . . .

"This server does not support changing file permissions"

Ugh, please advise.

Thanks,
Wendy
      
From: Encaps   Date: April 16 2008, 13:18
Hello Wendy,
it seems you use IIS webserver, so it does not allow to change permissions from ftp directly. You need to change permissions from IIS control panel, or ask your hosting provider how to change permissions.

From: Guest   Date: April 13 2008, 08:44

Hello!
I just downloaded and installed encaps gallery and it seems that it got everything I've been looking for =)

I have one big problem, though:
I'm using the raym-skin, and when the user opens the page, various pictures are already shown and one can't see the subcategories.
I find this really misleading, and I would like the gallery to be "empty" until a category is clicked.

I tried to solve this myself, but I am at a loss.
It would be really great if you could give me some advice on how to change this!
      
From: Encaps   Date: April 13 2008, 09:11
Hello,
regarding the "raym" skin:
1) subcategories are not visible until you click on parent category.
2) for change gallery behaviour to not output a category contents until a visitor click on the category, you may edit catalog.class.php, but the file is encrypted in free EncapsGallery release.
            
From: Guest   Date: April 13 2008, 10:04

Since I like this gallery very much so far I decided to buy the code and then try to change the gallery behavior =)
But...When I submit my order on the purchase screen, the page just loads and loads and nothing happens. Did I do something wrong?
Should I try again? Or just wait?

                  
From: Encaps   Date: April 13 2008, 12:01
I'm glad you like EncapsGallery :)
But I have no idea, what may be wrong with order processing. Usually it takes about 3-5 seconds. Will ask my registrar.
                        
From: Guest   Date: April 13 2008, 18:15
Oh, nevermind, I tried again and it worked =)
I bought the code and I am now able to edit catalog.class.php so I'd like to repeat my question: How can I make the gallery appear to be "empty" until a category is clicked? ( I'm using the raym-skin )

And thank you for the quick replies =)
                              
From: Encaps   Date: April 14 2008, 02:03
Thank you for your purchase!
For apply feature you described you can comment out the line #126 from catalog.class.php:
//$childs = $this->cats->_get_subcategs...
Or send me your e-mail address or purchase ID (Ref ID), I will send you modified code.
                                    
From: Guest   Date: April 14 2008, 05:30

I did that and it works fine =)
Thank you very much for your help!
                                          
From: Encaps   Date: April 14 2008, 05:41
You are welcome :)

From: Guest   Date: April 12 2008, 09:39
Hi there, thx for creating such a wonderful photo gallery script.
I might be buying for this script as well,
so before i buy i need to ask some question,

- Is it i need to upload again all my data after i install new script? or just need to over write some file ?

- what is the meaning of free update 1 year?

Thx
Regards,
LJ Jun
      
From: Encaps   Date: April 12 2008, 09:59
Hello,
1) you don't need to reinstall the gallery after purchasing the source code - just overwrite /core/ files
2) "free 1-year updates" means you will be able to download new EncapsGallery releases for free, without purchasing new source code.
            
From: Guest   Date: April 12 2008, 10:36
Bought it =)

Thx...nice service and fast reply A+++
                  
From: Encaps   Date: April 12 2008, 10:57
Thank you for the feedback!


Encaps © 2005-2012 PHP Gallery | Android WwWatchdog | Support | How To | Contact
?>