[PHP] Re: https & sessions failing to persist

2004-05-01 Thread Luis Bernardo
Apache or IIS? CGI or ISAPI module? "Michael R. Wayne" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Upgraded our PHP installation from 4.1.2 to 4.3.4, scripts that > worked fine before are no longer doing so. The failure can be > traced to the fact that sessions are never bein

[PHP] [Fwd: Warning: could not send message for past 1 hour]

2004-07-19 Thread Luis Croker
    Hi...        Im trying to compile PHP 4.3.8 on Solaris 7 with apache 1.3.27.   First, I configure PHP using this  parameters: # ./configure --with-apache=../apache_1.3.27 --enable-versioning \ --without-mysql --with-sybase=/usr/local/freetds --without-gd \ --enable-track-vars --with-sy

[PHP] Compiling trouble.

2004-07-19 Thread Luis Croker
some paths ??? setenv LIBS_SHLIB -lbind setenv CFLAGS -I/usr/local/include setenv LDFLAGS -L/usr/local/lib setenv LIBS -lbind setenv LD_LIBRARY_PATH /usr/local/lib    Thanks. Regards. Luis Cróker. www.megared.net.mx ___ pub  1024D/5656330D - <[EMAIL PROTECT

[PHP] PHP Session Vars & Flash Movie

2007-12-17 Thread Luis Magaña
able to do so. Thank you very much for your help. Regards. - -- Luis Magaña Gnovus Networks & Software www.gnovus.com -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.7 (Darwin) iD8DBQFHZzXtqSchlMT6gK4RAjHRAJ4pU81dw8BpZBf7bhF5QS7mxRqMcQCaAtIu eTMSRMXsmddN0jvqEWUOlrw= =fSiN -END PGP

[PHP] pg_query and COPY in transaction

2006-07-18 Thread Luis Magaña
table gets deleted. I'm certainly lost on this one, is it a bug ?, am I doing something wrong ? (most likely I guess) Any help will be apprecciated. PHP: 5.1.2 PostgreSQL: 8.1.4 Apache: 2.0.55 Debian Linux with Kernel 2.6.16 -- Luis Magaña Gnovus Networks & Software www.gn

Re: [PHP] pg_query and COPY in transaction

2006-07-18 Thread Luis Magaña
s expected. thank you very much for your help. regards. Jochem Maas wrote: > Luis Magaña wrote: >> I have the following code: >> >> pg_query($conn,"BEGIN TRANSACTION; >> DELETE FROM codigo_postal; >> COPY >> codigo_postal(codigo_

Re: [PHP] pg_query and COPY in transaction

2006-07-19 Thread Luis Magaña
as it should be. Thank you for the help. Jochem Maas wrote: > Luis Magaña wrote: >> It is a PHP question because the Postgres querys do work, I ran them >> directly on the postgres server and there is no problem, but if you use >> pg_query then it does not work, and pg_query is

Re: [PHP] Coding Practice: Use global $var or pass in by refernce

2006-03-03 Thread Luis Magaña
I would go for: - you can create a new instance ("new DB") in every methode (but you usually only want a single DB-connection per script, and where do you pass config-data to access the DB?) or This way the code keeps well organized and about the use of only one connection I wouldn't worry

[PHP] how to change session timeout output text

2008-07-10 Thread Luis Cordova
Any hints, Encouragements, -- Luis Cordova -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how to change session timeout output text

2008-07-10 Thread Luis Cordova
wrote: > Luis Cordova wrote: >> >> A message "Session timeout! Please relogin again." appears after the >> session expires. >> >> I was looking in the php where can I: >>1. modify the above text message >>2. redirect after some seconds to an

[PHP] Question about PEAR::raiseError use in XML_RPC client

2004-01-26 Thread Luis Cruz
. class XML_RPC_Base { function raiseError($msg, $code) { include_once 'PEAR.php'; PEAR::raiseError(get_class($this) . ": " . $msg, $code); } } --- Luis A. Cruz <[EMAIL PROTECTED]> Web Project Manager Astaro <http://www.astaro.com> --- Outgo

[PHP] Re: Passing array from class to class produces more than one result...

2004-03-10 Thread Luis Mirabal
mmmh... i think its not coded the right way, first of all, you shouldn't put this: $this->setArray(@mysql_fetch_array($this->getResultID())); in the Select method, you should do it in your FetchArray method, every time it gets called, and return the value directly or false if there are no more ro

Re: [PHP] arrays, loops, vars and props

2004-03-10 Thread Luis Mirabal
i would do it this way function MyClass() { $this->myArray = range(0, 99); } luis. "Chris W. Parker" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] Jason Davidson <mailto:[EMAIL PROTECTED]> on Wednesday, March 10, 2004 12:25 AM said: > wo

[PHP] Re: what does this mean?

2004-03-10 Thread Luis Mirabal
the casting is as follows, any value distinct from zero, null or empty string is converted to true, else the it is converted to false "Harry Wiens" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > $this->styles['shadow'] = (boolean)$bool; >

[PHP] Re: Screen Res

2004-03-10 Thread Luis Mirabal
please post the code, so we can see the errors luis. "Res0b8b6" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > I am trying to get the users screen res into a var for php. And I have > the Javascript that gets the screen res. But when I try to put that

[PHP] current url function

2004-03-15 Thread Luis Mirabal
//$url .= $_SERVER['SCRIPT_NAME']; //if($querystring && !empty($_SERVER['QUERY_STRING'])) $url .= '?' . $_SERVER['QUERY_STRING']; if($querystring) $url .= $_SERVER['REQUEST_URI']; else $url .= $_SERVER['PHP_SELF']; return $url; } thanx in advance! luis. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] dbg extension...

2004-03-15 Thread Luis Mirabal
hey guys, i have a question on dbg extension, i want to get debug details using the functions from php, ie. dbg_get_profiler_results, but they return nothing... i am developing on windows using apache and php 4.3, any suggestions? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] current url function

