Re: [PHP] Session timeout

2007-12-13 Thread Victor Matherly
configuring php.ini. I know i will have to write code to do whatever when the session expires... Thank you in advance -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Victor J. Matherly Technical Services Wave Communications, Inc http://www.wave

Re: [PHP] nested objects

2007-12-07 Thread Victor Matherly
Thanks that fixed it. That was so simple no wonder I was banging my head on the wall :-). - Original Message - From: Cesar D. Rodas [EMAIL PROTECTED] To: Victor Matherly [EMAIL PROTECTED] Sent: Friday, December 7, 2007 2:37:23 PM (GMT-0500) America/New_York Subject: Re: [PHP] nested

Re: [PHP] nested objects

2007-12-07 Thread Victor Matherly
Actually it is academic intro to OO programing, the overkill html was just helping me understand the concept. Now I can put it to good use :-). - Original Message - From: Jochem Maas [EMAIL PROTECTED] To: Victor Matherly [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Friday

[PHP] nested objects

2007-12-07 Thread Victor Matherly
; }//end setContent function } //end TableCell class ? Victor J. Matherly Technical Services Wave Communications, Inc http://www.wave-communications.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Why create_element function always return false?

2007-05-04 Thread Victor
domxml_version() ). OS is Windows XP. Would someone help me ,please? Thanks a lot. Victor. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] wsdl cache?

2005-08-15 Thread Victor Alvarez
not able to update it! Could anybody explain me why and how could I avoid this problem? Thanks. Kind Regards, Victor.

[PHP] how to install phpize and php-config?

2005-07-25 Thread Victor Alvarez
/php? Thanks in advance, Victor.

[PHP] php5 built-in soap - apache performance wsdl generation

2005-07-14 Thread Victor Alvarez
it. I gave a try to Webservice Helper (jool.nl) and I didn't find the result convenient for my purpose. Is there any simple and useful tool to automatic generate the wsdl? I finally did it manually from scratch. Thank you very much in advance. Kind regards, Victor.

Re: [PHP] DOM: browse childnodes but not recursively

2005-05-30 Thread Victor Spång Arthursson
. 3. Foreach item in the list I check if it has any children. 4. If so, I do the recursive call, with the list of children as input. So far so good, but when I come to the second loop, when the input is the list from the childNodes, everything stops working... Sincerely Victor

[PHP] DOM: browse childnodes but not recursively

2005-05-27 Thread Victor Spång Arthursson
) that gives me the elements with id 51-56, and a length of 6. Really really thankful for any input on the matter Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Impossible to list attributes of xml-element?

2005-05-26 Thread Victor Spång Arthursson
me the only element in the result in the form of a domelement. This domelement should have a lot of attributes, but I cant find no way to get some kind of list over those attributes, to work further with. Could someone please point me in the same direction? Sincerely Victor -- PHP General

[PHP] page redirect question

2004-11-09 Thread Victor C.
Hi, Is there anyway to redirect php page other than using HEADER(LOCATION:URL) ? Header can only be called if nothing is written to HTML... Is there anyway around it? Thanks, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php array question

2004-11-01 Thread Victor C.
Hi, I have a line of php that I don't really understand. foreach($this-orders as $OrderID = $value) { echo $OrderID.BR; $OrderObject =$this-orders[$OrderID=$value]; echo $OrderObject-OrderID.--all the sameBR; } I know that $this-orders is an array of order objects. the result i get

[PHP] Re: php array question

2004-11-01 Thread Victor C.
But why would the this line generate different OrderID on lines 1 and 3? Ben Ramsey [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Victor C. wrote: $OrderObject =$this-orders[$OrderID=$value]; This line is confusing. $OrderID=$value is either a typo or is just plain wrong

[PHP] Re: php array question

2004-11-01 Thread Victor C.
PROTECTED] Ben Ramsey wrote: Victor C. wrote: $OrderObject =$this-orders[$OrderID=$value]; This line is confusing. $OrderID=$value is either a typo or is just plain wrong. It looks like what it's meant to say is: $OrderObject = $this-orders[$OrderID]; But this will just set

[PHP] Re: php array question

2004-11-01 Thread Victor C.
Hi Ben, I tried your portion of code and find out what was wrong... Apparently I used in adding order to the array and that was messing things up... Everything is working now. Thanks for all the help Victor C. [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I did a print_r

[PHP] PHP and send XML

2004-10-28 Thread Victor C.
Hi, I'm trying to pass XML file from Site A to Site B for Site B to parse. Site B is maintained by other company, so I only need to worry about sending over the XML file. I've been hinted that fsockopen() can do the job. I've done the following through PHP: $port=80; $host=134.134.134.134

[PHP] Millisecond in PHP

2004-10-27 Thread Victor C.
Hi, I'm trying to get PHP to display the millisecond of current time. I can't find that option in Date().. Any hints? Thanks a lot -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Millisecond in PHP

2004-10-27 Thread Victor C.
Thank you all for answering! Really appreciate it. John Nichel [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Victor C. wrote: Hi, I'm trying to get PHP to display the millisecond of current time. I can't find that option in Date().. Any hints? Thanks a lot http://us4

[PHP] Timezone

2004-10-27 Thread Victor C.
Is there a way to get PHP to display the full name of time zone? date(t) only displays in the format of 'EDT', 'PDT', etc.. But I need the full name of the timezone, ie. Pacific daylight saving time. I know I can hard code all of these using switch statemetns. I'm just wondering if there is a

[PHP] file upload

2004-10-25 Thread Victor C.
Hi, I'm trying to submit a file from index.php to index2.php. I know how to do file upload in PHP. On index.php I have: FORM ACTION=index2.php METHOD=POST ENCTYPE=multipart/form-data INPUT TYPE=file NAME=myfile SIZE=30 INPUT TYPE=submit NAME=Upload File /FORM The next page would only need to

Re: [PHP] file upload

2004-10-25 Thread Victor C.
, at least you SHOULDN'T. Just think about what you're asking for, you want to download a file from a users computer, without them knowing about it. Major security/privacy issues there that browsers try to prevent. Chris Victor C. wrote: Hi, I'm trying to submit a file from index.php

Re: [PHP] file upload

2004-10-25 Thread Victor C.
. Just 2 examples. And, you could even POST the file from one to the other. That solution seems a bit icky to me, but it all really depends on what you need. Pulling is generally easier than pushing. Chris Victor C. wrote: Thanks for answering Chris.. What if I want to send a file from my

Re: [PHP] how to execute a remote command from php [done]

2004-09-28 Thread Victor Alvarez
- Original Message - From: Sethi, Samir (IDS DMDS) [EMAIL PROTECTED] To: Victor Alvarez [EMAIL PROTECTED] Sent: Monday, September 27, 2004 5:47 PM Subject: RE: [PHP] how to execute a remote command from php Exactly, I had to generate keys for nobody and now I am able to execute remote

[PHP] Best way to save preferences?

2004-09-26 Thread Victor Spång Arthursson
Which is the best way to save preferences (for a site) to make them easily accessable for changes? What I want is a way to save arrays and read them in again without having to use a database Thankful for suggests, sincerely Victor -- PHP General Mailing List (http://www.php.net

[PHP] php, mySQL query character problem

2004-09-22 Thread Victor C.
... the value i have for $email is from: $email=explode(@,$emailAddress); $email=$email[0]; Thanks, Victor C. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] very basic php mysql question

2004-09-20 Thread Victor Saldaña D.
On Mon, 20 Sep 2004 15:17:33 -0700, AMC [EMAIL PROTECTED] wrote: ? php change that for ?php and try again -- Victor Saldaña D. User #330054 counter.li.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] syntax questoin

2004-09-16 Thread Victor C.
Hi, I just started with PHP. (I used to work on ASP a lot) What does the syntax .= do? i see a line of code that says $Msg .= Test is complete I'm thinking it means concatenate $Msg with Test is complete and then store the new string into $Msg Am I right? Thanks. -- PHP General Mailing

[PHP] usage stats

2004-09-13 Thread Victor Saldaña D.
hi people, i need to found usage stats for a paper in my work. i found some stats, but the method is not very strong. any link please -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Users of RDBMS

2004-09-08 Thread Victor Saldaña D.
On Wed, 8 Sep 2004 12:01:55 -0700 (PDT), Pahlevanzadeh Mohsen [EMAIL PROTECTED] wrote: Dears, I need to create user for MySQL. Please guide me.. Please RTFM http://dev.mysql.com/doc/mysql/en/Adding_users.html -- Victor Saldaña D. -- PHP General Mailing List (http://www.php.net

Re: [PHP] PHP5, XPath and count()

2004-07-24 Thread Victor Boivie
at the , which I think is strange. It escapes the to lt; and to gt;, but not to amp;. It would be better if it escaped none or all entites that can do harm. Or what do you think? regards, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP5, XPath and count()

2004-07-20 Thread Victor Boivie
DOMXpath($dom); var_dump($xpath-query(count(/catalog/cd)-item(0)); ... returns NULL. Any ideas? Thanks in advance, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Want to save png to file

2004-07-19 Thread Victor Spång Arthursson
transparent /.victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] resize transparent png - impossible?

2004-07-19 Thread Victor Spång Arthursson
Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Transparent png and TrueColor?

2004-07-19 Thread Victor Spång Arthursson
Seems like the problem I'm experiencing with transparent png-files are that they are in TrueColor - is it not possible to create a trueColor-file and make it transparent? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Want to save png to file

2004-07-16 Thread Victor Spång Arthursson
2004-07-08 kl. 06.25 skrev Wudi: int imagepng ( resource image [, string filename]) Back on track again! What I don't know is how to save the file - do I read the datastream from imagepng and then create a file and write the stream to it? Sincerely Victor -- PHP General Mailing List

[PHP] Want to save png to file

2004-07-06 Thread Victor Spång Arthursson
the stream to a file, the transparency disappears Please please please somebody help! Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Resize an image with transparency

2004-06-28 Thread Victor Spång Arthursson
in the finished image, the one for output, become transparent as well, which is not what I want So, please, deadline before vacation, help if you know! Sincerely Victor Spng Arthursson / Denmark-Sweden -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Alternative to freetype?

2004-06-03 Thread Victor Spång Arthursson
Hi! Since it's almost impossible to find a web server which has freetype installed, I wonder which the alternatives are to put text on an image? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] strange urlencode/decode problem

2004-04-21 Thread Victor Spång Arthursson
And they occur even if I don't urlencode at all Why!?!?!?!? Sincerely Victor Spng Arthursson - Copenhagen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] function for backing up mysql

2004-04-14 Thread Victor Spång Arthursson
Hi! Wonder if anyone knows if there somewhere out there are any good functions that streams out data from mysql as a sql-file, like phpmyadmin does? The best would be one which I told which database and which tables to dump, and which directly stared streaming the data Sincerely Victor

Re: [PHP] function for backing up mysql

2004-04-14 Thread Victor Spång Arthursson
the first to want this, I thought that there perhaps were some good scripts out there to use. Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] function for backing up mysql

2004-04-14 Thread Victor Spång Arthursson
? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SNMP PLEASE HELPP!!!!!!!!!!

2004-03-30 Thread Victor
? $a = snmpwalk(216.18.74.170, public, ); for($i=0; $i551; $i++) { print $a[$i]; print br; } ? This is my code and i recieve a huge list. Some of it i understand but i can't understand the OID part and all the ips there. Can you please help me Thanks -- PHP General Mailing List

[PHP] Major problems trying to use load data local infile

2004-02-24 Thread Victor Spång Arthursson
(output.txt)) . ' INTO TABLE table FIELDS TERMINATED BY ' .addslashes('\t') . ' ESCAPED BY '\\' LINES TERMINATED BY ' . '\r' . '; echo $strSQL; mysql_query($strSQL) or die (mysql_error()); ? Would be very thankful if anyone had any input on this, sincerely Victor Spng Arthursson -- PHP General Mailing

[PHP] PDFlib, transparency and TIFF images

2004-02-04 Thread Victor Spång Arthursson
? Will this, if so, require two image files per image instead as one? Hope this is not OT, if so, i apologize Sincerely Victor Spng Arthursson Sweden / Denmark -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regexp help (simple)

2004-01-22 Thread Victor Spång Arthursson
=12345 Sincerely: Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regexp help (simple)

2004-01-21 Thread Victor Spång Arthursson
: 12345 So, is there any way I can set the encoding on the incoming values, which will come from url's and databases, so that they don't fuck up? Sincerely, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regexp help (simple)

2004-01-20 Thread Victor Spång Arthursson
abc1234 ABC12345-1 ABC12345-01 I would also like to split them into an array consisting of 2 elements; [0] = the first 2 or 3 letters [1] = the rest Example: string = ab12345 [0] = ab [1] = 12345 string = åäö1234-66 [0] = åäö [1] = 1234-66 Lots of thanks in advance, sincerely Victor -- PHP General

Re: [PHP] connecting PHP to MS Access

2004-01-20 Thread Victor Spång Arthursson
/LOAD_DATA.html Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: XML, strings and foreign (swedish/danish) characters

2003-12-04 Thread Victor Spång Arthursson
2003-12-03 kl. 11.18 skrev Victor Spng Arthursson: Temporarely solved the problem using substring to trim the crap-chars away, but I'ld prefer to solve it in a more beautiful way, but perhaps this behaviour is a bug and therefore not possible to solve in any other way But do we think it works

Re: [PHP] Re: XML, strings and foreign (swedish/danish) characters

2003-12-04 Thread Victor Spång Arthursson
Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: XML, strings and foreign (swedish/danish) characters

2003-12-03 Thread Victor Spång Arthursson
); $xml = utf8_encode($xml); echo $xml; makes the string ?xml version=1.0 encoding=utf-8? become ?xml version=1.0 encoding=utf-8? And the crap in fron of the string, which seems to come from nowhere, makes the parser complain about not well formed markup in the xml-source Regards, Victor -- PHP

Re: [PHP] Re: XML, strings and foreign (swedish/danish) characters

2003-12-03 Thread Victor Spång Arthursson
2003-12-02 kl. 22.08 skrev Manuel Lemos: The code // Prepare the content of the xml-file to go to the xsl-parser $xml = str_replace(empty/, $tempxml, $xml); $xml = trim($xml); $xml = utf8_encode($xml); echo $xml; makes the string ?xml version=1.0 encoding=utf-8? become ?xml version=1.0

Re: [PHP] Re: XML, strings and foreign (swedish/danish) characters

2003-12-03 Thread Victor Spång Arthursson
2003-12-03 kl. 10.22 skrev Victor Spng Arthursson: makes the string ?xml version=1.0 encoding=utf-8? become ?xml version=1.0 encoding=utf-8? Temporarely solved the problem using substring to trim the crap-chars away, but I'ld prefer to solve it in a more beautiful way, but perhaps

[PHP] XML, strings and foreign (swedish/danish) characters

2003-12-02 Thread Victor Spång Arthursson
, or should I simply resign and try with ASP instead? Very thankful for any help that points in the right direction Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include-problem

2003-12-01 Thread Victor Spång Arthursson
??? --- I've also tried with a $fp = readfile(http) with the same result, which is output of the echo-statement in the remote file which I am expecting to be evaluated remotely. How can I do to include the PHP-script and have it to be ran before it is included? Sincerely Victor -- PHP General Mailing

Re: [PHP] easy and simple way to read xml into array

2003-11-18 Thread Victor Spång Arthursson
, couldnt anyone please bring some clarity into this matter? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] easy and simple way to read xml into array

2003-11-17 Thread Victor Spång Arthursson
Hi! Need to read a xml-file into an array, but searching around I havent found a way that's easy and simple Arent there an easy way in PHP to accomplish this? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] XML and PHP

2003-11-06 Thread Victor Spång Arthursson
, and meanwhile documents are edited they are, until finished, going to be saved as xml-documents on the server. Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: XML and PHP

2003-11-06 Thread Victor Spång Arthursson
in Flash, which can open nodes like parent.nextsiebling.nextsibling Anyone have an idea? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] replace special chars

2003-11-05 Thread Victor Spång Arthursson
). I'ld like to have the double qoutes replaced with something else ;) There could be other strange characters as well that needs to be replaced, so some sort of universal function would be really nice to get tips on ;) Sincerely Victor -- PHP General Mailing List (http://www.php.net

Re: [PHP] replace special chars

2003-11-05 Thread Victor Spång Arthursson
2003-11-05 kl. 16.07 skrev Pavel Jartsev: Try htmlspecialchars() and/or htmlentities(). htmlentities() did it best! Thanks, /.v -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] fetch entire mysql-result to an array immediately

2003-10-15 Thread Victor Spång Arthursson
Is that possible? The mysql_fetch_array fetches the result by one row each time, but I dont want to iterate through a result but only just fetch it right away Regards Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] provide flag -X when connecting to mysql

2003-10-13 Thread Victor Spång Arthursson
? Best regards from Copenhagen/Malmoe Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] provide flag -X when connecting to mysql

2003-10-13 Thread Victor Spång Arthursson
2003-10-13 kl. 16.39 skrev Marek Kilimajer: No, it is not. But there are plenty of classes that can do it for you. Can you recommend any? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
Is it possible? I have a file that takes 5 minutes to run, and I would like to be able to start it when loading a page. But I can't include it because it forces the browser to timeout exec(script.php) doesn't seem to work Sincerely Victor -- PHP General Mailing List (http://www.php.net

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
måndagen den 22 september 2003 kl 14.31 skrev Jay Blanchard: exec(php script.php); will run the script. How does this look on a OSX/UNIX system? Can the path to php be found in a system variable, for convinience and portability of the script? Sincerely Victor -- PHP General Mailing List (http

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
/bin/php. But how do I make the call exec(/usr/local/php/bin/php process1.php); so that the page from which the call is made doesnt wait for the result but instead just continues? Sincerely, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
-server using exec(php script.php args NUL) ;) Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
Ok, it works fine on my development server with Mac OS X. But the hosting server seems to be WinNT, and on this it doesnt work. Anyone who can help me with some standard paths to php.exe? c:\php\ Doesnt work ;) Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Start php-script with exec()?

2003-09-22 Thread Victor Spång Arthursson
php OR asp. I quickly thanked and hung up. So now the question stands to you folks on this list ;) Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] posix_kill process group

