photo album software
  PHP Gallery     Live Demo     Free Download     Support Forum     How To     Contact  
ArabicBulgarianChineseCroatianCzechDanishDutchEnglishFinnishFrenchGermanGreekHindiItalianJapaneseKoreanNorwegianPolishPortugueseRomanianRussianSpanishSwedishTurkish
Ask a question...
 

From: Guest   Date: March 27 2009, 14:54
Hi
Can you please advise how I configure encaps for selling downloadable desktop background images.

Do I have to send the images attached in an email after they have purchased or is there an easier way to do this?

Thanks in advance

Jade Ashcroft
      
From: Encaps   Date: March 27 2009, 15:04
There is no way to just configure - additional customization required
            
From: Guest   Date: March 27 2009, 16:03
Thanks for your reply.
As I am doing this site myself, and I am no expert programmer, is there any documentation that you can point me to?

Thanks
Jade
                  
From: Encaps   Date: March 27 2009, 16:32
Some users say Encaps code is pretty simple to understand and documentaion is not needed. But if you are not experienced programmer, it would be easy for you to just manually attach the files after purchase, as you described. But imagine you business grows and you receive hundreds of purchases every day, so this solution will not be good - you need to automate this process somehow. There are some ready solutions to sale digital goods (e.g. eCommerce), but the main goal and advantage of Encaps software is extremely FLEXIBILITY, so I implemented only common general features you can extend by yourself, if you are programmer. If not, I think it will be better to find some ready solution that covers all your requirements, or hire experienced programmer, or improve your programming skills.

From: Guest   Date: March 25 2009, 10:25
Is there a way of adding size options to a product?
      
From: Encaps   Date: March 27 2009, 15:02
Only by implementing additional php functions

From: Guest   Date: March 24 2009, 06:38
hi,
is it possible to change the searchform so that it accepts "space"(between words) and "_" ?

thanks
      
From: Encaps   Date: March 24 2009, 13:24
Check /core/catalog.ctl.php,
function search($keywords_get)
$keywords_split = preg_split("/[s,]+/", $keywords_get);
            
From: Guest   Date: March 25 2009, 08:24
thanks, my php is not that good, have to change this
"/[s,]+/" to what that the whitespce and the _ will work ?
                  
From: Guest   Date: March 31 2009, 03:56
mayday, cant find the solution
                        
From: Encaps   Date: March 31 2009, 11:55
Modify catalog.php: change the line #29
from
$_GET["search"] = preg_replace("/[^a-z0-9,]/i","",$_GET["search"]);
to
$_GET["search"] = preg_replace("/[^a-z0-9,_ ]/i","",$_GET["search"]);

From: Guest   Date: March 21 2009, 04:37
good morning sir,
can you help me to change the schopcard.php so that the email, that is send (to admin,customer), will not show the price and the total price ? i know it has to be somewhere here:
line 137
{
$i++;
$item_catalog = $catalog->items->get("WHERE id=".$item_cart['id']);
$message .= "
<tr bgcolor='#EFEFEF'><td align='left'>".$item_catalog['title']."</td><td>$".$item_catalog['price']."</td><td>".$item_cart['qty']."</td><td>$".$item_cart['qty'] * $item_catalog['price']."</td></tr>";
}

thanks andrew for helpin me out ...

have a great weekend sir
      
From: Encaps   Date: March 22 2009, 10:23
You are right, just remove
$item_catalog['price']
and
$item_cart['qty'] * $item_catalog['price']

From: Guest   Date: March 12 2009, 16:19
SQL Error: Create tables.

when installing the catalog, it returns a list of errors:
SQL error:[ CREATE TABLE `encaps_base_items` ( `id` int(11) NOT NULL auto_increment, `rank` int(11) default NULL, `is_visible` tinyint(4) default NULL, `title` varchar(255) default NULL, `description` text, `updated_at` varchar(255) default NULL, PRIMARY KEY (`id`) ) ENGINE = MYISAM ; ]You have an error in your SQL syntax near 'ENGINE = MYISAM ; ' at line 10

