Pagina 1 van 1
Mededelingen mod??
Geplaatst: 04 jan 2005, 11:42
door Quoctrung
Hoi, ik ben op zoek naar een ?mod? die de laatste reacties van de forum op het index laat zien.
Kan iemand me hiermee misschien helpen?
Alvast bedankt,
Re: Mededelingen mod??
Geplaatst: 04 jan 2005, 11:46
door Stef
Quoctrung schreef:Hoi, ik ben op zoek naar een ?mod? die de laatste reacties van de forum op het index laat zien.
Kan iemand me hiermee misschien helpen?
Alvast bedankt,
Kijk
hier of er iets voor je bij zit.
Geplaatst: 04 jan 2005, 12:27
door Quoctrung
Ik heb het al gevonden, ik zocht Ezportal. Sorry voor het slechte uitleg. Toch loop ik bij deze stap vast. Kan iemand me helpen?
Code: Selecteer alles
# HOW TO MAKE YOUR WEBSITE OPEN TO FILE portal.php INSTEAD OF index.php ?
# You can use one of the following methods! Lots of luck!
#
#
# o Method 1: (for Apache server)
# create/modify file .htaccess in phpBB root directory
# add/edit this line:
#
# DirectoryIndex index.html index.htm portal.php index.php
#
#
# o Method 2: {use JavaScript - if you cannot apply the 1st method)
# create file index.html in phpBB root directory (without #)
#
# <html>
# <head>
# <title>Redirecting...</title>
# <script language="JavaScript">
# self.location.href='portal.php';
# </script>
# </head>
# <body>
# </body>
# </html>
#
# if your phpBB was placed in a subdirectory to the
# webroot, like: http://something.com/forum
# you could create index.html in the webroot and modify the
# line 5 to self.location.href='forum/portal.php';
#
#
# o Method 3: I think maybe you can find out method 3 yourself ;)
Geplaatst: 04 jan 2005, 12:31
door Luuk
Om ervoor te zorgen dat er nu portal.php wordt geopend ipv index.php moet je of de htaccess aanpassen (staat daar) of een index.html bestand aanmaken met dit als inhoud:
Code: Selecteer alles
<html>
<head>
<title>Redirecting...</title>
<script language="JavaScript">
self.location.href='portal.php';
</script>
</head>
<body>
</body>
</html>
Geplaatst: 04 jan 2005, 12:35
door Quoctrung
Luuk schreef:Om ervoor te zorgen dat er nu portal.php wordt geopend ipv index.php moet je of de htaccess aanpassen (staat daar) of een index.html bestand aanmaken met dit als inhoud:
Code: Selecteer alles
<html>
<head>
<title>Redirecting...</title>
<script language="JavaScript">
self.location.href='portal.php';
</script>
</head>
<body>
</body>
</html>
Maar waar staat phpbb_root? htacces? Sorry ben een pure beginner

Geplaatst: 04 jan 2005, 14:09
door Luuk
Phpbb_root is de map waar je forum in staat. Daar staan ook index.php, config.php etc in. Het bestand .htaccess kun je daar ook vinden, maar dit is er niet altijd.