Page 1 of 10
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location:
Borgo San Michele
Testing Your Icy Phoenix Speed
Hi all...
I've opened this topic to test the speed of your XS, and being able to make some comparison.
I'll try to keep track of the best results...
How to proceed...
Copy the message included in this codeblock (Click SHOW in the SPOILER, then SELECT and CTRL + C in the CODEBLOCK)
[color=#DD3333]Text formatting (No Parameters)[/color]
[b]BOLD[/b]
[strong]STRONG[/strong]
[em]EM[/em]
[i]i[/i]
[u]u[/u]
[strike]strike[/strike]
[sup]sup[/sup]
[sub]sub[/sub]
[align=left]align[/align]
[align=center]align[/align]
[align=right]align[/align]
[align=justify]align[/align]
[center]center[/center]
[font=Arial]font[/font]
[font=Comic Sans MS]font[/font]
[font=Courier New]font[/font]
[font=Impact]font[/font]
[font=Lucida Console]font[/font]
[font=Lucida Sans Unicode]font[/font]
[font=Microsoft Sans Serif]font[/font]
[font=Symbol]font[/font]
[font=Tahoma]font[/font]
[font=Times New Roman]font[/font]
[font=Traditional Arabic]font[/font]
[font=Trebuchet MS]font[/font]
[font=Verdana]font[/font]
[font=Webdings]font[/font]
[font=Wingdings]font[/font]
[size=6]size[/size]
[size=36]size[/size]
[span class=topic_glo]span[/span]
[cell class=mg_quotetitle]cell[/cell][cell class=mg_quotediv]cell
cell
cell
cell
cell
cell
cell[/cell]
[cell class=mg_codetitle]cell[/cell][cell class=mg_codediv]cell
cell
cell
cell
cell
cell
cell
cell
cell[/cell]
[hr]
[color=#FF8866]color[/color]
[glow=#FFFFAA]glow[/glow]
[shadow=#888888]shadow[/shadow]
[highlight=#FFFFAA]highlight
[rainbow]rainbow[/rainbow]
[gradient cols=#FF8866 cole=#336699 iterations=8]gradient[/gradient]
[opacity=50]opacity[/opacity]
[fade=80]fading text[/fade]
[blur=80]blur[/blur]
[wave=70]wave text[/wave]
[fliph]fliph[/fliph]
[flipv]flipv[/flipv]
[marquee direction=up scrolldelay=120 behavior=alternate]marquee[/marquee]
[marquee direction=down scrolldelay=240 behavior=slide]marquee[/marquee]
[marquee direction=left scrolldelay=360 behavior=alternate]marquee[/marquee]
[marquee direction=right scrolldelay=480 behavior=slide]marquee[/marquee]
[img align=right]http://www.icyphoenix.com/templates/mg_themes/images/blue/sitelogo_small.png[/img]
[albumimg]1[/albumimg]
[albumimg align=center mode=full]1[/albumimg]
[smiley smilie=8 fontcolor=DD2244 shadowcolor=6699AA shieldshadow=1]Ciao[/smiley]
[url]http://www.icyphoenix.com/[/url]
[email]nospam@nospam.com[/email]
[list=1][*]list
[*]list
[*]list
[*]list
[*]list[/list]
[list=a][*]list
[*]list
[*]list
[*]list
[*]list[/list]
[list][*]list
[*]list
[*]list
[*]list
[*]list[/list]
[quote user="Mighty Gorgon"]quote[/quote]
[ot user="Mighty Gorgon"]ot[/ot]
[spoiler][code syntax=php]<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>[/code][/spoiler]
[code]<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>[/code]
[code highlight=2-4]<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>[/code]
[codeblock syntax=php]<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>[/codeblock]
[url=docs/readme_english.html#license]Readme[/url]
[cell class=spoiler][url=docs/readme_english.html#upgrade_phpbb]Readme[/url][/cell]
[hide][url=docs/readme_english.html#upgrade_phpbb]Readme[/url][/hide]
[wave][shadow=#888888][glow=#FFFFAA][color=#FF8866][size=24]EXAMPLE OF [highlight=#FFFFAA]COMBINING FX VISIBLE ONLY WITH IE[/size][/color][/glow][/shadow][/wave]
[color=#FF9966][b]Image 01[/b][/color]
[opacity=30%][img alt="Image 01" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/071101spiderman.jpg[/img][/opacity]
[color=#FF9966][b]Image 02[/b][/color]
[opacity=30%][img alt="Image 02" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/100102anneau2.jpg[/img][/opacity]
[color=#FF9966][b]Image 03[/b][/color]
[opacity=30%][img alt="Image 03" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/fantasy_fire_fairy.jpg[/img][/opacity]
[color=#FF9966][b]Image 04[/b][/color]
[opacity=30%][img alt="Image 04" slide=MG]http://www.icyphoenix.com/album_mod/upload/otf/demo/fantasy_phoenix.jpg[/img][/opacity]
Post it in your forum
Make sure that in ACP you have enabled the EXECUTION time on footer
Try loading the page WITH and WITHOUT post cache enabled (when you enable it, you have to load the post twice!)
Take note of the elapsed time and report it here!
Here is the demo:
Text formatting (No Parameters)
BOLD
STRONG
EM
i
u
strike
sup
sub
align
align
align
align
center
font
font
font
font
font
font
font
font
font
font
font
font
font
font
font
size
size
span
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
cell
color
[glow=#FFFFAA]glow[/glow]
[shadow=#888888]shadow[/shadow]
highlight
r a i n b o w
g r a d i e n t
opacity
fading text
[blur=80]blur[/blur]
[wave=70]wave text[/wave]
[fliph]fliph[/fliph]
[flipv]flipv[/flipv]
marquee
marquee
marquee
marquee
http://www.icyphoenix.com/
nospam [at] nospam [dot] com
list
list
list
list
list
list
list
list
list
list
Mighty Gorgon wrote:
quote
ot
<?php
define ( 'IN_PHPBB' , true );
$phpbb_root_path = './' ;
include( $phpbb_root_path . 'extension.inc' );
include( $phpbb_root_path . 'common.' . $phpEx );
// Start session management
$userdata = session_pagestart ( $user_ip , PAGE_INDEX );
init_userprefs ( $userdata );
// End session management
$gen_simple_header = true ;
$page_title = $lang [ 'Greeting_Messaging' ];
include( $phpbb_root_path . 'includes/page_header.' . $phpEx );
$year = create_date ( 'Y' , time (), $board_config [ 'board_timezone' ]);
$date_today = create_date ( 'Ymd' , time (), $board_config [ 'board_timezone' ]);
$user_birthday = realdate ( "md" , $userdata [ 'user_birthday' ]);
$user_birthday2 =(( $year . $user_birthday < $date_today )? $year + 1 : $year ). $user_birthday ;
$l_greeting = ( $user_birthday2 == $date_today ) ?
sprintf ( $lang [ 'Birthday_greeting_today' ], date ( 'Y' )- realdate ( 'Y' , $userdata [ 'user_birthday' ]) ) :
sprintf ( $lang [ 'Birthday_greeting_prev' ], date ( 'Y' )- realdate ( 'Y' , $userdata [ 'user_birthday' ]) , realdate ( str_replace ( 'Y' , '' , $lang [ 'DATE_FORMAT' ]), $userdata [ 'user_birthday' ]) );
$template -> set_filenames (array(
'body' => 'greeting_popup.tpl' ));
$template -> assign_vars (array(
'L_CLOSE_WINDOW' => $lang [ 'Close_window' ],
'L_MESSAGE' => $l_greeting ));
$template -> pparse ( 'body' );
include( $phpbb_root_path . 'includes/page_tail.' . $phpEx );
?>
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
<?php
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
// Start session management
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
// End session management
$gen_simple_header = true;
$page_title = $lang['Greeting_Messaging'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$year=create_date('Y', time(), $board_config['board_timezone']);
$date_today = create_date('Ymd', time(), $board_config['board_timezone']);
$user_birthday=realdate("md",$userdata['user_birthday']);
$user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;
$l_greeting = ($user_birthday2==$date_today) ?
sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :
sprintf ( $lang['Birthday_greeting_prev'], date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );
$template->set_filenames(array(
'body' => 'greeting_popup.tpl'));
$template->assign_vars(array(
'L_CLOSE_WINDOW' => $lang['Close_window'],
'L_MESSAGE' => $l_greeting ));
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>
<?php
define ( 'IN_PHPBB' , true );
$phpbb_root_path = './' ;
include( $phpbb_root_path . 'extension.inc' );
include( $phpbb_root_path . 'common.' . $phpEx );
// Start session management
$userdata = session_pagestart ( $user_ip , PAGE_INDEX );
init_userprefs ( $userdata );
// End session management
$gen_simple_header = true ;
$page_title = $lang [ 'Greeting_Messaging' ];
include( $phpbb_root_path . 'includes/page_header.' . $phpEx );
$year = create_date ( 'Y' , time (), $board_config [ 'board_timezone' ]);
$date_today = create_date ( 'Ymd' , time (), $board_config [ 'board_timezone' ]);
$user_birthday = realdate ( "md" , $userdata [ 'user_birthday' ]);
$user_birthday2 =(( $year . $user_birthday < $date_today )? $year + 1 : $year ). $user_birthday ;
$l_greeting = ( $user_birthday2 == $date_today ) ?
sprintf ( $lang [ 'Birthday_greeting_today' ], date ( 'Y' )- realdate ( 'Y' , $userdata [ 'user_birthday' ]) ) :
sprintf ( $lang [ 'Birthday_greeting_prev' ], date ( 'Y' )- realdate ( 'Y' , $userdata [ 'user_birthday' ]) , realdate ( str_replace ( 'Y' , '' , $lang [ 'DATE_FORMAT' ]), $userdata [ 'user_birthday' ]) );
$template -> set_filenames (array(
'body' => 'greeting_popup.tpl' ));
$template -> assign_vars (array(
'L_CLOSE_WINDOW' => $lang [ 'Close_window' ],
'L_MESSAGE' => $l_greeting ));
$template -> pparse ( 'body' );
include( $phpbb_root_path . 'includes/page_tail.' . $phpEx );
?>
Readme
Hidden Message:
Sorry, but you must be registered and also post a reply to view this message.
[wave][shadow=#888888][glow=#FFFFAA]
EXAMPLE OF COMBINING FX VISIBLE ONLY WITH IE [/glow][/shadow][/wave]
Image 01
Image 02
Image 03
Image 04
____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
3 users like this post • Share
#1 Fri 18 Aug, 2006 15:00
Sponsors
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location:
Borgo San Michele
Re: Testing Your XS Speed
Here is my time... with CACHE disabled!
Page Generation Time: 0.3458s (PHP: 84% SQL: 16%)
Other users.
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)
Tiempo en Generar la Pagina: 6.402s (PHP: 96% SQL: 4%)
Consultas SQL: 33 - Debug On - GZIP Habilitado
Tempo Generazione: 9.3273s (PHP: 99% SQL: 1%)
SQL queries: 39 - Debug On - GZIP Abilitato
Page Generation Time: 2.215s (PHP: 90% SQL: 10%)
Time without update:
Page Generation Time: 1.3445s (PHP: 95% SQL: 5%)
SQL queries: 40 - Debug On - GZIP Enabled
Tiempo en Generar la Pagina: 0.3356s (PHP: 90% SQL: 10%)
Consultas SQL: 43 - Debug On - GZIP Habilitado
Page Generation Time: 0.4537s (PHP: 86% SQL: 14%)
SQL queries: 31 - Debug On - GZIP Disabled
Tiempo en Generar la Pagina: 3.5284s (PHP: 96% SQL: 4%)
Consultas SQL: 46 - Debug On - GZIP Habilitado
Page Generation Time: 1.2455s (PHP: 97% SQL: 3%)
SQL queries: 38 - Debug On - GZIP Enabled
Page Generation Time: 0.6584s (PHP: 89% SQL: 11%)
SQL queries: 44 - Debug On - GZIP Enabled
____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
Edited by
Mighty Gorgon , Sun 27 Aug, 2006 04:09: Results updated!
Share
#2 Fri 18 Aug, 2006 15:35
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location:
Borgo San Michele
Re: Testing Your XS Speed
This is only for new release or we can try with the old too?
You can do better... try with the old... and then compare it with the new one...
Some BBCodes won't be parsed... but it doesn't matter...
Test it and report here the results!
____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
Share
#4 Fri 18 Aug, 2006 15:47
andrea75
Joined: August 2006
Posts: 379
Location:
Perugia
Re: Testing Your XS Speed
This is only for new release or we can try with the old too?
You can do better... try with the old... and then compare it with the new one...
Some BBCodes won't be parsed... but it doesn't matter...
Test it and report here the results!
I think that new BBcode causes some errors... I have a 404 error after a lot of seconds.............
It's not possible to post a new message with that code.
____________
My Icy forum: www.lineameteo.it
Staff Member @ IcyPhoenix.com & IcyPhoenix.it
Share
#5 Fri 18 Aug, 2006 16:10
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location:
Borgo San Michele
Re: Testing Your XS Speed
I think that new BBcode causes some errors... I have a 404 error after a lot of seconds.............
It's not possible to post a new message with that code.
I think you should change your host!
____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
Share
#6 Fri 18 Aug, 2006 16:17
zankyw
Joined: August 2006
Posts: 42
Location:
Re: Testing Your XS Speed
I want to see the Hide
(I'll test later at my board
Share
#7 Fri 18 Aug, 2006 16:18
ThE KuKa
Joined: August 2006
Posts: 489
Location:
Sabadell
Respuesta: Testing Your XS Speed
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)
Share
#8 Fri 18 Aug, 2006 16:20
Mighty Gorgon
Luca Libralato
Joined: August 2006
Posts: 7192
Location:
Borgo San Michele
Re: Testing Your XS Speed
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)
You should change your board settings...
____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
Share
#9 Fri 18 Aug, 2006 16:20
carlos
Joined: August 2006
Posts: 105
Location:
Espa?a
Respuesta: Testing Your XS Speed
Hello, i have problems, my web is very solowly all the times
What happens? What can i do?
Tiempo en Generar la Pagina: 6.402s (PHP: 96% SQL: 4%)
Consultas SQL: 33 - Debug On - GZIP Habilitado
www.foro-alemanes.com
Share
#10 Fri 18 Aug, 2006 17:21
zankyw
Joined: August 2006
Posts: 42
Location:
Re: Testing Your XS Speed
2.248 other sites hosted on this server could be the reason.
Look
this
Share
#11 Fri 18 Aug, 2006 18:31
carlos
Joined: August 2006
Posts: 105
Location:
Espa?a
Respuesta: Testing Your XS Speed
2.248 other sites hosted on this server could be the reason.
Look
this
y que puedo hacer?
What can i do?
Saludos
Share
#12 Fri 18 Aug, 2006 19:29
andrea75
Joined: August 2006
Posts: 379
Location:
Perugia
Re: Testing Your XS Speed
Tempo Generazione: 9.3273s (PHP: 99% SQL: 1%)
SQL queries: 39 - Debug On - GZIP Abilitato
In local................
____________
My Icy forum: www.lineameteo.it
Staff Member @ IcyPhoenix.com & IcyPhoenix.it
Share
#13 Fri 18 Aug, 2006 21:02
Zuker
Joined: August 2006
Posts: 2134
Location:
BA
Re: Testing Your XS Speed
Page Generation Time: 2.215s (PHP: 90% SQL: 10%)
____________
? Zuker - EDDB - LPM - Sharefields
Share
#14 Fri 18 Aug, 2006 22:14
zankyw
Joined: August 2006
Posts: 42
Location:
Re: Testing Your XS Speed
What can i do?
You should Speak with your host provider.
Time without update:
Page Generation Time: 1.3445s (PHP: 95% SQL: 5%)
SQL queries: 40 - Debug On - GZIP Enabled
Share
#15 Fri 18 Aug, 2006 22:26
Page 1 of 10
Was this topic useful?
Was this topic useful?
Link this topic
URL
BBCode
HTML
You cannot post new topics You cannot reply to topics You cannot edit your posts You cannot delete your posts You cannot vote in polls You cannot attach files You can download files You cannot post calendar events