http://object-arts.com/ gives a 404

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

http://object-arts.com/ gives a 404

Oli Bye-4
FYI


Reply | Threaded
Open this post in threaded view
|

Re: http://object-arts.com/ gives a 404

Andy Bower-3
Oli,

> FYI

Yes, I know. However, I don't know how to easily fix it.

Best regards,

--
Andy Bower
Dolphin Support
www.object-arts.com


Reply | Threaded
Open this post in threaded view
|

Re: http://object-arts.com/ gives a 404

Sean Malloy-11
"Andy Bower" <[hidden email]> wrote in message
news:[hidden email]...
> Oli,
>
>> FYI
>
> Yes, I know. However, I don't know how to easily fix it.

just add object-arts.com to the host headers entry for the
www.object-arts.com website in IIS.

Right click the website entry, Properties | Advanced... (Next to IP Address
text field)


Reply | Threaded
Open this post in threaded view
|

Re: http://object-arts.com/ gives a 404

Andy Bower-3
Sean,

> > Yes, I know. However, I don't know how to easily fix it.
>
> just add object-arts.com to the host headers entry for the
> www.object-arts.com website in IIS.
>
> Right click the website entry, Properties | Advanced... (Next to IP
> Address text field)

(Un)fortunately, it's not IIS but Swazoo.

Best regards,

--
Andy Bower
Dolphin Support
www.object-arts.com


Reply | Threaded
Open this post in threaded view
|

Re: http://object-arts.com/ gives a 404

Sean Malloy-11
>> Right click the website entry, Properties | Advanced... (Next to IP
>> Address text field)
>
> (Un)fortunately, it's not IIS but Swazoo.
>

Ahh, in that case just add another SiteIdentifier entry into your config
file.

<SiteIdentifier ip: '213.232.95.66' port: 80 host: 'object-arts.com' >

Unless you're creating the OA site programataiically, in that case;

(SwazooServer siteNamed: 'www.object-arts.com')
    addAlias: (SiteIdentifier
        ip: '213.232.95.66'
        port: 80
        host: 'object-arts.com').

Or something!