|
Re: login on my main news page [message #8585 is a reply to message #8556] |
Mon, 10 February 2003 15:09 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
This is due to the nature of the forum redirect's returnto can ONLY be a forum based URL. This is done to prevent XSS exploits by specifying offsite returnto URLs. If you want to redirect the user to a non-forum URL create a small php script inside the forum's directory that will do just that and then redirect the user to that script.
FUDforum Core Developer
|
|
|
|
Re: Re:login on my main news page [message #8589 is a reply to message #8588] |
Mon, 10 February 2003 15:43 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
My view on plugins is somewhat mixed, while I see no problem with people adding all kinds of functionaly, I do see a problem with an audited plugins being out there. Many of the security faults in other forums often results from such plug-ins and detract from the overall image of the forum. By making requiring the developers who want to make modification first obtain good understanding of the code I believe this can be avoided.
FUDforum Core Developer
|
|
|
|
Re: same problem but returnto does not work [message #11978 is a reply to message #11973] |
Thu, 24 July 2003 13:28 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The line that causes a warning tries to find the URL session. To fix the problem do this:
<?php $sess_string = isset($_GET['S']) ? $_GET['S'] : ''; ?>
FUDforum Core Developer
|
|
|
|
Re: Re:login on my main news page [message #11988 is a reply to message #11981] |
Thu, 24 July 2003 17:35 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The whole idea about the templating system is that you do not need to go into PHP code, you can make the necessary altertions by modifying the mostly plain HTML .tmpl files. The code which does the template compiling probably would take a small book to fully describe and document and even then there would be a few ambiguities.
FUDforum Core Developer
|
|
|
|
Re: login on my main news page [message #11995 is a reply to message #11992] |
Thu, 24 July 2003 18:55 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Not really, first of all you can copy/paste from existing page and there is also documention on the various templating tags and basic theme compiler operation.
FUDforum Core Developer
|
|
|