2004-03-15 Thread Luis Mirabal
saje news:[EMAIL PROTECTED] > Luis Mirabal wrote: > > hey! i am working in an open source development, and have done a function > > that gives me the current url, but i need it to work always, everywhere, in > > every server with all browsers, could you tell me if you think it wi

[PHP] Re: Problem with mkdir() under windows.

2004-03-15 Thread Luis Mirabal
, you can do set_magic_quotes_runtime(0) beforegetting the directory name, so it won't be quoted, but if the problem is in get_magic_quotes_gpc(), you will have to do something like: if(get_magic_quotes_gpc()) stripslashes($dirname); luis. "Brian J. Celenza" <[EMAIL PROTECTED]&

Re: [PHP] Printing landscape

2004-03-15 Thread Luis Mirabal
tions with this function. ( These functions are only available under Windows 9.x, ME, NT4 and 2000. They have been added in PHP 4.0.4.) and you can do something about the phase of the moon too, look here :P http://www.phpclasses.org/browse/package/1201.html?download=targz Cheers, Luis. -- PHP Ge

Re: [PHP] dbg extension...

2004-03-16 Thread Luis Mirabal
yes, i found that the extension functions only works in debug sessions, so i replaced it by Xdebug, it is very cool, i recommend it! http://www.xdebug.org/ luis. "Tom Rogers" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Hi, > > Tuesday, March

[PHP] Re: Calculate

2004-03-16 Thread Luis Mirabal
from sql?? if you are doing: select ... count(date) ...from ... where ... do: select ... count(date) ...from ... where ... group by date luis. "Tommi Virtanen" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Hi! > > How I can calculate following: &

[PHP] mappath and unmappath function

2004-03-16 Thread Luis Mirabal
? thanx luis. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: $_FILE

2004-03-16 Thread Luis Mirabal
it is not $_FILE, it is $_FILES :P luis. "Bruno Santos" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Hello. > > I've read in a book that we can access several file properties (when > uploading a file) in two ways: > &g

[PHP] Re: Regular expression checker

2004-03-17 Thread Luis Mirabal
an excelent tool: The Regex Coach, its free and you can grab it from http://weitz.de/regex-coach/ and its available for windows and linux! luis. <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Hello all, > > For a while I tried in vain to find a decent reg

[PHP] js date picker

2004-03-17 Thread Luis Mirabal
anyone knows a good javascript date picker, i need it to be compatible with all major browsers thx, luis. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Stupid question

2004-03-17 Thread Luis Mirabal
function (Constructor) function test() { $this->a = 'value for a'; $this->b = 'value for b'; $this->c = 'value for c'; $this->set(); } //Class function function set() { $sum = $this->a . $this->b

[PHP] Re: js date picker

2004-03-17 Thread Luis Mirabal
l be happy to help with PHP-related questions. As for JavaScript > stuff, use Google to find a good resource. :-) > > Luis Mirabal wrote: > > > anyone knows a good javascript date picker, i need it to be compatible with > > all major browsers > > > > thx, >

