Seite 1 von 1

Aufbaugeschwindigkeit

Verfasst: 27.12.2003 22:58
von hihocs
allso die Zeit wird nicht angezeigt :(

bitte sagt mir was an dem code falsch ist :

Code: Alles auswählen

<div align="center"><span class="copyright"><br />{ADMIN_LINK}<br />
<!--
	We request you retain the full copyright notice below including the link to www.phpbb.com.
	This not only gives respect to the large amount of time given freely by the developers
	but also helps build interest, traffic and use of phpBB 2.0. If you cannot (for good
	reason) retain the full copyright we request you at least leave in place the 
	Powered by phpBB {PHPBB_VERSION} line, with phpBB linked to www.phpbb.com. If you refuse
	to include even this then support on our forums may be affected. 

	The phpBB Group : 2002
// -->
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> {PHPBB_VERSION} &copy; 2001, 2002 phpBB Group,<b>{DURATION_TIME}</b><br /></span></div>
		</td>
	</tr>
</table>

</body>
</html>

Verfasst: 27.12.2003 23:07
von Henne
Wird die Variable denn zugewiesen?

Verfasst: 27.12.2003 23:24
von hihocs
weiß nicht !? wo sollte sie ??

Hier mal die Anleitung :)

Code: Alles auswählen

#-----[ ÖFFNEN ]-------------------------------------------------- 
# 
# includes/page_header.php
# 
#-----[ FINDE ]-------------------------------------------------- 
# 
define('HEADER_INC', TRUE);

# 
#-----[ DARUNTER EINFÜGEN ]-------------------------------------------------- 
# 
//
// duration_time
//
list($usec, $sec) = split(' ', microtime());
if($d_start = ((float)$usec + (float)$sec))
{
   define('duration',TRUE);
} 



#
#-----[ ÖFFNEN ]-------------------------------------------------- 
# 
# includes/page_tail.php
# 
#-----[ FINDE ]-------------------------------------------------- 
# 
$template->assign_vars(array(
   'PHPBB_VERSION' => '2' . $board_config['version'],
   'TRANSLATION_INFO' => ( isset($lang['TRANSLATION_INFO']) ) ? $lang['TRANSLATION_INFO'] : '',
   'ADMIN_LINK' => $admin_link)
); 

# 
#-----[ DARUNTER EINFÜGEN ]-------------------------------------------------- 
# 
//
// duration_time
//
if ( defined('duration') )
{
   $what['time'] = "erstellt in"; // kann angepasst werden (innerhalb der Anführungsstriche)
   list($usec, $sec) = split(' ',microtime());
   $d_end = ((float)$usec + (float)$sec);
   $time = $d_end-$d_start;
   
   $time = $what['time'] . ' ' . round($time, 2) . ' secs'; // "2" kennzeichnet 2 Stellen nach dem Komma
      $template->assign_vars(array(
      'DURATION_TIME' => $time)
   );
} 



# 
#-----[ ÖFFNEN ]-------------------------------------------------- 
# 
# templates/xxx/overall_footer.tpl
# 
#-----[ FINDE ]-------------------------------------------------- 
# 
# je nach genutztem Template könnte dieser Part unterschiedlich aussehen

<font size="-3">
  Powered by phpBB: {PHPBB_VERSION} &copy; 2001 <a href="http://www.phpbb.com/" target="_phpbb" class="smalllink"><b>phpBB
  Group <br> </b></a> 

# 
#-----[ DANACH EINFÜGEN ]-------------------------------------------------- 
# 
# man kann diesen Teil natürlich auch woanders (in der overall_footer.tpl) eintragen

{DURATION_TIME}



########################################################################################## 
##########################################################################################

Verfasst: 27.12.2003 23:30
von Henne
Was ist denn, wenn du der Variable irgendwas zuweist? Wird das ausgegeben?

http://smartor.is-root.com/viewtopic.php?t=2968
Teste sonst die mal...

Verfasst: 28.12.2003 00:06
von hihocs
thx henne