|
|
|
|
From: Guest Date: April 21 2007, 04:24
|
Is it possible to change the dollar sign on the shopping cart to the pounds sterling sign or the Euro sign as I trade in these currencies?
If it is possible which page is this located?
Thanks, |
|
|
|
From: Encaps Date: April 23 2007, 05:09
|
Yes, it's possible to change the dollar sign to the pound or euro, but it is hardcoded into html templates. You can use html-editor for replace "$" symbol with:
€ Euro: € or €
£ Pound: £ or £
And also you should change currency code in the shopcart.php page, line #46:
<input type="hidden" name="currency_code" value="USD">
Files: "html/_skin_/gallery.html", "html/_skin_/gallery_custom.html" , "shopcart.php", "shopcart_preview.php" |
|
|
|
From: Guest Date: April 25 2007, 15:43
|
Thanks for your help with this. The only bit I am a bit confused about now is with the gallery_custom.html page. The gallery is working ok, but with the raym skin. I do not appear to be able to find a gallery_custom.html file in the folder. All the other skins this file exists.
Thanks,
Kevin
p.s. An excellent piece of software I would recommend to any one. |
|
|
|
From: Encaps Date: April 25 2007, 17:09
|
Thank you for the feedback, Kevin!
You are right regarding the "gallery_custom.html" file - there is no such file in the "html/raym" directory, not nesessary for the "raym" skin. |
|
|
|
From: Guest Date: April 26 2007, 13:24
|
How do I change the $ sign in this skin? I can not see where it would need to be changed in order to show either Euros or GB sterling.
Thanks,
Regards,
Kevin |
|
|
|
From: Encaps Date: April 26 2007, 13:38
|
Oh, really, the raym skin
File "html/raym/gallery.html", line #74:
document.getElementById("photo_comment").innerHTML += "<br>$"+items_[position_]["price"];
There is the "$" character you can change whatever you need |
|
|
|
From: Guest Date: April 26 2007, 14:41
|
Missed that. Thank you very much.
Regards,
Kevin |
|
|
|
From: Guest Date: April 19 2007, 16:24
|
|
|
|
|
From: Guest Date: April 14 2007, 22:40
|
"Parse error: syntax error, unexpected $end in C:\wamp\www\encaps\admin\html\gallery.html on line 194"
this error message appears when i click the images link in the admin page....
what might be the problem? tnx. |
|
|
|
From: Encaps Date: April 15 2007, 05:44
|
| could you please show me the error online, and send me your "admin/html/gallery.html" template |
|
|
|
From: Guest Date: April 15 2007, 08:46
|
| sorry... localhost only .... |
|
|
|
From: Encaps Date: April 15 2007, 08:49
|
| so zip and send me your gallery files, except "rwx_gallery" directory, for I can look at the issue |
|
|
|
From: Guest Date: April 17 2007, 04:49
|
found the bug...
in the "admin/html/gallery.html"
<?php } else { ?><INPUT type="hidden" name="price_<?php echo $item["id"]?>" value="<?php echo stripcslashes($item["price"])?>" ><? } ?>
should be......
<?php } ?>
tnx for the time.... |
|
|
|
From: Encaps Date: April 17 2007, 07:23
|
| thank you |
|
|
|
From: Guest Date: April 08 2007, 09:51
|
| how to change 3x3 orientation of pics to 4x5? tnx. |
|
|
|
From: Encaps Date: April 09 2007, 06:53
|
The orientation is configured from the html-template and config-file, for example 3x3 orientation is :
1) config.ini.php, "$config["pager_items_per_page"] = 9"
2) html/gallery.html, "$count++ % 3" :
<? foreach($html['items'] as $item){ if( $count++ % 3 == 0 ) { ?>
so, 4x5 orientation will be:
1) $config["pager_items_per_page"] = 20
2) "$count++ % 4"
<? foreach($html['items'] as $item){ if( $count++ % 4 == 0) { ?> |
|
|
|
From: Guest Date: April 09 2007, 09:22
|
| tnx. |
|
|
|
From: Guest Date: April 07 2007, 12:03
|
| Great software... However, I have run into a problem. I am posting two sets of jpegs from 2 difference sources to the rwx_gallery directory. rwx_gallery, its subdirectories, and files have permissions set to 0777. One set works fine, the other comes back with unable to write to the subdirectory of rwx_gallery I am trying to post to. I have confirmed that I DO have full access rights. Also related to this is that sometimes it returns the error message and other times my browser just times out. Is there are place I should be looking at the message logs? Thanks for the assistance. |
|
|
|
From: Guest Date: April 07 2007, 12:27
|
| Actually, it looks like the problem is in creating the thumbs. I am using GD. However, the permissions are set correctly on thumbs and it seems to be related to certain files. Can it be a size issue? |
|
|
|
From: Encaps Date: April 07 2007, 15:22
|
| Make sure permissions for "thumbs" directory is also set to 777. Please let me look at your gallery online, if possible. |
|
|
|
From: Guest Date: April 07 2007, 17:09
|
It is fixed. I did a tail on httpd/error_log and found allowed memory size was too small for the operation. So I added ini_set to gallery_head.pnp
|
|
|
|
From: Guest Date: April 06 2007, 21:31
|
| Can I have a larger photo view available or supersize photo or more than 1 picture of the item |
|
|
|
From: Encaps Date: April 07 2007, 07:20
|
| This feature is not implemented with standard EncapsGallery release. Please provide me with details if you'd like to initiate customization. |
|
|
|
From: Guest Date: April 02 2007, 23:04
|
Directory ../rwx_gallery/Default/thumbs/ is not writable
File upload is failed
I get this when I try to upload image from back end |
|
|
|
From: Encaps Date: April 03 2007, 06:57
|
Please change permissions for "rwx_gallery" directory and subdirectories for allow
webserver to change it's content:
run the following command from console:
chmod -R 777 rwx_gallery
or set "rwx rwx rwx" permissions with your ftp-client software |
|
|
|
From: Guest Date: April 02 2007, 02:09
|
hello sir
This is so useful & great gallery.
I want sort the images in main categry & subcategory.
please give me advice how to create main catagory?
& how to upload images in sub catagory.
waiting for your reply.
thanks |
|
|
|
From: Encaps Date: April 02 2007, 06:20
|
Hello,
thank you.
For create a main category you can just create a category.
To make it main you can just create subcategory: create another category, and select main
category as "parent id". So, main category be "parent", subcategory
be "child"
For upload images into subcategory just select subcategory in the "Add new
image" form from back-end; or upload your images by ftp into relevant directory
inside the "rwx_gallery", and next click on "Scan for new uploads" tab |
|
|
|
From: Guest Date: April 01 2007, 11:21
|
Hello
I have just installed the php photo gallery from your site - it works fine, but when i scan for new uploads, it can't find the last pictures and it says
"Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 3240 bytes) in /customers/avalongameclub.dk/avalongameclub.dk/httpd.www/galleri/core/Misc.php on line 271"
What can i do?
/Thorbjørn from Denmark |
|
|
|
From: Encaps Date: April 01 2007, 16:34
|
That means amount of memory is limited for php,
you can try to increase this value,put the following line
ini_set("memory_limit","256M");
into "admin/gallery_head.php" file.
Let me know does it work for you.
|
|
|
|
From: Guest Date: March 31 2007, 14:41
|
I have just purchased the source code for the gallery and uploaded the files to the core folder.
The gallery no longer works and I get this error:
Warning: Missing argument 2 for gallery() in /home/content/C/a/k/Cakes4Occas/html/core/Gallery.php on line 4
Fatal error: Call to a member function on a non-object in /home/content/C/a/k/Cakes4Occas/html/core/GalleryCategory.php on line 44
How do I fix this?
|
|
|
|
From: Encaps Date: March 31 2007, 17:23
|
It looks like you are trying to merge different versions of sources and gallery. If so, please replace all your gallery files EXCEPT the skin you developed (save /html/ directory) with the newest package, and overwrite the sources again.
If you are not sure is everything ok, please do not hesitate to contact me with MSN, AIM or Yahoo |
|
|