[PHP] Re: Stupid question

2004-03-17 Thread Luis Mirabal
as Chris W. Parker noticed, there is a little mistake in the example above posted by me, it says: //Class function function set() { $sum = $this->a . $this->b . $this->c; } and it should say: //Class function function set() { $this->sum = $this->a . $this->b . $this-&g

[PHP] php + mysql + japanese???

2004-04-02 Thread Luis Mirabal
hi! i have developed a web site in php using mysql 3.x and have to implement it in japanese, it seems that i have to use unicode/UTF-8, but i am having problems with mysql... anyone could help or anyone knows of any resource that helps in doing this? thanx in advance, luis -- PHP General

[PHP] Problem with PHP Curl support and Apache

2004-11-24 Thread Luis Lebron
fined symbol: dbm_firstkey" I tried googling but haven't found any relevant info yet. Luis R. Lebron Project Manager Sigmatech, Inc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] anyone has successful to use a PHP SoapClient talking with .Net Web services?

2005-01-18 Thread Luis Lebron
I recently had to get one to work. The key in my case was building the soap message for the paramaters instead of the standard paramaters array something like $parameters = " Username Password "; Also, I am using the nusoap libra

[PHP] glob behavior on OSX

2005-09-13 Thread Luis Magaña
lex regexp does not work in OSX. PHP is 4.3.11 OSX is 8.2.0 Thanks -- Luis Magaña Gnovus Networks & Software www.gnovus.com signature.asc Description: This is a digitally signed message part

Re: [PHP] string tokenization

2005-09-13 Thread Luis Magaña
Thanks babu. - To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre. -- Luis Magaña Gnovus Networks & Software www.gnovus.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MySQL previous next query

2001-02-05 Thread Luis Lebron
om table order by sb_num where $sb_num>=++sb_num limit 1 Previous Select 'field1', 'field2' from table order by sb_num desc where $sb_num<=--$sb_num limit 1 Luis [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTE

Re: [PHP] Problems with remote include

2003-10-29 Thread Pablo Luis Zorzoli
El mi? 29-10-2003 a las 16:49, Evan Nemerson escribió: > Don't be insulted he asked. You'd be amazed at the level of idiocy around > here, and you're not known on the list... He meant no disrespect. > > NOOO..i'm sorry if MY answer seemed ugly..i'm impressed by the amount of help i received. By n

Re: [PHP] Problems with remote include

2003-10-29 Thread Pablo Luis Zorzoli
El mi? 29-10-2003 a las 17:38, Marek Kilimajer escribió: > Can you connect from your server to the other server? > yes Marek, both files are under the same domain(and server) now. I'm using the remote inclusion, because when it works they'll be on separate domains. Pablo -- PHP General Maili

[PHP] Running two scripts from HTML

2001-05-22 Thread Luis E. Suarez
On an HTML page, I need to be able to do call two scripts from a submit link or button. So, I have a link like this: http://www.mysite.com/script1.php?data=1";>Click here Simultaneously at the click of the link I need to run a second script. What's the best approach? -- PHP General Mailing

[PHP] getting number of days in agiven month

2001-03-26 Thread Juan Luis Baptiste
Hi, Is there a way to find out the mumber of days of a given month? for example a function that I pass the month number i.e. 02 (February) and it returns 28? thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] Re: call to unsupported or undefined function mysql_connect()

2001-08-14 Thread Luis Brito (AYUDANTE)
On Tue, 14 Aug 2001, Luis Brito wrote: Hi at all. > > I get this problem, I use a sparcstation 20 and my system is debian > potato, I installed php3,php-mysql and mysql I did with the command > apt-get install. > Then I do not understand why that happen?, because I thi

Re: [PHP] Instalation

2001-08-14 Thread Luis Brito (AYUDANTE)
Hi Roman, I think that the follow page can help you: http:// jips.kipelhouse.com/linux/apache/ssl/ Try . On Tue, 14 Aug 2001, Roman wrote: > Help me. I have RED HAT Linux 7.0 and I want install Apache web server with > php and mysql support. How ? > > I have : apache_1.3.20.t

RE: [PHP] software catalog