2003-08-10 Thread Victor
Hi. I am trying to use posix_kill(0, $signo); to signal children forked by the parent. All children seem to be in the processgroup of the parent, but sending either 0 or -10 does not seem to signal the children at all. What am I doing wrong? I even tried setting the process group (didn't

[PHP] php/GD/t1lib problem

2003-03-11 Thread Victor Spång Arthursson
: Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Is this possible? Group related results from mysql to one field

2003-03-06 Thread Victor Spång Arthursson
for the same file Is this possible to achieve? Many many thanks to the one who can give me some input! Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP on IIS session problems

2003-03-03 Thread Victor Stan
I get these errors from a simple session_start(); script. Warning: session_start() [function.session-start]: open(/tmp\sess_f4aa3ef3c537bb6327d5e7b991e91be7, O_RDWR) failed: No such file or directory (2) in c:\inetpub\wwwroot\picoblog\admin.php on line 2 Warning: session_start()

RE: [PHP] PHP on IIS session problems

2003-03-03 Thread Victor Stan
-Original Message- From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:23 AM To: Victor Stan; [EMAIL PROTECTED] Subject: Re: [PHP] PHP on IIS session problems I get these errors from a simple session_start(); script. Warning: session_start() [function.session-start

RE: [PHP] PHP on IIS session problems

2003-03-03 Thread Victor Stan
K, thanks, I tried stopping just the web sites from the control panel, but I guess I had to stop the whole thing and restart. - Vic -Original Message- From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 11:07 AM To: Victor Stan; [EMAIL PROTECTED] Subject: Re

RE: [PHP] HELP PLEASE ! Need PHP Advice !!!

2003-02-27 Thread Victor Stan
First of all, are they paying you to automate or to repurpose the content for the web? Taking a page designed for print and then automating it into a page for the web is the wrong approach, your problem is not technical it is a design problem. Technically it is easy, I think, does Quark not have

[PHP] Best way to create a preference-file?

2003-02-13 Thread Victor Spång Arthursson
be possible to update the file in an easy way, that is, not rewrite it but update it… Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] any windows php developers out here?

2003-02-09 Thread Victor
[mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 8:58 PM To: 'Victor'; [EMAIL PROTECTED] Subject: RE: [PHP] any windows php developers out here? So I guess I al looking to finding out what I need to configure IIS to to get the ISAPI module to work, etc. 1. Unzip the php .zip file

RE: [PHP] any windows php developers out here?

2003-02-09 Thread Victor
So I guess I al looking to finding out what I need to configure IIS to to get the ISAPI module to work, etc. 1. Unzip the php .zip file to C:\php\ 2. Copy c:\php\sapi\php4isapi.dll to c:\php\php4isapi.dll 3. Ensure the user IIS runs as, generally IUSR_computer_name, has read permissions to

[PHP] any windows php developers out here?

2003-02-08 Thread Victor
Hello, I am wondering if any of you got a reliable php and MySQL installation (MySQL is easy) I am mostly wondering if there is a point in tying to use windows as a development platform for PHP. I have a nice and working red hat 8.0 installation, but I did an upgrade from 7.3 and now apache

RE: [PHP] any windows php developers out here?

2003-02-08 Thread Victor
al looking to finding out what I need to configure IIS to to get the ISAPI module to work, etc. -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 6:27 PM To: 'Victor'; [EMAIL PROTECTED] Subject: RE: [PHP] any windows php developers out

RE: [PHP] any windows php developers out here?

2003-02-08 Thread Victor
How do I disable apache 2.0? -Original Message- From: Jason Sheets [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 6:33 PM To: Victor Cc: [EMAIL PROTECTED] Subject: Re: [PHP] any windows php developers out here? You can install PHP + Apache 1.3 on Windows pretty easily

RE: [PHP] How to uncompress PHP

2003-02-08 Thread Victor
I think it's tar -xvf name -Original Message- From: —Ñ ŒbŒQ [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 8:26 PM To: [EMAIL PROTECTED] Subject: [PHP] How to uncompress PHP Hi, I am Lin. When I execute a command gzip -d php-4_3_0_tar.gz on the linux. The system show

RE: [PHP] any windows php developers out here?

2003-02-08 Thread Victor
-02-08 at 20:18, Victor wrote: How do I disable apache 2.0? In Windows, go to service-apache-manual start In GNU/Linux, chkconfig --level 35 httpd off -- __ / \\ @ __ __@ Adolfo Bello [EMAIL PROTECTED] / // // /\ / \\ // \ // Bello

RE: [PHP] Why does this happen?

2003-02-08 Thread Victor
Maybe you should rename them differently/ or make then into an array? -Original Message- From: CF High [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 10:52 PM To: [EMAIL PROTECTED] Subject: [PHP] Why does this happen? Hey all. Got a problem with I'm sure a simple

Re: [PHP] Socket error connecting to mySQL

2003-02-04 Thread victor
did u turn mysql on? end of mysql installation output: PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! This is done with: /usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h CPE00022af118a5-CM024330008757.cpe.net.cable.rogers.com password

[PHP] unexpected warnings - what do they mean? - phpMyAdmin - also postedon the phpMyAdmin mailing list...

2003-02-04 Thread victor
i am getting the following warnings after i try to inser data into some table cells i created. i have PHP Version 4.1.2 and MySQL 3.23.55. Apache 1.3.23. Redhat 7.3. oh, and i have php 4.3.0 installed, but i dont know how to make apche see it or use it. its ina different directory than the

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
they the default lines of code form phpMyAdmin the newest one stable. just installed it today, the lines are not modified they what the devs made them... - Vic Steve Keller wrote: At 2/4/2003 06:46 PM, you wrote: i am getting the following warnings after i try to inser data into some table

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
Professionals. Get your copy today. http://www.phparch.com/ -Original Message- From: victor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 7:02 PM To: Steve Keller Cc: [EMAIL PROTECTED] Subject: Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
WHOHOO!!! probme solved! (read: worked around) i downloaded the older phpMyAdmin release and it worked perfectly! could this be a bug in phpMyAdmin? - Vic victor wrote: the error reportin value is marked specifically not to be touched, plus there are other things that are wroong like

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
? why not? someone please help me run the new php, thanks - Vic John W. Holmes wrote: Is it a register_globals problem, then? ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -Original Message- From: victor

Re: [PHP] Strange_session-problem_with_php-file_in_img_src…

2003-02-01 Thread Victor Spång Arthursson
of the session is called from within another function, and that it's defined outside this function? Sincerely Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Strange_session-problem_with_php-file_in_img_src…

2003-02-01 Thread Victor Spång Arthursson
Problem solved. The error came because I was calling the function inside another function, outside the latter it worked good. So I simply passed the variable with the second function - works great! Thanks anyway for all your time trying to help me! /V -- PHP General Mailing List

[PHP] Strange session-problem with php-file in img src

2003-01-31 Thread Victor Spång Arthursson
, it doesnt recognizes the session variable… I think it's because that the web server loads it or something like that and it does not know that a session variable belongs to the user who loaded the file with the img scr on… Please, help! How can I overcome this? Best regards, Victor -- PHP General

Re: [PHP] Strange_session-problem_with_php-file_in_img_src…

2003-01-31 Thread Victor Spång Arthursson
fredagen den 31 januari 2003 kl 18.08 skrev Chris Shiflett: Instead of trying to tell us what the problem is, just explain what trouble you are having. We can then tell *you* what the problem is. Ok, first I have the function session_start(); function return_session_raettighet($session =

[PHP] php ISA v.s. php CGI

2003-01-31 Thread Victor
What is the difference between PHP ISAPI filter and PHP CGI (which one would be better to install on IIS 5?) -thanks, - vic __ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List

[PHP] GD jpg thumbnail - ugly discollored

2003-01-25 Thread Victor
I have a script that takes uploaded images (jpeg only) and makes proportionate thumbnails etc, and saves them in jpeg (.jpg) format again (default compression of %75 I think) anyway, the thumbnails are UGLY. Beauty of content aside, they are discolored, and usually one predominant color takes over

  1   2   3   >