[PHP] Include problems

2008-04-11 Thread GoWtHaM NaRiSiPaLli
Hi PHP Experts, I am writing a wrapper over some existing code and when I hoped that I almost successfully completed it, I ran into the wall. The wrapper file is in /var/www/sites/project/ as xyz.php and the file includes some of the files from various paths. Starting with == // Impor

Re: [PHP] Looks like a bug with Smarty

2008-01-18 Thread GoWtHaM NaRiSiPaLli
got the answer from you clive :) Thanks On Jan 18, 2008 1:02 PM, clive <[EMAIL PROTECTED]> wrote: > if ($question == 'php') >domail('phplist',$question); > > if ($question == 'smarty') >domail('smartylist',$question); > > > > Hi All, > > > > I using html_options smarty tag to output an

[PHP] Looks like a bug with Smarty

2008-01-17 Thread GoWtHaM NaRiSiPaLli
Hi All, I using html_options smarty tag to output an associative array in select drop down. Here a sample associative array: array(5) { ["CN-PEK-KEJ"]=> array(1) { [198]=> string(7) "TechTst" } ["IE-DUB-GAS"]=> array(2) { [177]=> string(10) "store room" [39]=> st

[PHP] Install syck on PHP4

2007-12-12 Thread GoWtHaM NaRiSiPaLli
I am trying to install php4-syck but there is no package for it on apt repository on ubuntu. So I got the .deb package and did #dpkg -i php4-syck.x.deb it installed the package and I restarted the apache webserver and tried to run syck_load() function. It throws me an error that the function is not

Re: [PHP] A SESSION Problem

2007-12-11 Thread GoWtHaM NaRiSiPaLli
Looks like the session Id is getting regenerated when it moves from http to https. Check the cookie PHPSID cookie for your domain is same both the pages and if not then you will have to carry forward the SID to every new page and set SESSION_ID to that value and start the session. Hope this works