Topic: Subdomain not accessible

When trying to access my website through the subdomain, it displays the following error:

http://www.superscreenshot.com/screens/20091116/20091116_035153_wwwimagesbdownloadscombr_p_800.jpg


Help me

Thank you

Thumbs up

Re: Subdomain not accessible

had the same problem on my local xampp server. Couldnt find any solution

Thumbs up

Re: Subdomain not accessible

If you wisely read the white text in the big red square you will notice the solution!

rodolfoberrios.com | PLEASE use Tech Support forums to ask for support!

Re: Subdomain not accessible

I have a lot of experiences with php, can you tell me precisely what I do I edit here?

Thumbs up

Re: Subdomain not accessible

Smart wrote:

I have a lot of experiences with php, can you tell me precisely what I do I edit here?

Look in config and please read the comments....

// SERVER ///
/* We get this values with $_SERVER. If your server doesn't resolve this values The script will not work.
   If the script doesn't work, you must change this values to be like values in the comments (see the exaple below) */

 
$DOM_SCRIPT = $_SERVER['SERVER_NAME']; // --> mysite.com
$PATH_SERVER = $_SERVER['DOCUMENT_ROOT']; // --> /public_html (pssst.. NO ENDING SLASH!)
 
    // example:
    # $DOM_SCRIPT = 'mysite.com';
    # $PATH_SERVER = '/public_html';
    /* Btw, you can check this values by uncommenting this: */
    // echo 'DOM: '.$DOM_SCRIPT.' - PATH: '.$PATH_SERVER;
rodolfoberrios.com | PLEASE use Tech Support forums to ask for support!

Re: Subdomain not accessible

I did everything according to the examples ... but still the error ...

My domain www.mysite.com.br/image/ usually get only the subdomain of this error.

and now?

before upgrading to version 1.6 did not give this problem

Last edited by Smart (2009-11-17 18:42:42)

Thumbs up

Re: Subdomain not accessible

I just did tests with version 1.6 rev2 and everything was normal ... access through the main domain and subdomain without any problem, what can be?

Thumbs up