Can't I install S9Y in IIS

Having trouble installing serendipity?
Post Reply
s9y_is_great

Can't I install S9Y in IIS

Post by s9y_is_great »

Hi !!

I have IIS in my server and I want to use S9Y. It seems S9Y don't support IIS. IS THERE ANY WAY INSTALLING S9Y IN IIS SERVER..

PLEASE SOMEBODY HELP

RGDS,
MAN
nohn
Regular
Posts: 37
Joined: Fri Oct 08, 2004 3:28 pm

Post by nohn »

s9y is designed for apache but i successfully use it on lighttpd and know of people using it on IIS. could you please be a litte more specific than "it does not work"
bijaysayami
Posts: 2
Joined: Fri Apr 08, 2005 8:45 am

re: s9y installation problem

Post by bijaysayami »

Dear nohn,

Thanks for your reply..

Well ! I got error like
"Cannot create folder Archives ..."
though I created archive folder maunally and set chmod to 777.

So, I just thought this is because I have IIS..

Is there any special configuration need to install s9y in server with IIS?

I look forward for your reply..

And thank you very much for your interst...


Thank You,
MAN
Q

same Problem?

Post by Q »

i cant say it doesnt work on IIS, but it doesnt work correct on my IIS.

work not correct means:
It doesnt load the correct style or better it doesnt load any style
the links dont work: Admin , extended,.... every time the same page
i have setted up the parameters with a direct call on serendipity_admin.php and it works (with no style)


Some problems i've fixed myself:
subfolder "popup" was notallowed by my firewall on server ...
chmod (ie permissions on server) for some folders (template_c)
mgroeninger
Regular
Posts: 546
Joined: Mon Dec 20, 2004 11:57 pm
Contact:

Post by mgroeninger »

Do you have a URL I could look at?

Or at least post they reference to the style sheet from the page...

It sounds a bit like URL rewriting is enabled, but IIS doesn't support URL rewriting without a third party plugin...
Guest

Post by Guest »

mgroeninger wrote:Do you have a URL I could look at?

Or at least post they reference to the style sheet from the page...

It sounds a bit like URL rewriting is enabled, but IIS doesn't support URL rewriting without a third party plugin...
http://traben.info/blog

User +PW: demoadmin
Q

Post by Q »

message is from me

Q wrote:
mgroeninger wrote:Do you have a URL I could look at?

Or at least post they reference to the style sheet from the page...

It sounds a bit like URL rewriting is enabled, but IIS doesn't support URL rewriting without a third party plugin...
http://traben.info/blog

User +PW: demoadmin
mgroeninger
Regular
Posts: 546
Joined: Mon Dec 20, 2004 11:57 pm
Contact:

Post by mgroeninger »

URL rewriting was enabled under the admin menu "Configuration"
(it was set to "Use Apache rewrite")

By turning URL rewriting off the page now seems to be using the Newspaper style, but the links do not work, and the admin interface still does not have stylesheets..

Do you have any kind of rewrite ISAPI filter or anything running?

I can't work on this right now... sorry...

I won't be able to look at it again until tomorrow sometime...
Guest

Post by Guest »

mgroeninger wrote:URL rewriting was enabled under the admin menu "Configuration"
(it was set to "Use Apache rewrite")

By turning URL rewriting off the page now seems to be using the Newspaper style, but the links do not work, and the admin interface still does not have stylesheets..

Do you have any kind of rewrite ISAPI filter or anything running?

I can't work on this right now... sorry...

I won't be able to look at it again until tomorrow sometime...
Q

Post by Q »

sorry, again only a half post :-(
mgroeninger wrote:URL rewriting was enabled under the admin menu "Configuration"
(it was set to "Use Apache rewrite")

By turning URL rewriting off the page now seems to be using the Newspaper style, but the links do not work, and the admin interface still does not have stylesheets..

Do you have any kind of rewrite ISAPI filter or anything running?

I can't work on this right now... sorry...

I won't be able to look at it again until tomorrow sometime...

time is not the problem meanwhile .... so i thank for every help i can get.

Yes it is newpaperstyle, but only because the css-file i wrote directly(manually) to the root-directory.

No there is no ISAPI-filter running

i have also checked the php.ini and found there no problem.

maybe when you have time wie can talk over MSN or anything else ...
mgroeninger
Regular
Posts: 546
Joined: Mon Dec 20, 2004 11:57 pm
Contact:

Post by mgroeninger »

Ok.. I think I know the problem...


open up index.php and find:

Code: Select all

$uri = $_SERVER['REQUEST_URI'];
and replace it with:

Code: Select all

$uri = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];
Or you could just add it after the first line...

Sorry, I've done that so much I forgot it was a problem....
You should probably roll back all your changes once you've got that done, so that you can see everything as it should be...
Q

Post by Q »

mgroeninger wrote:Ok.. I think I know the problem...


open up index.php and find:

Code: Select all

$uri = $_SERVER['REQUEST_URI'];
and replace it with:

Code: Select all

$uri = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];
Or you could just add it after the first line...

Sorry, I've done that so much I forgot it was a problem....
You should probably roll back all your changes once you've got that done, so that you can see everything as it should be...
that was the first problem, now the links works correctly,
the secondproblem was a wrong path in configuration, now it works also fine !

now it works fine, thx for your help!
Post Reply