2005-03-09 Thread Ariceaga, Luis TQM
Well... I see in HotScripts that there is a category named "E-Commerce" and inside there is a sub-category named "Shopping Carts"... [ http://www.hotscripts.com/PHP/Scripts_and_Programs/E-Commerce/Shopping_C arts/index.html ] Good Luck! /Luis -Original Message- From: R

RE: [PHP] incrementing a number from a text file

2005-03-11 Thread Ariceaga, Luis TQM
Is it possible to let the OS handle the collisions? For example: $last_value = system('cat counter.txt', $retval); $last_value++; $result = system('echo $last_value > counter.txt', $retval); ...just a suggestion! Regards /Luis -Original Message- From: Richa

Re: [PHP] Newbie question - current date - time

2007-11-14 Thread Luis Lorenzo - Quadricula
Hi! Look at this: http://es.php.net/manual/es/function.date.php [EMAIL PROTECTED] escribió: Hi Folks, Newbie question : - how do I get and display the current date? - how do I get and display the current time? I see the getdate function - but I'm not sure if this is the right function or

[PHP] Oracle + PHP

2004-01-29 Thread Luis Moran Ochoa
Hello I have Oracle 9 + RedHat 7 + PHP 4.3.4 + Apache 1.3.29. I've compiled apache and php I've compiled PHP using the documentation and activating OCI. I've build the typical script for starting apache, it's like this: $ORACLE_HOME=blablahblah... more oracle variables c

Re: [PHP] Oracle + PHP

2004-01-29 Thread Luis Moran Ochoa
These are the exact details... /usr/oracle permissions 750 owner oracle.oinstall apache belongs to oinstall. script permissions in /etc/init.d/apache --> 755 ORACLE_SID=OWEB ;export ORACLE_SID; ORACLE_HOME=/usr/oracle/product; export ORACLE_HOME; TNS_ADMIN=/usr/

[PHP] Re: [PHP-DB] Re: [PHP] Oracle + PHP

2004-02-02 Thread Luis Moran Ochoa
Ok, thanks I will try it. Michael Mauch wrote: Luis Moran Ochoa wrote: ORACLE_SID=OWEB ;export ORACLE_SID; ORACLE_HOME=/usr/oracle/product; export ORACLE_HOME; TNS_ADMIN=/usr/oracle/product/network/admin; export TNS_ADMIN; ORACLE_BASE=/usr/oracle

[PHP] Re: [PHP-DB] Re: [PHP] Oracle + PHP

2004-02-04 Thread Luis Moran Ochoa
IT WORKS. Exactly, I need to unset the locale variables With that It works without problems. Thank you all. in the start script to see which variables are set. Boot, move /tmp/apache-start to /tmp/apache-boot, stop apache, start apache from your root shell. "diff -u /tmp/apache-boot /tmp/ap

[PHP] Why PHP reads local php.ini?

2003-04-04 Thread Jose Luis Pérez Ruiz
my explanation is clear enough. José Luis Pérez Ruiz Arrakis Servicios y Comunicaciones S.L.U. Edificio Expo, C/ Inca Garcilaso s/n Isla de la Cartuja 41092 Sevilla Telefono: 955 550 509 ** Noticia legal Este mensaje electrónico contiene informa

RE: [PHP] Why PHP reads local php.ini?

2003-04-04 Thread Jose Luis Pérez Ruiz
What´s wrong with my question?, can anybody help me? -Mensaje original- De: Jose Luis Pérez Ruiz [mailto:[EMAIL PROTECTED] Enviado el: viernes 4 de abril de 2003 10:57 Para: [EMAIL PROTECTED] Asunto: [PHP] Why PHP reads local php.ini? I mean than when you run PHP in CGI mode

[PHP] php & JavaScript

2002-06-24 Thread Luis Miguel N. Tavora
in advance Luis PS- Btw, I use an Apache server on a RH72 machine -- Luis Miguel N. Távora [EMAIL PROTECTED] Message sent via Sylpheed sylpheed-claws.sourceforge.net -- -- PHP General Mailing List (http://www.php.net/) To u

[PHP] GD Library

2001-05-07 Thread José Luis Malagón V.
Hi, I need generate graphics with php. I know GD Library help me but I don´t know how do I install it. Can somebpdy help me ? Thanks in advance for your help, Jose Luis.

[PHP] .php extension

2002-05-28 Thread Luis Miguel N. Tavora
p will be much appreciated! Thx in advance Luis -- Luis Miguel N. Távora [EMAIL PROTECTED] Message sent via Sylpheed sylpheed-claws.sourceforge.net -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Expiration problem

2001-11-13 Thread Gustavo Luis Pereira Verly
Hi everybody, this is my first time writing in this list. I have the next problem: I have a page called login.php and when I log in, there's a new page who receive the user and the password, and this page is called main.php This page, check if the user have a valid account a

[PHP] EXPIRATION PROBLEM; PLEASE HELP ME !!!

2001-11-13 Thread Gustavo Luis Pereira Verly
- Original Message - From: "Gustavo Luis Pereira Verly" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Tuesday, November 13, 2001 2:26 PM Subject: [PHP] Expiration problem > Hi everybody, this is my first time writing in this list. > &

[PHP] Question

2001-08-22 Thread Gustavo Luis Pereira Verly
Hello, I have the next problem and I don't know how can I have the solution: I wan to read a socket output, and format the lines, but first: Can I make some kind o "sizeof" in the buffer that I'm receiving? That's because the read of the socket it's very slow; and if I read for example 256 for t

[PHP] I need to execute PHP scripts from Apache/mod_php using the owner of scripts as user/group for execution.

2004-09-03 Thread Luis Miguel González Fernández
I need to execute PHP scripts from Apache/mod_php using the owner of scripts as user/group for execution. I have included the 'User' and 'Group' directives into the virtualhost declaration in my httpd.conf but scripts keep on executing with user/group from Apache. Urgent help needed. Thanks. Qki

[PHP] How can i force PHP scripts been executed using their owner user/group with Apache and PHP loaded as module ?

2004-09-03 Thread Luis Miguel González Fernández
How can i force PHP scripts been executed using their owner user/group with Apache and PHP loaded as module ? Now my scripts use Apache`s user/group (wwwrun/www in my ditribution). I've included User an Group directives in the virtualhost configuration. I need any kind of help refered to this issu

[PHP] ayuda

2005-03-13 Thread Pedro Luis Cruz Riguetti
-- como pueddo hacer para salir de esta lista --- Banco de Crédito BCP - Dedicados a hacerte la Banca más simple. Visita nuestra Banca por Internet http://www.viabcp.com -

Re: [PHP] Re: bulk emailer

2005-03-14 Thread Pedro Luis Cruz Riguetti
quitenme de la lista porfavor quiero salir de aqui -- --- Banco de Crédito BCP - Dedicados a hacerte la Banca más simple. Visita nuestra Banca por Internet http://www.viabcp.com --

Re: [PHP] help for me about session

2005-04-23 Thread Pedro Luis Cruz Riguetti
-- mierda carajo saquenme de sta lista de mierda q llema mi correo de huevadas rapido carjo.nierdas --- Banco de Crédito BCP - Dedicados a hacerte la Banca más simple. Visita nuestra Banca por Internet http://www.viabcp.com

Re: [PHP] Change Object Type

2005-04-25 Thread Pedro Luis Cruz Riguetti
-- mierdas saquenme de aca carajo --- Banco de Crédito BCP - Dedicados a hacerte la Banca más simple. Visita nuestra Banca por Internet http://www.viabcp.com

Re: [PHP] Error en PHP

2005-04-25 Thread Pedro Luis Cruz Riguetti
como puedo salir de sta lista q esta llenando mi correo. -- --- Banco de Crédito BCP - Dedicados a hacerte la Banca más simple. Visita nuestra Banca por Internet http://www.viabcp.com

Re: [PHP] array_diff odities

2005-05-18 Thread José Luis Palacios Vergara
-unsubscribe-digest- - Original Message - From: "Pablo Gosse" <[EMAIL PROTECTED]> To: "PHP" Sent: Wednesday, May 18, 2005 11:03 PM Subject: [PHP] array_diff odities Howdy folks. I'm running into something strange with array_diff that I'm hoping someone can shed some light on. I have t

Re: [PHP] System Call Troubles

2005-05-19 Thread José Luis Palacios Vergara
[EMAIL PROTECTED] - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; Sent: Thursday, May 19, 2005 12:57 PM Subject: Re: [PHP] System Call Troubles > Michael Stearne wrote: > > I am having the strangest problem using system()

[PHP] slow script

2004-03-27 Thread Luis Gustavo Faccioni Barcellos
Hi all. I am developing a system using php 4.3.2 + apache 1.3.29. The db is a mssql msde (we’re going to mysql, but not yet due to some internal reasons). All things are running in a local, standalone station, because we had to use the app on line and off line states. The off-line one should h

<    1   2