|
|
|
|
From: Guest Date: April 14 2010, 09:40
|
Can you suggest a code change to switch 'Categories list' from descending to ascending order.
Thanks. |
|
|
|
From: Encaps Date: April 18 2010, 05:33
|
| There is "rank" option from admin categories page admin/catalog_categs.php |
|
|
|
From: Guest Date: May 25 2010, 08:10
|
I could not find rank option in admin/catalog_categs.php
<?php
include("catalog_head.php");
$db = new DB_sql($config["db_host"],$config["db_user"],$config["db_pass"],$config["db_name"]);
$cats = new Category($config,$db,'admin');
$cats->think();
$gallery = new Gallery($config,$db,$cats,$_FILES,'admin');
$cats->show();
include("catalog_foot.php");
?>
|
|
|
|
From: Guest Date: April 07 2010, 10:53
|
Hi, I am just evaluating your script and it looks to cover what I need with one exception, I would like to let my users download .tif files.
I am guessing that the reason for not offering this option is a problem with generating thumbnail images from the .tif format, is this correct? If so, could I suggest a workaround? How about if each .tif image had a matching .jpg image with the same name, ie. someimage.tif and someimage.jpg. The thumbnail/preview would be created from the someimage.jpg but the option given to download either someimage.tif or someimage.jpg.
Is that doable? Would you consider implementing this in an update or would you charge me for it? If I have to pay, how much?
Regards Nick |
|
|
|
From: Encaps Date: April 12 2010, 12:20
|
You can assign static .jpeg thumbnail for .tiff images,
there is just one restriction from core/misc.class.php, line# 85:
if(!preg_match("#.(jpg|jpeg|png|gif|swf|mov|pano)$#i",$filename))
{
Misc::_show_message_color("Only the following
files types are allowed for upload: .jpg .jpeg .png .gif .swf .mov
.pano");
return;
}
so you just need to add tiff into allowed files extentions list:
(jpg|jpeg|png|gif|swf|mov|pano|tiff) |
|
|
|
From: Guest Date: April 04 2010, 13:40
|
Hello,
Please follow this url:
http://***......com/admin/catalog_categs.php
I have bought ur script, but wanto to change the dropdown list in the above section. Please suggest the modification for showing as list without dropdown menu for this section in admin pannel.
A. R. Roy. |
|
|
|
From: Guest Date: April 04 2010, 13:47
|
Please also note that i am using DHTML template for front end.
Kindly suggest the same automatic table listing for the following admin section pages in place of dropdown lists:
http://***..........com/admin/catalog_items.php
http://***...........com/admin/catalog_tools.php
Also suggest if only individual multiple categories with names description with icon pics can be added from the page:
http://***.......com/admin/catalog_categs.php
Thanks.
A. R. Roy. |
|
|
|
From: Guest Date: March 31 2010, 16:57
|
| I'm thinking on incorporating your gallery into my website, but before I start, there is something I would like to know. All my "thumbnails" will be 420px tall, with proportional width. In order to make this work with my script I would need to write the thumbnail width in the loop. How can I get this value? |
|
|
|
From: Guest Date: March 31 2010, 12:34
|
| Since we don't have search function in the admin area, how do I sort the photo by name or time? Please advise. |
|
|
|
From: Encaps Date: March 31 2010, 14:20
|
| Just set sort order to empty value - so the items will be sorted by uploaded time |
|
|
|
From: Guest Date: April 01 2010, 12:21
|
| Thank you for your reply! Could you please be more specific? Which file should I modify to set the value you mentioned? Thanks! |
|
|
|
From: Guest Date: March 23 2010, 06:42
|
I have incorporated the gallery design into my web following the instructions and placing the appropriate files in the appropriate folders. However, I am getting this error:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home6/stanneba/public_html/gallery/test.php:2) in /home6/stanneba/public_html/gallery/common.ini.php on line 2
How Can I solve it? |
|
|
|
From: Encaps Date: March 23 2010, 11:55
|
| There should not be any output before the line "session_start()". Could you please send me your files? |
|
|
|
From: Guest Date: March 24 2010, 04:30
|
Ok, it's solved. I got another glitch though. I am using the ACD template for the photos. When it comes to using the border images, I am getting a "repetition" of the same background images around the photo's borders. I have tested it and seen this glitch on 4 different computers, 3 of which have verified it. the 4th one does not show this glitch (strangely enough) and I presume that it is related to screen resolution?
Here is the link anyway: http://www.************.org/gallery |
|
|
|
From: Guest Date: March 24 2010, 04:39
|
I have checked further onto this glitch. I switched to compatibility view on Internet Explorer and lo and behold, it disappeared. I have checked it also on Mozilla Firefox and the glitch was there again too. Seems like there is a coding incompatibility with the new browsers.
Is there a way this could be tackled? |
|
|
|
From: Encaps Date: March 24 2010, 09:42
|
| Could you please send me your files? I will try to figure it out |
|
|
|
From: Encaps Date: March 24 2010, 15:01
|
It's related to html doctype somehow: I just removed first line from your page
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://***.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
and the issue was fixed.
I will try to figure out why the border is broken with xhtml |
|
|
|
From: Guest Date: March 24 2010, 16:11
|
| Thanks. I'll be awaiting your reply on this :) |
|
|
|
From: Encaps Date: March 26 2010, 10:52
|
Why don't you use html doctype instead of xhtml, is there any reason to prefer xhtml?
you could try this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://***.w3.org/TR/html4/loose.dtd">
Let me know |
|
|
|
From: Guest Date: March 27 2010, 07:02
|
| Hi, I replaced the code as suggested, and it worked :) Thanks a lot! |
|
|
|
From: Guest Date: March 21 2010, 13:40
|
hello! i have this encaps gallery loving it! been playing around and got a bit stuck....
in the > admin panel > items > Id >> Title >> Comment
so the content it will the the alt=
in the image
i would like to know how can i make it hiding but still be able to be visible by google, please could you help me!!!!!!!!
|
|
|
|
From: Guest Date: March 21 2010, 07:42
|
Hi,
I've added and enabled a few extra fields to the shopping cart submit form that customers fill out before submitting their order. Like enter telephone number, etc. These line up with the categories that are already allocated to your php database.
It works well when a customer submits their order. The extra fields information is recorded on the server and is included in the auto email.
But I cant get the extra fields and information in them to display in the admin section (admin/shopcart.php). They appear to be set to display It seems to have all the right code in place. EG:<td><?php echo urldecode($item["payer_phone"])?></td>
Is there any other file I need to alter to get the extra field to display?
Thank, Wayne |
|
|
|
From: Guest Date: March 23 2010, 06:45
|
| Worked it out. I accidentally put it after the Paypal condition, which stop it showing |
|
|
|
From: Guest Date: March 19 2010, 18:59
|
Good evening,
I am using your script for my business and think that it is really great. This is probably a simple fix, I would really appreciate your help on it. I am currently using the shopcart template and in the admin, I have the cart enabled. After a person puts items in the cart and then script sends the email to the customer and the website owner, how can I get the email to display the items thumbnails next to the item name. This is probably a simple fix, please get in contact with me as soon as possible, via email or skype (username kbailey1734). If this goes smoothly, I may have paying jobs to offer to you in the future, in regards to this script. |
|
|
|
From: Guest Date: March 21 2010, 07:20
|
Try this in the shopcart_preview.html
<img src="./rwx/<?php echo $item_catalog['file_thumb']?>" alt="<?php echo $item_catalog['title']?>">
Cheers, Wayne |
|
|
|
From: Guest Date: March 14 2010, 12:08
|
Hi i have tested the gallery its fantastic But i need some changes implemented in it. If you can make these changes then mail me, i will buy the source code and you can give me the modified source code with below changes implemented:
All the below changes for ACD Template:
* Instead of showing the thumbnails of items on default page it must show sub-categories of default category with random thumbnail from the respective sub-category
* I upload daily celeb image folders in ftp_upload and i assign them as sub categories to a particular category then the sub-categories must be displayed in descending order (Newest first)
* When a image thumbnail is clicked the image must open in new window.
* URLs look like http://***.com/catalog/categoryName/itemName.html instead of http://***.com/catalog.php?categ_id=1&id=2 ? (mod_rewrite)
Again one question after buying am i able to request any further changes if i need ? |
|
|
|
From: Encaps Date: March 14 2010, 16:25
|
thank your for your feedback
so I have a question:
> * Instead of showing the thumbnails of items on default page it must show
> sub-categories of default category with random thumbnail from the respective
> sub-category
could you please explain this topic? or contact me with MSN |
|
|