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

From: Guest   Date: September 06 2010, 04:38
Hello Andrew,

What a perfect script you had made. Thanks for provide its free to us. I am using free version and i have changed lot of thing on templates and admin for my requirement. But i have a little link to your site. Tell me if i purchase your paid version can you tell me the way how can i remove your link from my templates in free version i d't use your paid version just want to use free as-it-is just want to license

is it possible ?
      
From: Encaps   Date: September 08 2010, 04:25
Yes, you just overwrite the purchased file - the link will disappear

From: Guest   Date: September 05 2010, 00:21
how to make sub category e.g. "category/subcategory" eg Digital Art/ Painting
      
From: Encaps   Date: September 08 2010, 04:24
First you create "Digital Art" category
Next you create "Painting" category, and assign "parent" directory as "Digital Art"

From: Guest   Date: September 04 2010, 23:43
Can visitors also can upload image to specific categories of my web photo gallery ?
      
From: Encaps   Date: September 08 2010, 04:22
Unfortunately no

From: Guest   Date: August 31 2010, 12:49
Hi. I have 23 pages of images displayed in random sequence. Some of these images are seqeuntial shots with filenames 0061.jpg 0062.jpg 0063.jpg etc. I wanted to have these displayed in this filename order. I found an old post for a previous version of encaps but the modification doesn't seem to chnage teh way the gallery displays in the current version. Can you advise how I can re-sequence these shots by filename order. Thanks.
      
From: Guest   Date: August 31 2010, 13:16
Sorry. My mistake. Changing the ORDER BY sequence in core/base.ctl.php does work for the latest version.
            
From: Encaps   Date: August 31 2010, 13:59
You need to change these lines:
catalog_item.ctl.php:54: $sql .= " ORDER BY rank DESC, title, id DESC";
base.ctl.php:68: $condition .=" ORDER BY rank DESC, title, id DESC";

to
catalog_item.ctl.php:54: $sql .= " ORDER BY file, rank DESC, title, id DESC";
base.ctl.php:68: $condition .=" ORDER BY file, rank DESC, title, id DESC";

                  
From: Guest   Date: August 31 2010, 19:52
Perfect. Exactly what I needed. Thanks for the quick response.

From: Guest   Date: August 29 2010, 03:12
Hi,

Last year I purchase your software with Order Number : ************* So please How can i add the new features in my current folder I want WYSIWYG Text Editor and all the new features plz guide me which files is to be updated!!! I have downloaded new one also from your website.

waiting for reply
Thank you so much!!!!
      
From: Encaps   Date: August 30 2010, 09:18
If you want WYSIWYG editor, you could try ckeditor.com

From: Guest   Date: August 28 2010, 21:16
This original CAPTCHA always uses the 1st, 3rd, 5th as valid characters. The following code randomly switches the black & red pairs to make it much more difficult to guess the correct characters.
$rand = _generateRandom(3);
$_SESSION['captcha'] = $rand; //Good 3 characters
$rand_red = _generateRandom(3); //Bad 3 char

$coin = rand(0,1); //flip a coin
//if zero use a black char in slot 1
//echo ($coin);
if ($coin == true) {
ImageString($im, 5, 2, 4, $rand[0], ImageColorAllocate ($im, 0, 0, 0));
ImageString($im, 5, 2, 4, " ".$rand_red[0], ImageColorAllocate ($im, 255, 0, 0));
}
else {
ImageString($im, 5, 2, 4, $rand_red[0], ImageColorAllocate ($im, 255, 0, 0));
ImageString($im, 5, 2, 4, " ".$rand[0], ImageColorAllocate ($im, 0, 0, 0));
}
$coin = rand(0,1); //flip a coin
if ($coin == true) {
ImageString($im, 5, 2, 4, " ".$rand[1], ImageColorAllocate ($im, 0, 0, 0));
ImageString($im, 5, 2, 4, " ".$rand_red[1], ImageColorAllocate ($im, 255, 0, 0));
}
else {
ImageString($im, 5, 2, 4, " ".$rand_red[1], ImageColorAllocate ($im, 255, 0, 0));
ImageString($im, 5, 2, 4, " ".$rand[1], ImageColorAllocate ($im, 0, 0, 0));
}
$coin = rand(0,1); //flip a coin
if ($coin == true) {
ImageString($im, 5, 2, 4, " ".$rand[2], ImageColorAllocate ($im, 0, 0, 0));
ImageString($im, 5, 2, 4, " ".$rand_red[2], ImageColorAllocate ($im, 255, 0, 0));
}
else {
ImageString($im, 5, 2, 4, " ".$rand_red[2], ImageColorAllocate ($im, 255, 0, 0));
ImageString($im, 5, 2, 4, " ".$rand[2], ImageColorAllocate ($im, 0, 0, 0));
}

Have fun.

From: Guest   Date: August 25 2010, 08:37
Is there a way to change the index.php to have some text on it about the gallery, but not display the seemingly random images, like it does now?

Many Thanks


Laurence
      
From: Encaps   Date: August 30 2010, 09:19
Yes, there is a way to edit index.php - you could use notepad

From: Guest   Date: August 25 2010, 00:26
how I can get rid of the words and link"encaps php gallery" at the bottom of the encaps gallery web.
      
From: Guest   Date: August 25 2010, 16:14
really simple... Just buy the script then you will get the source code without "encaps php gallery" link... :)

From: Guest   Date: August 20 2010, 18:14
Unique ID.

I need a way to display a Unique ID and the ability for users to "search" for the id. Any ideas?

I figure the photos have to have a unique ID in there somewhere. I've tried: <?php echo $item['id']?> in "catalog_items.html" but that just shows the same id for each picture in each category. Also doesn't allow for searching that way :/

From: Guest   Date: August 11 2010, 15:08
Hi i have just up graded my hosting to a php5 server with MSQL 5 and now i can only save 1 line of description. has anyone else had this problem.

I can input a whole paragraph but only the 1 line seams to get saved.

I set up Encaps over a year ago not sure which virsion i am running and dont know how to find out.

to update to latest version do i just upload the latest code.

thanks
      
From: Encaps   Date: August 11 2010, 15:17
There is no way to just update the app.
Please open your ftp for me so I will inspect the issue


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