RE: [PHP] @session_start generates a new session_id

2004-10-27 Thread Lizet Peña de Sola
I'll try that, thanks a lot. -Original Message- From: Reinhart Viane [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 12:49 PM To: 'Lizet Peña de Sola'; [EMAIL PROTECTED] Subject: RE: [PHP] @session_start generates a new session_id Instead of: ? $_SESSION['validlogin

RE: [PHP] @session_start generates a new session_id

2004-10-27 Thread Lizet Peña de Sola
? Tia, Lizet -Original Message- From: Reinhart Viane [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 12:49 PM To: 'Lizet Peña de Sola'; [EMAIL PROTECTED] Subject: RE: [PHP] @session_start generates a new session_id Instead of: ? $_SESSION['validlogin']=; $_SESSION

RE: [PHP] @session_start generates a new session_id

2004-10-27 Thread Lizet Peña de Sola
session_id($username); session_start(); Solved the problem... Thank you all for the replies... -Original Message- From: Lizet Peña de Sola [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 3:55 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] @session_start

RE: [PHP] @session_start generates a new session_id

2004-10-26 Thread Lizet Peña de Sola
not overriden. Any idea? Thanks a lot in advance. Lizet -Original Message- From: Greg Donald [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 6:18 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] @session_start generates a new session_id On Mon, 25 Oct 2004 15:59:18 -0400, Lizet Peña de Sola

[PHP] cant override session variables

2004-10-25 Thread Lizet Peña de Sola
Hi all, This is drving me insane... I have a logout script, logout.php: ? $_SESSION['validlogin']=; $_SESSION['username']=; $_SESSION['password']=; unset($_SESSION['validlogin']); unset($_SESSION['username']); unset($_SESSION['password']); session_unset();

RE: [PHP] @session_start generates a new session_id

2004-10-25 Thread Lizet Peña de Sola
How can I set session_auto_start On, I have a similar problem and I think it's because my web hosting has that feature off. -Original Message- From: Sadeq Naqashzade [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 19, 2004 11:47 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject:

RE: [PHP] Tidy installation problem in php 4.3.8

2004-09-09 Thread Lizet Peña de Sola
you know, thanks Lizet -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 12:42 PM To: Lizet Peña de Sola Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Tidy installation problem in php 4.3.8 Do you mean you installed tidy php module on your

RE: [PHP] Tidy installation problem in php 4.3.8

2004-09-09 Thread Lizet Peña de Sola
you need line: extension=tidy.so depending on your platform. Also make sure that the extension is in extension_dir (check php.ini). Then restart the webserver. -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 12:42 PM To: Lizet Peña

FW: [PHP] Tidy installation problem in php 4.3.8

2004-09-09 Thread Lizet Peña de Sola
Another reply... lizet -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 1:12 PM To: Lizet Peña de Sola Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Tidy installation problem in php 4.3.8 Lizet Peña de Sola wrote: Hello Marek, thanks

[PHP] Tidy installation problem in php 4.3.8

2004-09-08 Thread Lizet Peña de Sola
Hi all, I need to use tidy for cleaning up html in my project, our hosting company has php 4.3.8, so we need to install tidy and make the installation again. After several times, the configure and make commands replied no error, however, the phpinfo() doesn't show the package as installed and when

[PHP] Upload script not working

2004-08-23 Thread Lizet Peña de Sola
Hi all: I have the following script to upload files to the server, it works partially as only a few bytes of the file are uploaded, is the script wrong or am I missing some setting at the server? Tia, Lizet userfile=$_FILES['userfile']['tmp_name']; // $userfile_name is the original file name

RE: [PHP] Upload script not working

2004-08-23 Thread Lizet Peña de Sola
Hello Jones, thanks for looking at the code, will try the uploading without stripping the tags, I've tried with pdf files without success. Lizet -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, August 23, 2004 3:02 PM To: Lizet Peña de Sola; [EMAIL PROTECTED

RE: [PHP] Upload script not working

2004-08-23 Thread Lizet Peña de Sola
Hello again, tried to remove the last part and the script worked, it looks like strip_tags strips more than tags... Thanks a lot Lizet -Original Message- From: John Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, August 23, 2004 3:02 PM To: Lizet Peña de Sola; [EMAIL PROTECTED] Subject

RE: [PHP] Upload script not working

2004-08-23 Thread Lizet Peña de Sola
Thanks, I better check the file type first then... strip_tags on a PDF file is a bad idea. strip_tags() is only meant for text files that may contain HTML tags that you want to remove... ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Header() and POST data

2004-05-07 Thread Lizet Peña de Sola
Hi, I had the same problem, had to send parameters through POST to a second page I redirected to, I ended up using the curl library but I'm still facing a few troubles with it, it redirects the page, the parameters are sent through POST but the relative urls on the second page are taking the

[PHP] Php and curl, url not shown in an https request

2004-05-06 Thread Lizet Peña de Sola
Hi all, I'm trying to use the curl library to request a page through POST. The page is requested fine, the parameters are passed but the url that is shown in the browser is the url of the previous page, the page that is making the request and not the page that is shown in the redirection. ie: