<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1019674" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1019674</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118502</link>
    <description> &lt;p&gt;Wow, thanks for that. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt; I haven&#039;t visited firepages since... what, about two years ago? fp has sure done a lot of work. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Nov 2002 08:09:04 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1118502 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118499</link>
    <description> &lt;p&gt;Abhishek if you or anyone else wants the bundle php/mysql/apache/perl/mysql + manuals check out firepages.com.au&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Nov 2002 08:03:27 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1118499 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118478</link>
    <description> &lt;p&gt;It works. I never knew of SCRIPT_NAME. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Thanks, guys. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Nov 2002 04:53:28 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1118478 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118474</link>
    <description> &lt;p&gt;After reading zollet&#039;s post, I had to check the manual... (I didn&#039;t remember anything about &#039;SCRIPT_NAME&#039;)&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
&#039;PHP_SELF&#039;&lt;br /&gt;
The filename of the currently executing script, relative to the document root. For instance, $_SERVER[&#039;PHP_SELF&#039;] in a script at the address &lt;a href=&quot;http://example.com/test.php/foo.bar&quot; class=&quot;bb-url&quot;&gt;http://example.com/test.php/foo.bar&lt;/a&gt; would be /test.php/foo.bar. &lt;/p&gt;
&lt;p&gt;If PHP is running as a command-line processor, this variable is not available. &lt;/p&gt;
&lt;p&gt;&#039;SCRIPT_NAME&#039;&lt;br /&gt;
Contains the current script&#039;s path. This is useful for pages which need to point to themselves.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;From that, I&#039;m guessing that Xitami is running *.php files from a command-line (like a shell), and returning the output.&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Nov 2002 04:46:34 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1118474 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118471</link>
    <description> &lt;p&gt;Abhi, from what I&#039;ve understood $_SERVER[&quot;PHP_SELF&quot;] (aka $PHP_SELF) works only with Apache. For other webservers you should try $_SERVER[&quot;SCRIPT_NAME&quot;] (aka $SCRIPT_NAME).&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Nov 2002 04:35:17 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1118471 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118456</link>
    <description> &lt;p&gt;dk01, $PHP_SELF is an undefined variable.&lt;/p&gt;
&lt;p&gt;Mark, I&#039;ve just tried $HTTP_SERVER_VARS and $GLOBALS. $HTTP_SERVER_VARS gives me a timeout. $GLOBALS gives an undefined index error.&lt;/p&gt;
&lt;p&gt;In any case, this isn&#039;t a big deal. What I really need for now is to use SERVER_NAME, and that works, so it&#039;s ok.&lt;/p&gt;
&lt;p&gt;I don&#039;t have Apache but I&#039;m going to install it soon. Maybe PHP_SELF will work in that environment. I use Xitami because it&#039;s a handy little program, and is hardly a resource hog. It&#039;s like a good working version of PWS, that supports CGI/PHP. Simply, it does what it&#039;s supposed to do. (Well, until now, of course. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;)&lt;/p&gt;
 </description>
     <pubDate>Thu, 14 Nov 2002 03:37:08 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1118456 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118435</link>
    <description> &lt;p&gt;Have you tried the same script using Apache on the same box?&lt;br /&gt;
Do you still have the same problem?&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Nov 2002 22:49:42 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1118435 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118433</link>
    <description> &lt;p&gt;its an open source webserver&lt;br /&gt;
&lt;a href=&quot;http://www.xitami.com/&quot; class=&quot;bb-url&quot;&gt;http://www.xitami.com/&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Nov 2002 22:30:16 +0000</pubDate>
 <dc:creator>hagar</dc:creator>
 <guid isPermaLink="false">comment 1118433 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118418</link>
    <description> &lt;p&gt;Can you access it via $GLOBALS[&quot;PHP_SELF&quot;] or $HTTP_SERVER_VARS[&quot;PHP_SELF&quot;] ?&lt;/p&gt;
&lt;p&gt;And what is Xitami?&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Nov 2002 17:22:22 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1118418 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/serverphpself-timeout#comment-1118402</link>
    <description> &lt;p&gt;Why not just use $PHP_SELF ?&lt;br /&gt;
-dk&lt;/p&gt;
 </description>
     <pubDate>Wed, 13 Nov 2002 14:27:57 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1118402 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
