|
|
|
|
From: Guest Date: October 12 2010, 13:12
|
| I was actually waiting for you at Skype you said to come on Skype can u please come on Skype and answer my simple question plz .My ID is imranhdse I just wanted to know whats the process of paypal i bought your software and I dont know whats the intergration process to our shopcart to paypal? |
|
|
|
From: Encaps Date: October 12 2010, 19:16
|
| I'm online every day - just send me a message even if I'm "off" |
|
|
|
From: Guest Date: October 11 2010, 18:37
|
hi.
I have bought source code for encaps 2.3.18.1 before.
Do I need to buy the source code for 2.3.21?
thanks
|
|
|
|
From: Encaps Date: October 12 2010, 19:13
|
| You do not need to purchase new version - just use the same url as you received last time |
|
|
|
From: Guest Date: October 04 2010, 15:40
|
Hi Andrew
I have well over 50Gb (and growing) of images that have to be categorised. I'm looking for a web based way of doing this - so that three or four of us can work on it at the same time.
How easy would it be to do this with your Gallery software?
Thanks
David |
|
|
|
From: Guest Date: October 04 2010, 15:44
|
| not a reply - I forgot to say we have Apache running on a Linux box |
|
|
|
From: Encaps Date: October 05 2010, 17:35
|
Hello David, there is free full-functional demo available to download and install on your side
http://www.encaps.net/software/encapsgallery/download-image-album.php |
|
|
|
From: Guest Date: October 10 2010, 02:23
|
Hi Andrew
I have downloaded and installed the latest encaps but I don't think it is what I want.
What I need is for each user to be able to view thumbnails of the images stored on our fileserver within date-time folders.
I need them to be able to click on an image and assign a category to that image. The categories and the names of the images in the categories should be stored in the database so all users can have access to how others have sorted the images.
I do not need to upload the images or copy them as they are already on the same server as the web server. As there are over 50Gb of images already I don't want more than one copy of each image.
Now I have tried encaps I don't see how it can do this for me.
Thanks for your help.
David |
|
|
|
From: Guest Date: September 30 2010, 14:10
|
hi,
Andrew you didn't get me Actually i want to know in paypal I want the procedure of payment and our software shopcart should connect to paypal and I can able to get the payments and what exactly the shipping procedure plz help me I purchased your software last year so I develop my website through your software but stuck in paypal. You said last time I did all but my client want the details of paypal payments becoz paypal is only connected to our software i didn't get paypal website details can u plz plz explore me in indian Rupees what to pay and how to connect to them so that the transactions will be continue and give me their numbers i will call them to know.......plz help me in this issue |
|
|
|
From: Encaps Date: October 01 2010, 00:49
|
| Please contact me with Skype |
|
|
|
From: Guest Date: September 28 2010, 18:03
|
hi,
I purchased your software last year can u plz tell me if i want to enable the paypal payment to my site I mean i want visitors should buy my products then what the procedure is plz tell me in admin section i have enabled paypal option? |
|
|
|
From: Encaps Date: September 28 2010, 22:35
|
1) activate "PayPal" from admin/catalog_cfg.php
2) turn on "Test mode (sandbox) "
3) make sure IPN url is valid, adjust $config['url_root'] from config.ini.php
4) do test - if everything is ok, turn off "Test mode (sandbox) "
|
|
|
|
From: Guest Date: September 27 2010, 05:07
|
Hi,
I'm using your script for our local youth basketball club for the parents to order unforms for their kids. I'm using the shopping cart with pay on delivery enabled (not using paypal). It has been working great, but lately I've been getting dummy orders, through spam bots.
I want to use your Captcha to stop this, but not sure where this script should wrap around in the shopcart.php file:
<?php
if(isset($_POST["captcha"]))
if($_SESSION["captcha"]==$_POST["captcha"])
{
//CAPTHCA is valid; proceed the message: save to database, send by e-mail ...
echo 'CAPTHCA is valid; proceed the message';
}
else
{
echo 'CAPTHCA is not valid; ignore submission';
}
?>
Thanks Wayne |
|
|
|
From: Encaps Date: September 27 2010, 18:17
|
1) shopcart.php, line# 87:
if(isset($_POST["captcha"]) && ($_SESSION["captcha"]!=$_POST["captcha"]) )
{
echo 'CAPTCHA is not valid; ignore submission';
return;
}
2) line# 184:
<tr><td>3 black characters:<img src="captcha.php"></td><td><input type="text" name="captcha"></td></tr> |
|
|
|
From: Guest Date: September 29 2010, 17:25
|
Thank you so much
It works great!!!
Cheers, Wayne |
|
|
|
From: Guest Date: September 21 2010, 17:39
|
How can I make the shopping cart selected products flow horizontallyinstead of vertically?
Thanks |
|
|
|
From: Encaps Date: September 21 2010, 18:11
|
| By editing html code from shopcart.php |
|
|
|
From: Guest Date: September 14 2010, 13:09
|
| Can I use a SQL Server database for my photo information? |
|
|
|
From: Encaps Date: September 17 2010, 10:06
|
| MySQL only |
|
|
|
From: Guest Date: September 11 2010, 12:42
|
My descriptions disappear in Internet Explorer - it works in every other browser - I'm using the DHTML version... any ideas?
|
|
|
|
From: Encaps Date: September 12 2010, 02:48
|
| What IE version is? |
|
|
|
From: Guest Date: September 16 2010, 10:09
|
| tested on 6, 7 and 8 |
|
|
|
From: Guest Date: September 09 2010, 05:52
|
Hello, I need put to my site photogallery with using INCLUDE. When I try to use <?php include(dirname(__FILE__)."/catalog.php")?>, it works, but when I need put there only one category, like <?php include(dirname(__FILE__)."/catalog.php?categ_id=7")?>, it dosn't work. The server response is "....failed to open stream: No such file or directory in...."
How to include just one category to any page? (I have all pages in one directory...)
Thanks |
|
|
|
From: Encaps Date: September 12 2010, 02:49
|
You could try this code:
<?
$_GET["categ_id"]=1;
include("catalog.php");
?> |
|
|