Install on server with no domain url

evanmcintosh1664

New Member
YetiShare User
Jul 21, 2012
1
0
0
I have installed the script on a server that does not have a domain name because I don't get possession of the domain name til July 29th.
I was hoping to install and configure the server and get things all set up for when I get possession of my domain name.

so in the: _config.inc.php
the path to my site is :184.154.169.226/~localtre

define("_CONFIG_SITE_HOST_URL", "184.154.169.226/~localtre");
define("_CONFIG_SITE_FULL_URL", "184.154.169.226/~localtre");

Which gives me the following error:
*******************************************
Config not found!

The config for this domain has not been found in /_config.inc.php

$_SERVER['HTTP_HOST'] reported current site as 184.154.169.226

Please update /home/localtre/public_html/_config.inc.php to the correct host:

define("_CONFIG_SITE_HOST_URL", "184.154.169.226");
********************************************

It appears it is reporting the current site as 184.154.169.226 and dropping the: /~localtre
so it cannot find config file

I tried using a dns redirect but it still wont work

Is there a work around?
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
Hi,

I responded by email but just for everyone elses benefit...

Change the _config.inc.php file from this:

define("_CONFIG_SITE_HOST_URL", "184.154.169.226/~localtre");

to:

define("_CONFIG_SITE_HOST_URL", "184.154.169.226");

Regards,
Adam.
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
PS - That's not a smiley, it should be a bracket.

define("_CONFIG_SITE_HOST_URL", "184.154.169.226" ) ;