|
|
|
|
From: Guest Date: October 19 2008, 19:07
|
| I installed your free download, then purchased the software. Do I have to reinstall the whole thing to be able to make the modifications or are there specific files I need to install to be able to modify the header and footer information. |
|
|
|
From: Encaps Date: October 20 2008, 04:40
|
Thank you for your purchase.
You don't need to reinstall EncapsGallery, just overwrite /core/ directory. |
|
|
|
From: Guest Date: October 19 2008, 14:01
|
Warning: chmod() [function.chmod]: Operation not permitted in /var/www/Galleries/core/misc.class.php on line 306
What does this error Warning mean? Everything seems to be working correctly but I get this when doing FTP uploads. |
|
|
|
From: Encaps Date: October 20 2008, 04:43
|
That means the gallery will not be able to delete the files uploaded by ftp - not enough permissions.
You would need to change permissions for ftp uploaded files first.
|
|
|
|
From: Guest Date: October 18 2008, 22:47
|
| How can I make the watermark only show once at the bottom of the photo in large text |
|
|
|
From: Encaps Date: October 20 2008, 04:40
|
| You need to customize /core/watermark.php |
|
|
|
From: Guest Date: October 18 2008, 12:25
|
When I upload or try to resize pictures i get this error message. I can't seem to figure out how to fix it. Could you please help?
"Resize failed, can't access GD library" |
|
|
|
From: Encaps Date: October 18 2008, 14:38
|
| You could ask your hosting provider to enable/install PHP GD library for your webserver |
|
|
|
From: Guest Date: October 13 2008, 14:44
|
this error occured while configuring the database configuration.. what will i do? pls help!!
Unable to connect the database host 1 with username 1 and password 1
Can't connect to MySQL server on '1' (22) |
|
|
|
From: Encaps Date: October 13 2008, 15:26
|
You should set up valid database connection parameters: existing hostname, existing database name, existing username and password.
So, create/reconfigure the database first, next install EncapsGallery. |
|
|
|
From: Guest Date: October 10 2008, 15:13
|
| How would I call up the name of the category (or subcategory) and display it above thumbnails and enlarged images? |
|
|
|
From: Encaps Date: October 13 2008, 15:30
|
| Try <?php echo @$this->html["cat"]["title"] ?> |
|
|
|
From: Guest Date: October 09 2008, 21:08
|
Installation has gone okay to a point.
When I try to access http://***.****.com/encapsgallery/admin/catalog_cfg.php file I am taken to a login screen. I click submit to gain access to setup a password. I put the username/password in and it takes me straight to the login screen again. It wont accept my password but will allow empty fields taking me back to the configuration page.
I can navigate away from the creation screen and hit submit again to get to http://***.*************.com/encapsgallery/admin/catalog_db_install.php where the error shown is "http://***.*************.com/encapsgallery/admin/catalog_db_install.php"
Any clues as to what this is? |
|
|
|
From: Guest Date: October 09 2008, 21:09
|
Here is the error:
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)
|
|
|
|
From: Guest Date: October 10 2008, 11:55
|
| Okay I got past that part by manually editing the config.ini.php file. Now when I login to the admin area every page redirects to the login screen. The link to the left redirect and any submit buttons. In the Images section I am getting my sql errors. Are these things related? |
|
|
|
From: Encaps Date: October 13 2008, 16:09
|
PHP sessions engine is not configured properly for your webserver. Please ask your hosting provider to fix PHP sessions.
Next you will be able to log in to EncapsGallery admin area and install database tables. |
|
|
|
From: Guest Date: October 09 2008, 04:42
|
| I use the shopcart skin, how could I switch from 3 to 2 thumbnails columns in the display? |
|
|
|
From: Encaps Date: October 09 2008, 14:47
|
html/shopcart/catalog.html, line #26:
if($count++ % 3 == 0 && $count >1) echo '</tr><tr>';
change to
if($count++ % 2 == 0 && $count >1) echo '</tr><tr>';
|
|
|
|
From: Guest Date: October 08 2008, 11:39
|
| how to define a thumb type for pdf file in encaps. Please help me. I am stuck with it since 2 days |
|
|
|
From: Encaps Date: October 09 2008, 14:45
|
| you could create thumbnail for PDF manually |
|
|
|
From: Guest Date: October 07 2008, 20:02
|
How can I make a specific category be the default when the gallery is viewed? For example, whenever someone views the gallery I want category 1 to be displayed first instead of a random mix of all images.
I have incorporated the gallery into my site by using the following code in my gallery/index.php file:
<?php
include("catalog.php");
?> |
|
|
|
From: Encaps Date: October 09 2008, 14:45
|
you could try this:
index.php:
1) <?php header("Location:catalog.php?cat=1")?>
or
2) <?php if(!isset($_GET["cat"]))$_GET["cat"]=1 ?> |
|
|
|
From: Guest Date: October 09 2008, 15:34
|
| I can't seem to make that work. Where would you suggest inserting the code? |
|
|
|
From: Encaps Date: October 09 2008, 16:12
|
into index.php, before including catalog.php:
<?php
if(!isset($_GET["cat"]))$_GET["cat"]=1 ;
include("catalog.php");
?> |
|
|
|
From: Guest Date: October 09 2008, 17:42
|
| That did the trick, thank you! |
|
|