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
Can't I install S9Y in IIS
-
bijaysayami
- Posts: 2
- Joined: Fri Apr 08, 2005 8:45 am
re: s9y installation problem
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
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?
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)
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:
-
Guest
http://traben.info/blogmgroeninger 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...
User +PW: demoadmin
-
Q
message is from me
Q wrote:http://traben.info/blogmgroeninger 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...
User +PW: demoadmin
-
mgroeninger
- Regular
- Posts: 546
- Joined: Mon Dec 20, 2004 11:57 pm
- Contact:
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...
(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
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
sorry, again only a half post 
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 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:
Ok.. I think I know the problem...
open up index.php and find:
and replace it with:
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...
open up index.php and find:
Code: Select all
$uri = $_SERVER['REQUEST_URI'];Code: Select all
$uri = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];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
that was the first problem, now the links works correctly,mgroeninger wrote:Ok.. I think I know the problem...
open up index.php and find:and replace it with:Code: Select all
$uri = $_SERVER['REQUEST_URI'];
Or you could just add it after the first line...Code: Select all
$uri = $_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];
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...
the secondproblem was a wrong path in configuration, now it works also fine !
now it works fine, thx for your help!