Pagina 1 van 1
Gastenboek
Geplaatst: 19 nov 2003, 23:34
door lagulalupis
http://www.lagulalupis.nl/foto/forum.jpg
Ik heb een mod voor een gastenboek gevonden.
Deze is echter in het engels.
Nu heb ik een nederlandstalige mod en ik krijg een error.
Ook krijg ik geen tekst bij de image bovenaan in het menu.
Niemand weet dus waarom dat pootje er staan.
Geldt trouwenns voor het fotoalbum.
Mijn vragen
Waar kan ik eventueel de tekst veranderen ?
Waar kan ik de tekst achter het pootje toevoegen ?
En wat betelend de error ?
Groetjes,
Nicky
Geplaatst: 19 nov 2003, 23:42
door Podium4
Open overall_header.tpl en zoek effe het stukje op wat je hebt toegevoegd voor de mod... kijk dan effe hoe de andere regels eruit zien die wel goed zijn...
Controleer of page_tail.php in includes staat...
Als je trouwens dingen wil gaan vertalen moet je dit doen in lang_main en belangrijk is dat je in een woord bijv: extra's niet die vliegende comma gebruikt...
Geplaatst: 19 nov 2003, 23:49
door lagulalupis
Ik zie het zo niet hoor.
Hier de regels onder elkaar.
<td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu">
<a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a>
<a href="{U_GUESTBOOK}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_guestbook.gif" width="12" height="13" border="0" alt="{L_GUESTBOOK}" hspace="3" />{L_GUESTBOOK}</a>
<a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a>
<a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a> </span></td>
</tr>
Geplaatst: 19 nov 2003, 23:54
door Podium4
maak van die regel met guestbook erin dit:
<a href="{U_GUESTBOOK}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_guestbook.gif" width="12" height="13" border="0" alt="{L_GUESTBOOK}" hspace="3" />{L_GUESTBOOK}</a>
Geplaatst: 19 nov 2003, 23:55
door lagulalupis
Het gastenboek heb ik opgelost.
Ik had de mod in de engelstalig language_main gezet.
Dankzij je opmerking heb ik die nu togevoegd aan de Nederlandstalige.
Nu zie ik in iedergeval de tekst omhoog komen...
Dat is alvast een..
Nicky
Geplaatst: 20 nov 2003, 00:09
door lagulalupis
Nou ik heb de tekst door maar de error om het gastenboek naar Nederlands te zetten is er nog steeds.
De tal file staat in includes
Geplaatst: 20 nov 2003, 08:43
door Podium4
oke dit zijn de error die je krijgt dus:
Warning: main(): Unable to access ./includes/page_tail.php in /mnt/host-users/d/i/e/dierenliefde/forum/admin/addentry.php on line 35
Warning: main(./includes/page_tail.php): failed to open stream: No such file or directory in /mnt/host-users/d/i/e/dierenliefde/forum/admin/addentry.php on line 35
Warning: main(): Failed opening './includes/page_tail.php' for inclusion (include_path='.:/opt/lib/php') in /mnt/host-users/d/i/e/dierenliefde/forum/admin/addentry.php on line 35
Volgens mij duidt dat toch echt op een missende page_tail.php...
Geplaatst: 20 nov 2003, 10:56
door headout
Of de verwijzing erna staat niet goed in addentry.php
Geplaatst: 20 nov 2003, 11:10
door lagulalupis
Voordat ik vanalles probeer...
Kan iemand hierin zie of het klopt ??
<?php
$include_path = dirname(__FILE__);
include_once $include_path."/admin/config.inc.php";
include_once $include_path."/lib/$DB_CLASS";
include_once $include_path."/lib/image.class.php";
include_once $include_path."/lib/template.class.php";
include_once $include_path."/lib/vars.class.php";
include_once $include_path."/lib/add.class.php";
$gb_post = new addentry($include_path);
if (isset($HTTP_POST_VARS["gb_action"])) {
$gb_post->name = (isset($HTTP_POST_VARS["gb_name"])) ? $HTTP_POST_VARS["gb_name"] : '';
$gb_post->email = (isset($HTTP_POST_VARS["gb_email"])) ? $HTTP_POST_VARS["gb_email"] : '';
$gb_post->url = (isset($HTTP_POST_VARS["gb_url"])) ? $HTTP_POST_VARS["gb_url"] : '';
$gb_post->comment = (isset($HTTP_POST_VARS["gb_comment"])) ? $HTTP_POST_VARS["gb_comment"] : '';
$gb_post->location = (isset($HTTP_POST_VARS["gb_location"])) ? $HTTP_POST_VARS["gb_location"] : '';
$gb_post->icq = (isset($HTTP_POST_VARS["gb_icq"])) ? $HTTP_POST_VARS["gb_icq"] : '';
$gb_post->aim = (isset($HTTP_POST_VARS["gb_aim"])) ? $HTTP_POST_VARS["gb_aim"] : '';
$gb_post->gender = (isset($HTTP_POST_VARS["gb_gender"])) ? $HTTP_POST_VARS["gb_gender"] : '';
$gb_post->userfile = (isset($HTTP_POST_FILES["userfile"]["tmp_name"]) && $HTTP_POST_FILES["userfile"]["tmp_name"] != "") ? $HTTP_POST_FILES : '';
$gb_post->user_img = (isset($HTTP_POST_VARS["gb_user_img"])) ? $HTTP_POST_VARS["gb_user_img"] : '';
$gb_post->preview = (isset($HTTP_POST_VARS["gb_preview"])) ? 1 : 0;
$gb_post->private = (isset($HTTP_POST_VARS["gb_private"])) ? 1 : 0;
echo $gb_post->process($HTTP_POST_VARS["gb_action"]);
} else {
echo $gb_post->process();
//
// Show the overall footer.
//
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
exit;
}
?>
Geplaatst: 20 nov 2003, 11:22
door Podium4
verwijzing is goed...