|
|
|
|
From: Guest Date: May 02 2007, 02:35
|
|
|
|
|
From: Guest Date: April 30 2007, 03:23
|
How to give permission for the folder in a windows 2003 server? since i tried to create directory or upload files it gives error?
this is the error:
Warning: mkdir(../rwx_gallery/test) [function.mkdir]: Permission denied
Warning: copy(../rwx_gallery/Agfair/1.jpg) [function.copy]: failed to open stream: Permission denied
can u please help me this one thanx |
|
|
|
From: Encaps Date: April 30 2007, 07:00
|
Hello,
unfortunately I have no chance to play on windows 2003 server,
but have some ideas how to get/set permissions:
- with ftp: right click on the directory, click "Permissions", check "write" and "execute" checkboxes;
- same for IIS control panel: right click on the directory, click "Permissions", check "write" and "execute" checkboxes;
Let me know. |
|
|
|
From: Guest Date: April 23 2007, 00:44
|
Hello,
I download your software and set it up on my site. The problem is that I can not use the admin utility. It never saves any edits I make on any of the pages. I checked the permisions on the config.ini.php and that is rwx rwx rwx and same with rwx_gallery and subfolders. If I manually edit config.ini.php and upload the changes, I can import all the pictures into the database and reinstall the database but I can not edit/delete categories nor can I edit the image descriptions and still can't save any changes to the admin page using the web page. Any ideas? |
|
|
|
From: Encaps Date: April 23 2007, 04:56
|
Hello,
please let me look at the issue online |
|
|
|
From: Guest Date: April 23 2007, 12:43
|
| http://www._hostnamereplaced_.com/Gallery/admin/ |
|
|
|
From: Encaps Date: April 24 2007, 06:43
|
The problem is with php session mechanism: simple test files can't deal with sessions on your webserver.
So admin is not authorized after web-page is reloaded, and can't change database content.
I have not yet ideas how to fix this issue, let me think. |
|
|
|
From: Guest Date: April 25 2007, 03:41
|
| I think I got this working now. The session save directory was not cofigured properly in my php.ini file on my hosting company. I found a KB article on my hosting companys web site on ow to change it and it seems to be working. Thanks again for your help. |
|
|
|
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, 17:08
|
|
|
|
|
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. |
|
|