|
|
|
|
From: Guest Date: May 22 2008, 09:44
|
| are there any plans to be able to upload more than one photo at a time through the web interface? It's very tedious to upload 20 plus photos individually, or ftp them and then move them into thier respective category practically individually. |
|
|
|
From: Encaps Date: May 22 2008, 12:04
|
| Unfortunately this feature is not scheduled. |
|
|
|
From: Guest Date: May 21 2008, 16:14
|
Hello! I'm installing your Image Gallery, and I'm on the steps:
3) configure the gallery: run http://***.php
4) run the database installer: http://***.php
I've gotten the configuration I want, but when I go to install it I keep getting this message:
"Unable to connect the database host localhost with username root and password
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)"
I've entered:
Database host: *******.**********.***
Database user: ******* (my database username)
Database password: entered my login password for the database
Database name: encaps (the name I've designated for my database)
What's going wrong? |
|
|
|
From: Encaps Date: May 22 2008, 08:54
|
There is script for test mysql connection:
admin/test/test-mysql-connect.php,
please set up valid mysql parameters in the line #2, and let me look at the result online. |
|
|
|
From: Guest Date: May 20 2008, 23:51
|
I've installed your gallery software! It is awesome! I have one question, when I select on the thumbnail the source image is very large. Is there a way to control the size of the image after it is selected from the Thumbnail?
Thanks for the great code! |
|
|
|
From: Encaps Date: May 21 2008, 09:06
|
Hello, thank you for the feedback.
It's not clear enough, what do you need to do with thumbnails? |
|
|
|
From: Guest Date: June 11 2008, 23:22
|
Thumbnails are fine. However when you select a thumbnail to view the result is a very large image. Can the actual image size be adjusted or does it have to be adjusted before uploading?
|
|
|
|
From: Guest Date: May 19 2008, 09:34
|
Hi there
I have copied the files over to the webserver and setup the catalog.php file but I can't run the database installer - It asks for a username and password.
I've enter both username and password from catalog.php and also tried the default and nothing is working.... Any ideas? |
|
|
|
From: Encaps Date: May 19 2008, 10:08
|
| There is empty (blank) username and password by default (for admin area db installer) |
|
|
|
From: Guest Date: May 15 2008, 08:19
|
Hi, I think Ive managed to change currency to UK, but Paypal is showing USD, any help appreciated...
Ken |
|
|
|
From: Encaps Date: May 15 2008, 08:33
|
shopcart.php, line #49:
<input type="hidden" name="currency_code" value="USD"> |
|
|
|
From: Guest Date: May 14 2008, 04:59
|
hi, i'm using the expo skin - what file(s) do i edit to change the size of the thumbnail preview window?
also where can i edit the font size / typeface for the gallery ?
Thanks
|
|
|
|
From: Guest Date: May 14 2008, 05:35
|
i mean ... not the actual thumbnail jpg size but the table surrounding it ... are these the r1-000...gif files ?
Cheers
|
|
|
|
From: Encaps Date: May 14 2008, 05:47
|
| Feel free to play with html templates |
|
|
|
From: Guest Date: May 14 2008, 06:38
|
| Ok ... do i need to edit the php or resize the gifs ? Nothing within the php looks obvious - unless i'm missing something . |
|
|
|
From: Encaps Date: May 14 2008, 06:48
|
| Just edit templates under /html/ directory |
|
|
|
From: Guest Date: May 13 2008, 23:13
|
| Are there search parameters that can be used? For example quotes, asterisk, plus / minus? They don't seem to work with the search function in this software but maybe I'm missing something? |
|
|
|
From: Encaps Date: May 14 2008, 04:22
|
| There is simple search function without quotes, asterisk and +/- |
|
|
|
From: Guest Date: May 14 2008, 17:04
|
None of these functions work properly. For example:
Entering "sup" yields 5 results with the word "supercharged". Entering "sup*" yields 32 results, only five containing the letters "sup".
+ and - either cause no results to appear, or irrelevant results as with an asterisk. |
|
|
|
From: Guest Date: May 14 2008, 17:05
|
| Wait are you saying no quotes, but there is *+- or are you saying none of these do anything? |
|
|
|
From: Encaps Date: May 14 2008, 18:24
|
| Would you like us to clean up the search feature to ignore anything except letters and digits? |
|
|
|
From: Guest Date: May 15 2008, 01:07
|
| Special characters seem to cause unpredictable results. Perhaps it would be best to make the search function ignore them, assuming they can't be made to do anything useful. |
|
|
|
From: Encaps Date: May 15 2008, 03:29
|
For ignore any characters except letters and digits you may add the following line into search.php:
$_GET["search"] = preg_replace("/[^a-z0-9]/i","",$_GET["search"]);
$result = $gallery->search($_GET["search"]);
|
|
|
|
From: Guest Date: May 15 2008, 14:16
|
That works, but I had to add a space in the string so it doesn't smash all the words together. I put the space after the 9, like this:
$_GET["search"] = preg_replace("/[^a-z0-9 ]/i","",$_GET["search"]); |
|
|
|
From: Guest Date: May 25 2008, 13:44
|
I am utilizing the shopcart template and apparently the search function does not work properly.
I search for an item (i know I have) but comes with different results and/or no results.
www.cjdesignsexotic.com
Can you help me? |
|
|
|
From: Guest Date: May 12 2008, 20:34
|
| Is there a way to make the search results page tell you what you searched for? In other words, can you echo what the user enters in the search box in the "Search results" line? |
|
|
|
From: Encaps Date: May 13 2008, 06:20
|
| You may just put <?php echo $_GET["search"]?> anywhere you'd like to output the search string. |
|
|
|
From: Guest Date: May 12 2008, 18:31
|
Hi,
I installed the database onto a server to set things up and make all the necessary customization. Now I am trying to put it up onto a client's hosting, and I'm getting the following message:
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
I think it's already on the support pages, but I cannot find it.. sorry.
Thank you for your reply,
sasha |
|
|
|
From: Encaps Date: May 13 2008, 06:24
|
Hello Sasha,
there is a test script for check mysql connection in the admin/test/test-myslq-connect.php.
Could you please put mysql connection parameters there (line #2) and let me know? |
|
|
|
From: Encaps Date: May 13 2008, 06:29
|
Or you may ask your hosting provider to put valid mysql socket path to /etc/my.cnf:
[mysqld]
socket=/var/lib/mysql/mysql.sock
...
[client]
socket=/var/lib/mysql/mysql.sock |
|
|
|
From: Guest Date: May 12 2008, 17:20
|
| I got the watermark working the way I want it but there is one problem. the properties of the image show the original path, so anyone can steal the image without the watermark by copy and pasting the address. Is there a way to secure the image folder that contains the images? |
|
|
|
From: Encaps Date: May 12 2008, 18:00
|
| You are right, we will modify watermark for hide the image path. |
|
|
|
From: Encaps Date: May 13 2008, 06:19
|
Watermark is fixed, you may do the following:
1) download the latest package and update your core/watermark.php.
2) apply watermark with the line:
<IMG src="core/watermark.php?id=<?php echo $html["item"]["id"]?>"> |
|
|
|
From: Guest Date: May 13 2008, 13:36
|
| Is the only change from 2.0.5 to 2.0.6 in the file "watermark.php"? I purchased the 2.0.5 core yesterday. |
|
|
|
From: Guest Date: May 13 2008, 13:48
|
Sorry, I mean in place of:
IMG src="core/catalog_watermark.php?file=../rwx_gallery/<?php echo $html["item"]["filename_normal"]?>" |
|
|
|
From: Guest Date: May 13 2008, 14:19
|
| Sorry, I got it working. Please feel free to delete the two previous posts (and this one). |
|
|
|
From: Guest Date: May 13 2008, 13:43
|
Also, I've tried inserting the line:
<IMG src="core/watermark.php?id=<?php echo $html["item"]["id"]?>">
into light/catalog_custom.html in place of:
<IMG src="core/watermark.php?id=<?php echo $html["item"]["id"]?>"
and it isn't working. Am I putting it in the right place? |
|
|
|
From: Encaps Date: May 13 2008, 15:31
|
I've just tested the watermark for html/light/catalog_custom.html:
<IMG src="core/watermark.php?id=<?php echo $html["item"]["id"]?>">
It worked at my side :( Could you please zip & send me your gallery (except rwx_gallery contents), or let me connect your webserver with ftp? |
|
|
|
From: Guest Date: May 13 2008, 23:11
|
| The problem was on my side. See my post above. Sorry! |
|
|