photo album software
  PHP Gallery     Live Demo     Free Download     Support Forum     How To     Contact  
ArabicBulgarianChineseCroatianCzechDanishDutchEnglishFinnishFrenchGermanGreekHindiItalianJapaneseKoreanNorwegianPolishPortugueseRomanianRussianSpanishSwedishTurkish
Ask a question...
 

From: Guest   Date: December 13 2009, 18:03
Hi,
im quite a sql/cms newbie, but i managed to adapt your great script to my needs, only i would like to have subpages like Contact, References, with text and same layout as for pictures, but somehow i dont manage to create one...
i have created a file named contact.php:

<?php include "catalog_head.html" ?>
asdadadad
<?php include "catalog_foot.html" ?>

and get en error in the section with photo-categories:

Warning: Invalid argument supplied for foreach() in /www/e/c/u25112/public_html/catalog_head.html on line 66

u can have a look here>

http://***.*******.sk/contact.php

thank you
      
From: Encaps   Date: December 14 2009, 09:12
<?php include "common.ini.php" ?>
<?php include "catalog_head.html" ?>
asdadadad
<?php include "catalog_foot.html" ?>
            
From: Guest   Date: December 14 2009, 13:43
hi,
unfortunately not, but i think its ok, i dont need to see all the photo cathegories when im in the contact site....
                  
From: Guest   Date: December 14 2009, 13:45
ah, my mistake, it looks bad when there is an error...so i do need to see the cathegories or nothing...
thank you in advance
                        
From: Guest   Date: December 15 2009, 19:15
<?php include("common.ini.php");
$html["categs"] = $catalog->categs_gets();
include ("catalog_head.html"); ?>

now working!

From: Guest   Date: December 09 2009, 19:26
hi. I am currently using encaps-2.3.18.1 Thanks for your nice product. I have bought source code and loaded it.

How can I get the category and subcategory picture resized in admin/category as i do in admin/item?

Thanks
      
From: Encaps   Date: December 14 2009, 09:19
You could add new line#69 into core/catalog_categ.ctl.php:

Misc::resize('../rwx/'.$file,'../rwx/'.$file,100);

Let me know
            
From: Guest   Date: December 21 2009, 04:47
yeah. that worked. thanks.
hope to see it can be configured at config place at the next version of encaps:)

From: Guest   Date: November 21 2009, 18:39
hi. I have EncapsGallery-2.0.6 version and i want to have at skin shopcart menu at left and right, I tried to modifiy in catalog_head.html
<tr>

<td valign="top" class="common">
<?php
$filepath = dirname(__FILE__)."/html/".$config['path']."/sidebar.html";
if(file_exists($filepath))include($filepath);
?>
</td>

<td valign="top" align="center" class="common">

i copied & paste and i put it in this way
<tr>

<td valign="top" class="common">
<?php
$filepath = dirname(__FILE__)."/html/".$config['path']."/sidebar.html";
if(file_exists($filepath))include($filepath);
?>
</td>

<td valign="top" align="center" class="common">
</tr>
<td valign="top" float="right">
<?php
$filepath = dirname(__FILE__)."/html/".$config['path']."/scroll.htm";
if(file_exists($filepath))include($filepath);
?>
</td>
but isn't good. pls help me.
http://***.ro-webdesign.info is the site where i want to move the menu to the right is one where products move from top to bottom
      
From: Encaps   Date: November 23 2009, 09:42
I visited the URL you provided - what is wrong there?
            
From: Guest   Date: November 29 2009, 05:37
Fixed

From: Guest   Date: November 21 2009, 15:57
Can't seem to find the Encaps admin file that contains the main menu: catalog, catagories, items, ftp uploads, config, shopcart and logout
      
From: Guest   Date: November 21 2009, 16:06
Found it:
In the admin catalog_head.html

From: Guest   Date: November 20 2009, 07:58
Hi

I want to know if Encaps Gallery can run in php safe mode?

Gitte
      
From: Encaps   Date: November 20 2009, 14:59
There is free demo available for download, you may try it out

From: Guest   Date: November 19 2009, 05:19
Can category images on the /catalog_categs.php page) display more than 2 images side by side on screen?

Jack
      
From: Encaps   Date: November 19 2009, 13:56
Hello Jack, you may customize catalog_categs.html

From: Guest   Date: November 14 2009, 03:56
Tried a lot of php album scripts, but this one is the most logical I found. Congratulations.

Some time ago you gave me a handy hint to add a comment that will be emailed when confirming a shopping cart order.
After line 130 of shopcart.php: $message .= ''=== Special offer bla bla bla ===";
How can this be added to the admin control panel? So the comment can be changed dynamically, instead of hard coding it into the shopcart.php each time this comment needs to be changed.

thanks :)
      
From: Encaps   Date: November 16 2009, 16:15
Thank you for your feedback.
I can provide brief intro for how to manage the e-mail confirmation text from the admin panel:
- copy admin/shopcart.php to admin/email.php
- edit admin/email.php and remove everything between
include("catalog_head.html");
and
include("html/pagination.html");

- add php logic to ask admin about the email text and save the text somewhere (text file, database table)
- add php code to extract saved text from shopcart.php

Something like this

From: Guest   Date: November 14 2009, 02:47
Say if I choose a category like 'landscapes' from the menu, then the category of 'landscapes' images is displayed. How can I have that name displayed in the heading on its own.
........... So a heading will only say 'LANDSCAPES' and nothing else.

Many thanks
Wayne
      
From: Encaps   Date: November 16 2009, 16:06
If you need to print out the category name, just use this code:
<?= $html["categ"]["title"] ?>
            
From: Guest   Date: November 17 2009, 05:29
perfect!
thanks mate

From: Guest   Date: November 09 2009, 19:02
Hi.I would like to be more complex search by category for example to select where to look for a product. How could I do that? 10x
      
From: Encaps   Date: November 10 2009, 09:29
So you need to customize the search form (to add categories), and "search($keywords_get)" function from core/catalog.ctl.php
            
From: Guest   Date: November 10 2009, 13:29
Can you help me or something?
                  
From: Encaps   Date: November 13 2009, 15:04
I guess you need to copy the categories dropdown
from admin/html/catalog_items.html into the search form, and add relevant logic into the search procedure from core/catalog.ctl.php
                        
From: Guest   Date: November 21 2009, 18:30
Yes but i dont know how :(
                              
From: Guest   Date: November 23 2009, 21:46
poti face un motor de cautare si sa aiba functia sa selectezi categoria unde cauti produsul. si sa o implementezi in script asta daca ai timp. multumesc
                                    
From: Guest   Date: November 23 2009, 21:47
can make a search engine and have the function to select the product category you are looking for. and implement a script that if you have time. thanks

From: Guest   Date: November 09 2009, 07:41
My self is Raj Khatri and i am a webdesigner so i don't have a knowledge of PHP.
I had download your free php album but i can not install them.
I want to purchase your php album because i am a webdesigner and i provide this service to my client.
For trial base i had download your free script but it does not work.
So tell me how can i install them.
      
From: Encaps   Date: November 09 2009, 15:13
Hello Raj,
there are series of howto-movies at encaps.net/howto/ to describe the install/configure processes.
Let me know where did you stuck


Encaps © 2005-2010 PHP Gallery | Live Demo | Free Download | Support Forum | How To | Contact
?>