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

From: Guest   Date: November 14 2009, 03:56
Tried a lot of php album scripts, but this one is the most logical I found. Congratulations.

Some time ago you gave me a handy hint to add a comment that will be emailed when confirming a shopping cart order.
After line 130 of shopcart.php: $message .= ''=== Special offer bla bla bla ===";
How can this be added to the admin control panel? So the comment can be changed dynamically, instead of hard coding it into the shopcart.php each time this comment needs to be changed.

thanks :)
      
From: Encaps   Date: November 16 2009, 16:15
Thank you for your feedback.
I can provide brief intro for how to manage the e-mail confirmation text from the admin panel:
- copy admin/shopcart.php to admin/email.php
- edit admin/email.php and remove everything between
include("catalog_head.html");
and
include("html/pagination.html");

- add php logic to ask admin about the email text and save the text somewhere (text file, database table)
- add php code to extract saved text from shopcart.php

Something like this

From: Guest   Date: November 14 2009, 02:47
Say if I choose a category like 'landscapes' from the menu, then the category of 'landscapes' images is displayed. How can I have that name displayed in the heading on its own.
........... So a heading will only say 'LANDSCAPES' and nothing else.

Many thanks
Wayne
      
From: Encaps   Date: November 16 2009, 16:06
If you need to print out the category name, just use this code:
<?= $html["categ"]["title"] ?>
            
From: Guest   Date: November 17 2009, 05:29
perfect!
thanks mate

From: Guest   Date: November 09 2009, 19:02
Hi.I would like to be more complex search by category for example to select where to look for a product. How could I do that? 10x
      
From: Encaps   Date: November 10 2009, 09:29
So you need to customize the search form (to add categories), and "search($keywords_get)" function from core/catalog.ctl.php
            
From: Guest   Date: November 10 2009, 13:29
Can you help me or something?
                  
From: Encaps   Date: November 13 2009, 15:04
I guess you need to copy the categories dropdown
from admin/html/catalog_items.html into the search form, and add relevant logic into the search procedure from core/catalog.ctl.php
                        
From: Guest   Date: November 21 2009, 18:30
Yes but i dont know how :(
                              
From: Guest   Date: November 23 2009, 21:46
poti face un motor de cautare si sa aiba functia sa selectezi categoria unde cauti produsul. si sa o implementezi in script asta daca ai timp. multumesc
                                    
From: Guest   Date: November 23 2009, 21:47
can make a search engine and have the function to select the product category you are looking for. and implement a script that if you have time. thanks

From: Guest   Date: November 09 2009, 07:41
My self is Raj Khatri and i am a webdesigner so i don't have a knowledge of PHP.
I had download your free php album but i can not install them.
I want to purchase your php album because i am a webdesigner and i provide this service to my client.
For trial base i had download your free script but it does not work.
So tell me how can i install them.
      
From: Encaps   Date: November 09 2009, 15:13
Hello Raj,
there are series of howto-movies at encaps.net/howto/ to describe the install/configure processes.
Let me know where did you stuck

From: Guest   Date: November 09 2009, 05:14
is there a way to remove the link("encaps php image gallery script") on bottom of the page
please help me
thank you and great job you have done
      
From: Encaps   Date: November 09 2009, 15:10
Thank you for your feedback.
The only way to remove the link is to purchase the source php file.
      
From: Guest   Date: December 25 2009, 03:20
This is really cool;thanks for designers who build this code
it helps me lot
(Your source code is too expensive as i am student)

From: Guest   Date: November 08 2009, 14:38
Hello,

Nice gallery you have here, but I have some problems with scandinavian characters. So, how can I change the character set for the whole gallery? Also would be nice to change the "next" and "prev" texts to another language.

Thank you.
      
From: Encaps   Date: November 09 2009, 15:06
Since UTF encoding is implemented, you should not have any issues with scandinavian characters. Let me know if you have.

From: Guest   Date: November 06 2009, 05:34
which release of encaps can i use the mod_rewrite modifications?
      
From: Encaps   Date: November 06 2009, 09:01
I described mod_rewrite howto for the latest Encaps release

From: Guest   Date: November 03 2009, 22:08
Hello,

Could you please let me know how to:

1) not have items in my categories showing in the main page.

EX: let's say I have 2 categories (cat1, cat2) + the main page.
when I upload Items in cat1 and cat2, they all show in the main page as well. I would like to have the main page showing only items I put in the main page.

2) when I upload pictures, the page displays the file name and put the _ sign between the spaces in the file name. for instance, if I called the file Wedding Pictures, the site will display wedding_pictures. how can remove the _ sign?

Please let me know.

Thank you,
Wilky
      
From: Encaps   Date: November 05 2009, 08:51
Hello Wilky,

1) customization required if you'd like to don't show a picture on main page:
add a field show_on_main_page into the database table catalog_items, and add appropriate logic into admin/html/catalog_item.html, and core/catalog_item.ctl.php

2) To disable converting the space character you could try this:
edit core/catalog_item.ctl.php, and change the line #63 to
$fields["title"] = (isset($postget["title"]))?($postget["title"]):"";
            
From: Guest   Date: November 05 2009, 10:14
Hello,
This didn't work.
Please let me know.
Thank you.
                  
From: Encaps   Date: November 06 2009, 08:49
Hello Wilky,
regarding your second question: do you mean the page/image title, or the file name?
Edit the file core/misc.class.php, and replace the line #84 to
$filename = $_htpf['name'];
                        
From: Guest   Date: November 06 2009, 12:30
Thank you for your reply. This fixed the name issue, however, it also creates another set of issues with the setting. the text in the description and comment fields can't stay within their boxes, each box has one line that stretches out beyond the box boundary. Also, if there is no text in the description/and comment, the SQUARE_GREEN button gets blocked by the image immediately above it. lastly, both, the comment and description fields contents are showing in main page meaning you don't need to click on READ MORE.

Please let me know.

Thank you,
Wilky
                              
From: Encaps   Date: November 06 2009, 15:55
The last change you applied did not create the issues you described. The tempalte you use is based on "div"'s - so if you put unreasonable long text lines like "vfddddddddddddddddddddddddddddggggggg..."
you layout will not look good.
                                    
From: Guest   Date: November 06 2009, 22:12
I have tested that. You are absolutely correct.
Thank you much for your help.

From: Guest   Date: November 02 2009, 08:03
Hi again,

I have troubles with the search function. Since I'm using Cyrillyc symbols (utf8), I had to amend your preg_replace code like this:

preg_replace("/[^a-z0-9,_p{Cyrillic}]/iu"

The problem is that there is a bug in preg_replace: case insensitive modifier doesn't work with uf8 charachters! Here is the bug:

http://***.php.net/bug.php?id=47480


Can you help me go around this?
      
From: Encaps   Date: November 03 2009, 04:01
Hello Milen,
I did not understand all the details, please contact me with MSN or Skype

From: Guest   Date: October 31 2009, 22:50
how to apply the encaps-templates in the current version of encaps? tnx.
      
From: Encaps   Date: November 01 2009, 07:19
Just copy the template directory contents into the app, let's say copy encaps-templates/Shopcart/* to encaps-2.3.18/
            
From: Guest   Date: November 01 2009, 20:09
but what about the other templates like acd, blog, dhtml, refresh and stylevantage? how do i implement them?
                  
From: Encaps   Date: November 02 2009, 04:22
The same for other skins/templates
                        
From: Guest   Date: November 02 2009, 08:38
ok.


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