and so on. I've checked and reset my db users and passwords, but no luck. Thanks!
      
From: Encaps   Date: March 12 2009, 16:40
I guess your MySQL server may not support MYISAM tables(?). Please edit /admin/catalog_db_install.php and replace MYISAM with InnoDB.
Let me know.

From: Guest   Date: March 11 2009, 09:13
Can I email you directly so that no one else can get my information?

Can you provide me with your email?
      
From: Encaps   Date: March 11 2009, 13:18
Yes, please, use contact page encaps.net/contact.php

From: Guest   Date: March 10 2009, 08:57
Could someone please help me remove the encaps link from the newest photo gallery. Thank you in advance!
      
From: Encaps   Date: March 10 2009, 12:14
You are not supposed to remove the link without purchasing the source code.
            
From: Guest   Date: March 10 2009, 16:00
We have purchased one of the previous versions... Do we have to buy the new version or can we just upgrade?
                  
From: Encaps   Date: March 10 2009, 17:35
I will check your purchase, and will send you the URL to download latest release.
Unfortunately there is no way to upgrade - the versions are not compatible.
                        
From: Encaps   Date: March 10 2009, 19:23
Unfortunately I did not find your purchase by e-mail you provided. Could you please clarify your purhcase details? Your name, date, e-mail?
      
From: Guest   Date: March 10 2009, 13:36
buy it dude, its awesome !!! ;-)

From: Guest   Date: March 10 2009, 05:27
hi sir andrew;
where to change the script, that the search-form searches also in the Description ?

cheers and have a great day
olaf
      
From: Encaps   Date: March 10 2009, 12:18
You could modify core/catalog.ctl.php, line #114, #123:
from
(i.title REGEXP '$keywords' OR i.comment REGEXP '$keywords')
to
(i.title REGEXP '$keywords' OR i.comment REGEXP '$keywords' OR i.description REGEXP '$keywords')
            
From: Guest   Date: March 11 2009, 03:48
thank you muchogrande, it works very well,have a great day sir andrew

From: Guest   Date: March 10 2009, 01:51
If I use encapsgallery-2.0.6, can you please show me how to change the "admincatalog_scan_rwx.php" that "Ftp uploads" can load the folder like the new version.
I'd like to put the files into the folder, that 2.0.6 also can load, so need't too many images in the same folder "rwx_gallery". If the thumbs need in the same folder, it's ok.
      
From: Encaps   Date: March 10 2009, 04:34
Unfortunately releases 2.0.6 and 2.3.12 are not compatible
            
From: Guest   Date: March 10 2009, 23:58
I'm not means releases 2.0.6 and 2.3.12 compatible, just want to know how to change 2.0.6, that can load the folder
                  
From: Encaps   Date: March 12 2009, 05:52
Unfortunately I can't tell how to merge features from 2.3.12 into 2.0.6 - I did not do this before.

From: Guest   Date: March 10 2009, 01:08
Currently I am emailed notifications of an order from my site. Can the email be modified to also notify a second party of specific orders? Or all orders in general?
      
From: Encaps   Date: March 10 2009, 04:23
Second party should be notified by default:
shopcart.php, line #13:
$res = func_send_mail($postget['payer_business_name'],$postget['payer_email'],$config["admin_email"],$subject,$message);

Could you please let me test it out on your side?
            
From: Guest   Date: March 12 2009, 04:55
Yes I know the customer (buyer) gets a copy, what I meant is: can I send the same notification that I get to a third party who has interests in specific images? ie- I am licensing products from them for some of my photos and want to notify them of any orders relating to the licensed products featured in the images. Specific Images only... Thanks in advance.
                  
From: Encaps   Date: March 12 2009, 05:55
You could modify shopcart.php to implement one more func_send_mail(),
or modify func_send_mail() from core/misc.class.php
                        
From: Guest   Date: March 19 2009, 00:02
I'm the web designer for the original question. So if I alter shop.php it will send an email to a third party for every picture? Or is there some way to alter it for specific images?


Encaps © 2005-2010 PHP Gallery | Live Demo | Free Download | Support Forum | How To | Contact
?>