<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Chevereto Forums - invalid $DOM_SCRIPT]]></title>
		<link>http://chevereto.com/forums/topic434-invalid-domscript.html</link>
		<description><![CDATA[The most recent posts in invalid $DOM_SCRIPT.]]></description>
		<lastBuildDate>Tue, 02 Feb 2010 19:56:23 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: invalid $DOM_SCRIPT]]></title>
			<link>http://chevereto.com/forums/post2232.html#p2232</link>
			<description><![CDATA[<p>is the problem with sub domains?<br />because if I move the non working folder of Chevereto into the phpbb2 folder and redirect the subdomain to its folder the page works fine (no invalid $DOM_SCRIPT error). Just errors when I connect directly threw a sub domain</p><p>I really like your product btw <img src="http://chevereto.com/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (Logman)]]></author>
			<pubDate>Tue, 02 Feb 2010 19:56:23 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2232.html#p2232</guid>
		</item>
		<item>
			<title><![CDATA[Re: invalid $DOM_SCRIPT]]></title>
			<link>http://chevereto.com/forums/post2230.html#p2230</link>
			<description><![CDATA[<p>I have the same issue BUT<br />when I first uploaded chevereto_nb1.7 I put it in a test folder on my remote server.<br />Everything worked fine, edited everything to my liking and everything good.</p><p>I copied the files to another folder where it would be run live and I get the error.<br />Same files, same server except for different folders</p><p>WORKS:<br />DOM: <a href="http://www.artistmean.com">www.artistmean.com</a> - PATH: /home1/drafthor/public_html/artistmean</p><p>DOES NOT WORK:<br />DOM: images.dhv.com - PATH: /home1/drafthor/public_html/phpBB2/Chevereto</p><p>DOES WORK (with redirect of subdomain to PATH):<br />DOM: images.dhv.com - PATH: /home1/drafthor/public_html/phpBB2/gallery</p>]]></description>
			<author><![CDATA[null@example.com (Logman)]]></author>
			<pubDate>Tue, 02 Feb 2010 19:25:53 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2230.html#p2230</guid>
		</item>
		<item>
			<title><![CDATA[Re: invalid $DOM_SCRIPT]]></title>
			<link>http://chevereto.com/forums/post2136.html#p2136</link>
			<description><![CDATA[<p>It seems that I need to release a new version <img src="http://chevereto.com/forums/img/smilies/sad.png" width="15" height="15" alt="sad" /></p>]]></description>
			<author><![CDATA[null@example.com (Rodolfo)]]></author>
			<pubDate>Wed, 20 Jan 2010 05:47:37 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2136.html#p2136</guid>
		</item>
		<item>
			<title><![CDATA[Re: invalid $DOM_SCRIPT]]></title>
			<link>http://chevereto.com/forums/post2134.html#p2134</link>
			<description><![CDATA[<div class="quotebox"><cite>gamerlv wrote:</cite><blockquote><div class="quotebox"><cite>philhxc wrote:</cite><blockquote><p>weird..&nbsp; i have</p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;SERVER_NAME&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)

    // example:
    # $DOM_SCRIPT = &#039;mysite.com&#039;;
    # $PATH_SERVER = &#039;/public_html&#039;; 
    /* Btw, you can check this values by uncommenting this: */
    echo &#039;DOM: &#039;.$DOM_SCRIPT.&#039; - PATH: &#039;.$PATH_SERVER;</code></pre></div><p>note that echo is not commented and it returns:</p><div class="codebox"><pre><code>DOM: www.image-bb.org - PATH: /home/86412/domains/image-bb.org/html</code></pre></div><p>so my settings now are...<br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;www.image-bb.org&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;/home/86412/domains/image-bb.org/html&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div><p>but, i get the following errors<br /></p><div class="codebox"><pre><code>Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php</code></pre></div></blockquote></div><p>Do it like so:<br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = &quot;www.image-bb.org&quot;; // --&gt; mysite.com
$PATH_SERVER = &quot;/home/86412/domains/image-bb.org/html&quot;; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div></blockquote></div><br /><p>did the edits and i get the same error</p>]]></description>
			<author><![CDATA[null@example.com (philhxc)]]></author>
			<pubDate>Tue, 19 Jan 2010 21:31:43 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2134.html#p2134</guid>
		</item>
		<item>
			<title><![CDATA[Re: invalid $DOM_SCRIPT]]></title>
			<link>http://chevereto.com/forums/post2130.html#p2130</link>
			<description><![CDATA[<div class="quotebox"><cite>philhxc wrote:</cite><blockquote><p>weird..&nbsp; i have</p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;SERVER_NAME&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)

    // example:
    # $DOM_SCRIPT = &#039;mysite.com&#039;;
    # $PATH_SERVER = &#039;/public_html&#039;; 
    /* Btw, you can check this values by uncommenting this: */
    echo &#039;DOM: &#039;.$DOM_SCRIPT.&#039; - PATH: &#039;.$PATH_SERVER;</code></pre></div><p>note that echo is not commented and it returns:</p><div class="codebox"><pre><code>DOM: www.image-bb.org - PATH: /home/86412/domains/image-bb.org/html</code></pre></div><p>so my settings now are...<br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;www.image-bb.org&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;/home/86412/domains/image-bb.org/html&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div><p>but, i get the following errors<br /></p><div class="codebox"><pre><code>Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php</code></pre></div></blockquote></div><p>Do it like so:<br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = &quot;www.image-bb.org&quot;; // --&gt; mysite.com
$PATH_SERVER = &quot;/home/86412/domains/image-bb.org/html&quot;; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (gamerlv)]]></author>
			<pubDate>Mon, 18 Jan 2010 19:42:04 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2130.html#p2130</guid>
		</item>
		<item>
			<title><![CDATA[invalid $DOM_SCRIPT]]></title>
			<link>http://chevereto.com/forums/post2126.html#p2126</link>
			<description><![CDATA[<p>weird..&nbsp; i have</p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;SERVER_NAME&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)

    // example:
    # $DOM_SCRIPT = &#039;mysite.com&#039;;
    # $PATH_SERVER = &#039;/public_html&#039;; 
    /* Btw, you can check this values by uncommenting this: */
    echo &#039;DOM: &#039;.$DOM_SCRIPT.&#039; - PATH: &#039;.$PATH_SERVER;</code></pre></div><p>note that echo is not commented and it returns:</p><div class="codebox"><pre><code>DOM: www.image-bb.org - PATH: /home/86412/domains/image-bb.org/html</code></pre></div><p>so my settings now are...<br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;www.image-bb.org&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;/home/86412/domains/image-bb.org/html&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div><p>but, i get the following errors<br /></p><div class="codebox"><pre><code>Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (philhxc)]]></author>
			<pubDate>Sat, 16 Jan 2010 23:43:38 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2126.html#p2126</guid>
		</item>
	</channel>
</rss>

