photo album software
  EncapsGallery     Demo     Download     Buy     Support     HowTo     Contact  

Ask a question...
 

From: Guest   Date: June 23 2008, 04:22
Is there a way to change the url .../catalog.php?action=show_custom&id=8&cat=7 to .../catalog/category_name/file_name/
      
From: Encaps   Date: June 23 2008, 04:26
You need to implement mod_rewrite feature: define .htaccess url rewrite rules and change gallery navigation links
            
From: Guest   Date: June 23 2008, 04:30
Please help how can we do it. Add this info to "HowTo". It may be useful to many of your users.
                  
From: Encaps   Date: June 23 2008, 05:02
With the next guide you may implement the links like /catalog/cat1/id2.html, /catalog/page3.html
do the following:

1) make sure your Apache server supports mod_rewrite
2) define the following rules with .htaccess:
RewriteEngine On
RewriteRule cat([0-9]+)/page([0-9]+).html catalog.php?cat=$1&page=$2 [NC]
RewriteRule cat([0-9]+)/id([0-9]+).html catalog.php?cat=$1&id=$2&action=show_custom [NC]
RewriteRule cat([0-9]+).* catalog.php?cat=$1 [NC]

3) change gallery navigation links:
- /html/shopcart/catalog_cats_select.html, line #13:
<?php echo $_nbsp?><a href="cat<?php echo $_category['id']?>/" style="<?php echo ($_category['id']==$_category_current )?"font-weight:bold":"";?>" ><?php echo $_category["title"]." (".$_category['subtotal'].")"; ?></a><br>

- /html/shopcart/catalog.html, line #77:
<a target="_self" href="cat<?php echo $html['cat']['id']?>/id<?php echo $item["id"]?>.html" ><img

- /html/shopcart/pagination.html

line #2:
$prefix = 'cat'.@$html['cat']['id']."/";

line #14:
?> <a href="<?php echo $prefix?>page<?php echo $i?>.html" title="<?php echo $i?>">&laquo;</a><?php

line #24:
?> <a href="<?php echo $prefix?>page<?php echo $i?>.html" title="<?php echo $i?>"><?php echo $i?></a><?php

line #35:
?> <a href="<?php echo $prefix?>page<?php echo $i?>.html" title="<?php echo $i?>">&raquo;</a><?php

From: Guest   Date: June 23 2008, 03:35
I just installed encaps gallery on my website.

The category displays thumb nails + image title. Only the thumb nails are clickable. How can I make image title clickable to the url of full image.
      
From: Encaps   Date: June 23 2008, 04:23
For example, html/shopcart/catalog.html:
change the line #29 from
<div class="title"><?php echo $item["title"]?></div>
to

<a target="_self" href="catalog.php?action=show_custom&amp;id=<?php echo $item["id"]?>&amp;cat=<?php echo $item['cat']?>" ><div class="title"><?php echo $item["title"]?></div></a>

From: Guest   Date: June 23 2008, 02:59
Actually Andrew i have to follow this site:::
http://***.********.com/

see when u enter the site u will get some photos instead of populating all items but when u click on the menu options then only items is populating..

I just want when site is loaded we are getting all the items I dont want instead of that I want to add some adds over there but When I click the menu item then only items should pupulate.


Atleast give me hint so that I can follow that????

Please help me.................................
Thank you so much!!!!!
      
From: Encaps   Date: June 23 2008, 04:32
1) copy catalog.php to anotherpage.php
2) edit anotherpage.php - remove the line #7
$gallery->show();
and put you contents instead.
3) edit index.php - change the line#3
from
include("catalog.php");
to
include("anotherpage.php");

From: Guest   Date: June 23 2008, 02:35
Hello, as you said if I dont want items automatically should not populate when page loaded I have to create new main page can you please please tell me Should I create new page like core/catalogue.class.php?

I have to edit 'core/catalogue.class.php' page only please reply me.......


Waiting for U r reply!!!!!
      
From: Encaps   Date: June 23 2008, 02:49
Could you please explain, what do you want? Or/and show a sample.

From: Guest   Date: June 22 2008, 17:51
I don't know what goes here during login and setup:

Database Host:

Is there anyway to get help with this before I opt to buy teh software?
      
From: Guest   Date: June 22 2008, 18:28
Ok...never mind...I think I have that part figured out.

Although I now have it so it displays a gallery photo...but how do I get the shopping cart to work?
            
From: Encaps   Date: June 23 2008, 02:45
Turn on config param "Shopcart: active"

From: Guest   Date: June 22 2008, 13:15
Please please help me actually wahtever lines u comment me I have done but i am getting this error :

Fatal error: Call to undefined method Gallery::_get_items() in C:wampwwwencapsgallery-2.0.6-srccorecatalog.class.php on line 49


I did this:
Comment out lines #95-102 from /core/catalog.class.php:
// $childs = $this->cats->_get_subcategs($this->html['cat']['id']);
// if(count($childs))
// {
// foreach($childs as $child_categ)
// {
// $query .= " OR cat=".$child_categ;
// }
// }

and lines #126-133

// $childs = $this->cats->_get_subcategs($this->html['cat']['id']);
// if(count($childs))
// {
// foreach($childs as $child_categ)
// {
// $query .= " OR cat=".$child_categ;
// }
// }

From: Guest   Date: June 22 2008, 04:36
CAN YOU PLEASE TELL ME CLEARLY ITS NOT COMING SORRY i AM DISTURBING YOU..................

What to remove? if we dont want when we visit main page automatically items appear I dont want i want something different in that place can U please tell what to do?

Waiting for U r reply????
      
From: Encaps   Date: June 22 2008, 05:07
If you don't want to populate items on main page, you need to create another main page.

From: Guest   Date: June 22 2008, 02:34
first of all thank you so much for your efforts.

Now Actually When we open our gallery page all the images of all the categories are coming I dont want.

I want to add some adds or something over there. When we click exclusively on menus then only the items should appear according to the category.


Please Please help me???????????????? waiting!!!!!.......
      
From: Encaps   Date: June 22 2008, 03:29
Comment out lines #95-102 from /core/catalog.class.php:
// $childs = $this->cats->_get_subcategs($this->html['cat']['id']);
// if(count($childs))
// {
// foreach($childs as $child_categ)
// {
// $query .= " OR cat=".$child_categ;
// }
// }

and lines #126-133

// $childs = $this->cats->_get_subcategs($this->html['cat']['id']);
// if(count($childs))
// {
// foreach($childs as $child_categ)
// {
// $query .= " OR cat=".$child_categ;
// }
// }

From: Guest   Date: June 20 2008, 21:21
Is it possible to assign an image to more than one category? For example, if my gallery was for photos of fruit, all separated by categories, but one photo was of an apple and an orange on a table together, is there a way to make that photo show in both categories?
      
From: Encaps   Date: June 21 2008, 10:19
Unfortunately no

From: Guest   Date: June 20 2008, 17:35
Is there a means available to support batch-uploading of images via http?
      
From: Encaps   Date: June 21 2008, 10:19
Unfortunately no

« 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 »

Encaps Team © 2005-2008 EncapsGallery | Demo | Download | Buy | Support | HowTo | Contact