[PHP-WIN] RE: Web pages don't show up in IE 6 w/SP1.

2003-01-31 Thread Uttam
use the 'view source' to see what information is being passed to browser. otherwise post more information about your configuration, address used to access the file, contents of php file etc. regds, -Original Message- From: Jammy Hall [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30,

php-windows Digest 31 Jan 2003 09:54:37 -0000 Issue 1564

2003-01-31 Thread php-windows-digest-help
php-windows Digest 31 Jan 2003 09:54:37 - Issue 1564 Topics (messages 18241 through 18262): What are the PHP Best Practices in virtual Server environment? 18241 by: Mark Thornton Re: Register globals on and off 18242 by: Dash McElroy 18258 by: Davy Obdam

RE: [PHP-WIN] SQL SERVER TRUSTED CONNECTION HELP

2003-01-31 Thread Sean Malloy
SQL Server is set to Windows Only authentication mode. You can set it to Windows and SQL Server mode, by opening Enterprise Manager, right clicking on the server, choosing Properties | Security, and set it to SQL Server and Windows rather than Windows Only mode. -Original Message- From:

[PHP-WIN] Re: SSI, SHTML and PHP, INCLUDES...

2003-01-31 Thread Radovan Radic
Hi Sorry, i am not here to answer. I just wonder how this message SSI, SHTML and PHP, INCLUDES... got under the thread: Re: Flow diagrams. Does this happen to someone else? Radovan Leo G. Divingracia III [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... have a

[PHP-WIN] Re: Turn on Error Messages

2003-01-31 Thread Radovan Radic
You can put this line in your script: error_reporting(E_ALL); or some other combination Christoph Grottolo [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... [EMAIL PROTECTED] (Wade) wrote: 01302003 1407 CST How do you turn on error messages in your PHP scripts?

[PHP-WIN] Re: Web pages don't show up in IE 6 w/SP1.

2003-01-31 Thread Jammy Hall
The link is: http://dynamic5.gamespy.com/~perfectionist/PSite/modules.php?name=NukeWrapp age=http://dynamic5.gamespy.com/~perfectionist/PSite/perfectextra/html/Tutor ial_Basic.html And the View Source is attached.. Jammy Hall [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

Re: [PHP-WIN] Wierd Windows Problems

2003-01-31 Thread Tobias Brandl
this is a submit button.. so you start something.. so why do you do like this: form name=x action=xyadf.php method=post input type=submit value=Search /form and form name=x action=xyadf1.php method=post input type=submit value=Add /form this should work fine... Chris Deam [EMAIL

[PHP-WIN] There is no way I can build on the fly pdfs

2003-01-31 Thread Leonardo Javier Belén
Hi all I would like to ask you how can I generate PDFs on the fly since I tried all the stuff around. I cannot make it work even when using the examples provided. The problem seems to affect both cpdf and pdflib. The fact is that says that I cannot see the file because it isnt available.

RE: [PHP-WIN] There is no way I can build on the fly pdfs

2003-01-31 Thread Charles P. Killmer
A problem that I ran into with pdf's was while using sessions. If you use a session be sure you call session_write_close() before sending the first headers for the pdf. What is your webserver configuration. OS,Webserver, version,php version, cgi, isapi Charles Windows 2000 Server,

Re: [PHP-WIN] There is no way I can build on the fly pdfs

2003-01-31 Thread Jerry Nelson
At 1/31/2003 08:51 AM, you wrote: Hi all I would like to ask you how can I generate PDFs on the fly since I tried all the stuff around. I cannot make it work even when using the examples provided. The problem seems to affect both cpdf and pdflib. The fact is that says that I cannot see the

Re: [PHP-WIN] Passing Variables and Internal Variables

2003-01-31 Thread cybot
Dash McElroy wrote: You are referencing the variables properly on the first if line, but then you're calling $var1 and $var2 w/o using $_GET. Add that or do this: $var1 = $_GET['var1']; $var2 = $_GET['var2']; You may also want to use !isset($varname) instead of checking to see if the variables

Re: [PHP-WIN] Something like trim()

2003-01-31 Thread cybot
is there no more complicated solution for this? ;-) nothing for bad! B.A.T. Svensson wrote: Something like (not tested and compiled - please find the bugs :)) will remove white space dups: char *TrimInString(char *pzWashMe) { if (!pzWashMe) return NULL; register char *pzMarker = pzWashMe;

[PHP-WIN] Re: Web pages don't show up in IE 6 w/SP1.

2003-01-31 Thread cybot
i can see no problem in WinXP with IE 6sp1 or Mozilla Jammy Hall wrote: The link is: http://dynamic5.gamespy.com/~perfectionist/PSite/modules.php?name=NukeWrapp age=http://dynamic5.gamespy.com/~perfectionist/PSite/perfectextra/html/Tutor ial_Basic.html And the View Source is attached..

Re: [PHP-WIN] Web pages don't show up in IE 6 w/SP1.

2003-01-31 Thread Stephen Edmonds
This is a PHP helplist. You are not supposed to send in questions unless it is your website and/or PHP related. The page loads fine for me and I am on Windows XP with SP1 installed. I suggest you check your browser/firewall settings, as it is known that some firewalls can cause issues with

Re: [PHP-WIN] Web pages don't show up in IE 6 w/SP1.

2003-01-31 Thread Luis Ferro
I've seen an identical effect (pages load, but don't show anything) due to a websidestory filtering somewhere in the network outside of the web server. In the server i must work with this setup, when i've an error in html or javascript, i get an empty page which have my content (with luck)...

[PHP-WIN] Re: Web pages don't show up in IE 6 w/SP1.

2003-01-31 Thread Jammy Hall
My home machine (which has the same version OS and IE) doesn't have any problems either, just my work machine.. Jammy Hall [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I running Windows 2000 w/SP3 and IE 6 w/SP1 and I can't get pages using PHP to show up in

Re: [PHP-WIN] Re: [PHP] Re: [PHP-WIN] Register globals on and off

2003-01-31 Thread Davy Obdam
Hi Tom, Thanks for you help, got it to work with : php_flag register_globals on in a .htaccess file in the directory`s that need the register globals on. Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Tom Rogers wrote: Hi, Friday, January 31, 2003, 10:42:42 AM, you wrote: DO Thanks for

Re: [PHP-WIN] SSI, SHTML and PHP, INCLUDES...

2003-01-31 Thread Dash McElroy
Check this out: http://www.php.net/manual/en/function.virtual.php That just very well could be what you need. Otherwise, you may have to rewrite your stuff. Keep in mind Apache 1.3.x can only process one file via one 'addtype' thing. Apache2 has support for more that one 'filter', but I have not

RE: [PHP-WIN] Wierd Windows Problems

2003-01-31 Thread Sean Malloy
Or button type=submit name=action value=searchSearch/button button type=submit name=action value=addAdd/button imo: button tag isn't standard HTML.. I would go with: form action=page.php method=post input type=hidden name=action value=search / input type=submit value=Search / /form form

php-windows Digest 31 Jan 2003 22:32:37 -0000 Issue 1565

2003-01-31 Thread php-windows-digest-help
php-windows Digest 31 Jan 2003 22:32:37 - Issue 1565 Topics (messages 18263 through 18279): Re: SQL SERVER TRUSTED CONNECTION HELP 18263 by: Sean Malloy Re: SSI, SHTML and PHP, INCLUDES... 18264 by: Radovan Radic 18278 by: Dash McElroy Re: Turn on Error Messages

[PHP-WIN] =?tis-620?q?=C3=D9=E9=A8=D1=A1=C1=D1=E9=C2=2E=2E=2E=E2=BA=C7=EC=28?==?tis-620?q?=CD=D5=A1=A4=C3=D1=E9=A7=29?=

2003-01-31 Thread Matrix
äÁèÃÙéàËÁ×͹¡Ñ¹¹ÐÇèÒmailÍѹ¹ÕéÁѹÁÒä´éÂÑ§ä§ áµè㹶ҹзÕèàÃÒà¤ÂÍÂÙèÍѧ¡ÄÉÁÒ¡è͹ àÃÒÃÙéá¤èÇèÒ¾ÕèâºÇì´Ù¶Ù¡¤¹¨¹¹Ð ÍÂèÒ§àÃÒ¡éÍà¤Ââ´¹ µÍ¹àÃÒä»·Õè¹Ñè¹ãËÁèæÁÕ¾Õ褹¹Ö§à¤éÒÁҪǹàÃÒä»à·ÕèÂÇ ¾Õè¼ÙéË­Ô§¹Ð à¤éÒàÅèÒÇèÒà¹Õ褹ª×èÍâºÇì¹Ð¹èÒÃÑ¡ÁÒ¡àÅ ¤¹¨ÕºàÂÍÐÁÒ¡ àÃÒ¡éÍÍÂÒ¡à¨Í àź͡ãËé¾Õèà¤éÒ¾Òä»à¨Í˹èÍÂÊÔ

[PHP-WIN] Apache 2.0.44; PHP 4.3.0; CGI implemented WinXP Home

2003-01-31 Thread Shaggy
Hi there =D; i got the following problem: When i want to use variables in URLs for example: http://192.168.0.1/Treff/index2.php?site=events i got this error: Warning: main(.php) [function.main]: failed to create stream: No such file or directory in c:\stuff\homepage\treff\index2.php on line 34

[PHP-WIN] Something like trim()

2003-01-31 Thread Cam Dunstan
Cybot, try this function string_dryclean($dirtystring) { $cleanstring = str_replace(\n, , $dirtystring); $cleanstring = trim(str_replace(\t, , $cleanstring)); do { $cleanstring = str_replace( , , $cleanstring); } while (strpos($cleanstring, ) 0); return $cleanstring; } use it like

[PHP-WIN] error - permissions?

2003-01-31 Thread Pat Johnston
Hi I get this error in a login page I've created. I am using root for testing purposes only on localhost, but it keeps comming up with access denied. I am wondering if this is a Windows 2000 permissions problem or are new users denied in MySQL? Any idea? Regards, PJ Warning: mysql_connect()

Re: [PHP-WIN] Mail newbie Question

2003-01-31 Thread toby z
hi duncan i have to do this job for a client in a week or so im sure its possible . ill start at it in a while n ill let u no whatever it is k ? good luck toby --- Duncan [EMAIL PROTECTED] wrote: Hi All, Is it possible to create a page where visitors can for example submit their