|
|
|
|
From: Guest Date: July 05 2008, 15:09
|
Hi Andrew,
Well Actually I bought your software last two weeks before but today I watched your demo because let me check is there any updates I got a form on shopping cart when we select items we are getting enquiry form below after submitting it - your enquiry is transfering to admin section.
So please give me that code......waiting for your reply!!!! |
|
|
|
From: Encaps Date: July 06 2008, 08:19
|
| Sorry,I did not understand you. Could you please clarify? |
|
|
|
From: Guest Date: June 30 2008, 19:18
|
hello...
Just installed at
*********.com/layout1.html
The Paypal intergration, does not seem to function.
Getting an error message from the PayPal page. |
|
|
|
From: Encaps Date: July 01 2008, 03:12
|
| Checking in, will let you know. |
|
|
|
From: Guest Date: July 02 2008, 02:32
|
| Would appreciate any help here... Site is ready to go live except for this issue.. |
|
|
|
From: Encaps Date: July 02 2008, 11:39
|
Actually it's ok now...
I just tested paypal sandbox - it was ok, so I turned off sandbox, and was surprised - it's still ok.
I guess the business e-mail is changed actually... suppose it is the reason.
|
|
|
|
From: Guest Date: June 30 2008, 03:50
|
hallo, i integrated the Gallery on my Webpage, and i like it, but how can i insert linewraps in the Description field.
It would be look like this:
TEXT1 : TEST
TEXT2 : TEST TEST TEST
TEXT3 : TEST TEST
PLEASE HELP ME! |
|
|
|
From: Guest Date: June 30 2008, 08:10
|
yes you can
you must add <p> after the end of the line
it will work 100% |
|
|
|
From: Guest Date: June 30 2008, 08:12
|
sorry
you must add <br> where you want another line
test<br>test1<br>test2<br>
the you will get
test
test1
test2
Good luck |
|
|
|
From: Guest Date: June 30 2008, 10:20
|
Thank you,
:-) Of course , sometimes it could be sooooo easy.
|
|
|
|
From: Guest Date: June 29 2008, 23:55
|
| there's a problem with pagination.html when use the firefox or other browsers. if the pages more than the width(many pages), IE can set the newline, but Firefox can't, is there any way to change? |
|
|
|
From: Encaps Date: June 30 2008, 10:41
|
| Could you please show me the problem? |
|
|
|
From: Guest Date: June 30 2008, 22:33
|
for example, if i have 150 pages
« [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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 »
when use IE browser, the pagination can be auto have the newline, but if i use FIREFOX browser, the pagination only display oneline!, how to do that use FIREFOX also have the newline? |
|
|
|
From: Encaps Date: July 01 2008, 01:24
|
| Please show me the problem (URL), not the sample. |
|
|
|
From: Guest Date: July 01 2008, 22:44
|
| use ie and firefox visit http://***.****-*******.com/ |
|
|
|
From: Encaps Date: July 02 2008, 11:45
|
| Thanks for the URL, checking in... |
|
|
|
From: Encaps Date: July 02 2008, 14:14
|
| Something wrong with your html layout. You may try to play with css style="white-space:normal" |
|
|
|
From: Guest Date: June 28 2008, 16:15
|
Hi, is there any way to display the last 12 pictures only in the index page.
|
|
|
|
From: Encaps Date: June 30 2008, 10:40
|
You may try something like this for your index.php:
<?php
$items=$gallery->db->query("SELECT * FROM ".$config["db_prefix"]."gallery ORDER BY id DESC LIMIT 12";
foreach($items as $item){
?>
<img src="rwx_gallery/<?php echo $item["filename_normal"]?>">
<?php } ?> |
|
|
|
From: Guest Date: June 30 2008, 15:46
|
sorry i tried it but it doesn't work
where do you want me to include the code???
thanks in advance
Khodor |
|
|
|
From: Encaps Date: June 30 2008, 16:09
|
| Where do you want to output the latest 12 items? Please send me your index.php |
|
|
|
From: Guest Date: July 03 2008, 15:36
|
let's say in empty index1.php page in the main directory of the gallery
I hope you understand me
thanks in advance |
|
|
|
From: Encaps Date: July 03 2008, 15:53
|
<?php
include("catalog_head.php");
include("catalog_head.html");
$items=$gallery->db->query("SELECT * FROM ".$config["db_prefix"]."gallery ORDER BY id DESC LIMIT 12");
foreach($items as $item){
?><a href="catalog.php?action=show_custom&id=<?php echo $item["id"]?>"><img
src="rwx_gallery/thumbs/<?php echo $item["filename_thumb"]?>"></a><?php
}
include("catalog_foot.html");
?> |
|
|
|
From: Guest Date: June 25 2008, 13:39
|
| I need the images within the galleries to come up in a certain order. Using ranks works, but if I add an image somewhere in the middle, I have to re-number every image one by one. I will have over one thousand images by the time I'm done so it would take a long time to re-number this way each time I add a new image. Is there an easier way to do this? |
|
|
|
From: Encaps Date: June 25 2008, 14:31
|
| Unfortunately no |
|
|
|
From: Guest Date: June 25 2008, 17:29
|
| What about allowing an unlimited rank number? For example, you have 300 images in a gallery, but you can set the rank to whatever number you like including higher than 300? that way you can assign images in blocks of numbers with room in between for new additions. Possible? |
|
|
|
From: Encaps Date: June 26 2008, 12:07
|
| Sorry, did not get it. Could you please provide another example? |
|
|
|
From: Guest Date: July 04 2008, 20:14
|
| For example... you have 300 images in a gallery. As it is now, in the admin section you can rank them from 1 to 300 to set the order they are displayed in. BUT... can it be set instead so you can number them whatever you like instead of being limited to 1-300. That way I can number the first one 1 rank, the second one 50 rank, the third one 100 rank, etc. then when I add new images I can use numbers in between to make them come up where I want. |
|
|
|
From: Guest Date: June 24 2008, 03:04
|
| Is it possible allow folders within rxw_gallery? I have approximately 2,000 photos going into this folder and it would be much easier to keep them organized for updates, changes and links if I could use a few folders. |
|
|
|
From: Encaps Date: June 24 2008, 10:39
|
| Not possible without customization. |
|
|
|
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?>">«</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?>">»</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&id=<?php echo $item["id"]?>&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"); |
|
|