Koozali.org: home of the SME Server

http://servername/server-resources/

Tyrone Miles

http://servername/server-resources/
« on: January 26, 2003, 02:04:18 PM »
http://servername/server-resources/

Is this something new in 5.6 and does it work. On the page for new release it says you can go to this on your server to get the winodws XP patches.

This doesn't work on my server.

rob wellesley

Re: http://servername/server-resources/
« Reply #1 on: January 26, 2003, 02:38:15 PM »
try \servername_or_IP\server-resources

i.e - windows networking

Tyrone Miles

Re: http://servername/server-resources/
« Reply #2 on: January 26, 2003, 02:59:27 PM »
Doesn't work. And it's written in the documentation as: "This patch is made available via the web server, via the URL "http://servername/server-resources/".

Thanks.

Trampas

Re: http://servername/server-resources/
« Reply #3 on: January 26, 2003, 03:57:23 PM »
What is the name of your e-smith box? Where it says servername place that name in the url above.

Tyrone Miles

Re: http://servername/server-resources/
« Reply #4 on: January 26, 2003, 11:13:49 PM »
Come on I am not a pro but I do know that I must put the host name or IP where it says servername. LOL!

This is an upgrade from 5.5 to 5.6 maybe that is the problem?

Glenn Tm Pettit

Re: http://servername/server-resources/
« Reply #5 on: January 26, 2003, 11:31:28 PM »
question are you getting page can not be displayed or a 403 of 404 or 503 or 500 errors in the web Browser

if so try https://server-name/server-resources

Thor Anthrax

Re: http://servername/server-resources/
« Reply #6 on: January 27, 2003, 12:20:46 AM »
Same problem here:

403: You don't have permission to access /server-resources/ on this server.

Either with http and https

Tyrone Miles

Re: http://servername/server-resources/
« Reply #7 on: January 27, 2003, 12:51:39 AM »
Yea that is the same thing I got Thor. :-(

Jochen Hoegerl

Re: http://servername/server-resources/
« Reply #8 on: January 27, 2003, 01:21:19 AM »
well using putty, i found the files in:

/home/e-smith/files/server-resources/regedit

win98pwdcache.reg
winxplogon.reg

try if calling the file directly work

http://servername/server-resources/winxplogon.reg


jochen

Tyrone Miles

Re: http://servername/server-resources/
« Reply #9 on: January 27, 2003, 01:29:50 AM »
I see the files there but I can not access them from a browser. :(

Lloyd Keen

Re: http://servername/server-resources/
« Reply #10 on: January 27, 2003, 04:25:48 AM »
Same here, I'm getting 404's on all combinations.

Jochen Hoegerl

Re: http://servername/server-resources/
« Reply #11 on: January 27, 2003, 07:11:23 AM »
I just reviewed the httpd.conf on my sme. the alias entry is set to

/home/e-smith/files/server-resources/

the ownership for dirs down to regedit is 755 root.root
the files are 644 root.root.

so as apache runs as www.www it is allowed to read this

try if calling the file directly work

http://servername/server-resources/regedit/winxplogon.reg

if not try to chown dir /server-resources/ and everything below it
to www.www

jochen

it's 05:11am here, so I'm off to work now

Jon Blakely

Re: http://servername/server-resources/
« Reply #12 on: January 27, 2003, 03:03:29 PM »
I have sent the following bug report to bugs@e-smith.com

Fault:  Accessing http://servername/server-resources/  results in a 403 browser error with the following error message in httpd error logs
[Mon Jan 27 23:31:55 2003] [error] [client 192.168.2.65] Directory index forbidden by rule: /home/e-smith/files/server-resources/

Resolution:

Modify /etc/e-smith/templates/etc/httpd/conf/httpd.conf/ 85ServerResourcesAccess  from

# Server resources access configuration


    order deny,allow
    deny from all
{
    $OUT .= "    allow from $localAccess\n";
}


to include Options Indexes

# Server resources access configuration


    Options Indexes
    order deny,allow
    deny from all
{
    $OUT .= "    allow from $localAccess\n";
}


Cheers,

Jon Blakely

Craig

Re: http://servername/server-resources/
« Reply #13 on: January 28, 2003, 02:41:40 PM »
Jon & Tyrone, Have you filed this as a bug report with the solution that you have?

Bill Talcott

Re: http://servername/server-resources/
« Reply #14 on: January 28, 2003, 05:59:26 PM »
Craig wrote:
>
> Jon & Tyrone, Have you filed this as a bug report with the
> solution that you have?

Jon Blakely wrote:
>
> I have sent the following bug report to bugs@e-smith.com