Icy Phoenix
English Chit Chat - Testing Your Icy Phoenix Speed
Mighty Gorgon [ Fri 18 Aug, 2006 15:00 ]
Post subject: 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
Mighty Gorgon [ Fri 18 Aug, 2006 15:35 ]
Post subject: 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
andrea75 [ Fri 18 Aug, 2006 15:39 ]
Post subject: Re: Testing Your XS Speed
This is only for new release or we can try with the old too?
Mighty Gorgon [ Fri 18 Aug, 2006 15:47 ]
Post subject: 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!
andrea75 [ Fri 18 Aug, 2006 16:10 ]
Post subject: 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.
Mighty Gorgon [ Fri 18 Aug, 2006 16:17 ]
Post subject: 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!
zankyw [ Fri 18 Aug, 2006 16:18 ]
Post subject: Re: Testing Your XS Speed
I want to see the Hide
(I'll test later at my board
ThE KuKa [ Fri 18 Aug, 2006 16:20 ]
Post subject: Respuesta: Testing Your XS Speed
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)
Mighty Gorgon [ Fri 18 Aug, 2006 16:20 ]
Post subject: Re: Testing Your XS Speed
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)
You should change your board settings...
carlos [ Fri 18 Aug, 2006 17:21 ]
Post subject: 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
zankyw [ Fri 18 Aug, 2006 18:31 ]
Post subject: Re: Testing Your XS Speed
2.248 other sites hosted on this server could be the reason.
Look
this
carlos [ Fri 18 Aug, 2006 19:29 ]
Post subject: 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
andrea75 [ Fri 18 Aug, 2006 21:02 ]
Post subject: Re: Testing Your XS Speed
Tempo Generazione: 9.3273s (PHP: 99% SQL: 1%)
SQL queries: 39 - Debug On - GZIP Abilitato
In local................
Zuker [ Fri 18 Aug, 2006 22:14 ]
Post subject: Re: Testing Your XS Speed
Page Generation Time: 2.215s (PHP: 90% SQL: 10%)
zankyw [ Fri 18 Aug, 2006 22:26 ]
Post subject: 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
Mighty Gorgon [ Fri 18 Aug, 2006 23:30 ]
Post subject: Re: Testing Your XS Speed
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
So the best time is 1.3445s?
I think that all of you should review your board configurations...
Try this:
http://www.icyphoenix.com/viewtopic.php?t=75
And let me know if something will get better...
carlos [ Sat 19 Aug, 2006 00:20 ]
Post subject: Respuesta: Testing Your XS Speed
Thanks
Mighty Gorgon . Now:
Tiempo en Generar la Pagina: 2.7122s (PHP: 87% SQL: 13%)
Consultas SQL: 32 - Debug On - GZIP Habilitado
Mighty Gorgon [ Sat 19 Aug, 2006 00:25 ]
Post subject: Re: Testing Your XS Speed
Thanks
Mighty Gorgon . Now:
Tiempo en Generar la Pagina: 2.7122s (PHP: 87% SQL: 13%)
Consultas SQL: 32 - Debug On - GZIP Habilitado
Great improvement... but you can even do better... try playing with your settings...
carlos [ Sat 19 Aug, 2006 00:42 ]
Post subject: Respuesta: Testing Your XS Speed
Now:
What do you thing i can change? I do this
http://www.icyphoenix.com/viewtopic.php?t=75 and one thing, where is the option to quit the Thanks MOD?
Thanks
Tiempo en Generar la Pagina: 1.5755s (PHP: 92% SQL: 8%)
Consultas SQL: 31 - Debug On - GZIP Habilitado
Mighty Gorgon [ Sat 19 Aug, 2006 00:47 ]
Post subject: Re: Testing Your XS Speed
You should disable the Thank mod on a per forum basis from the Forum Management section... even if you won't gain too much just with that.
I think that 1.5755s is a good result for now...
lenitron [ Sun 20 Aug, 2006 18:09 ]
Post subject: Respuesta: Testing Your XS Speed
Tiempo en Generar la Pagina: 0.3356s (PHP: 90% SQL: 10%)
Consultas SQL: 43 - Debug On - GZIP Habilitado
napukjon [ Sun 20 Aug, 2006 18:20 ]
Post subject: Re: Testing Your XS Speed
Page Generation Time: 0.4537s (PHP: 86% SQL: 14%)
SQL queries: 31 - Debug On - GZIP Disabled
Hakkinen [ Mon 21 Aug, 2006 12:01 ]
Post subject: Re: Testing Your XS Speed
Nizzle [ Sat 26 Aug, 2006 00:29 ]
Post subject: Re: Testing Your XS Speed
Page Generation Time: 1.2455s (PHP: 97% SQL: 3%)
SQL queries: 38 - Debug On - GZIP Enabled
didn't do the whole optimise thingy though
I believe this is fast enough ^^
loading the images is the thing that's slowest
Round11 [ Sat 26 Aug, 2006 00:40 ]
Post subject: Re: Testing Your XS Speed
Page Generation Time: 1.2781s (PHP: 76% SQL: 24%)
SQL queries: 47 - Debug On - GZIP Enabled
I'll try MG's suggestions on settings and then repost.
Round11 [ Sat 26 Aug, 2006 00:51 ]
Post subject: Re: Testing Your XS Speed
Page Generation Time: 0.9359s (PHP: 79% SQL: 21%)
SQL queries: 53 - Debug On - GZIP Enabled
Better
Even better the 2nd time loading the page:
Page Generation Time: 0.6584s (PHP: 89% SQL: 11%)
SQL queries: 44 - Debug On - GZIP Enabled
Nizzle [ Sat 26 Aug, 2006 01:27 ]
Post subject: Re: Testing Your XS Speed
did you enable cache?
for the last one
Round11 [ Sat 26 Aug, 2006 05:04 ]
Post subject: Re: Testing Your XS Speed
did you enable cache?
for the last one
Not sure exactly HOW to enable cache. Where in the ACP do you do that?
Nizzle [ Sat 26 Aug, 2006 14:39 ]
Post subject: Re: Testing Your XS Speed
no idea
Mighty Gorgon [ Sun 27 Aug, 2006 04:07 ]
Post subject: Re: Testing Your XS Speed
Results updated in the second post.
Damn... lenitron is beating me...
did you enable cache?
for the last one
Not sure exactly HOW to enable cache. Where in the ACP do you do that?
ACP => Configuration => Posting => Disable Precompiled Posts
lenitron [ Sun 27 Aug, 2006 13:02 ]
Post subject: Re: Testing Your XS Speed
Results updated in the second post.
Damn... lenitron is beating me...
...
At the moment, my server is the best one!!
... but I must change it because the transfer isn't enough
Mighty Gorgon [ Sun 27 Aug, 2006 15:03 ]
Post subject: Re: Testing Your XS Speed
At the moment, my server is the best one!!
... but I must change it because the transfer isn't enough
Then I'll beat you again!
Anonymous [ Fri 20 Oct, 2006 22:24 ]
Post subject: Re: Testing Your XS Speed
for hide
Miguel [ Fri 17 Nov, 2006 21:42 ]
Post subject: Respuesta: Testing Your XS Speed
Tiempo en Generar la Pagina: 0.7343s (PHP: 68% SQL: 32%)
Consultas SQL: 39 - Debug On - GZIP Habilitado
hpl [ Fri 17 Nov, 2006 23:59 ]
Post subject: Re: Testing Your XS Speed
test
borbo [ Sat 18 Nov, 2006 16:40 ]
Post subject: Re: Testing Your XS Speed
I'd like to ask something about speed...If it not fits here plese move it anywhere you want to...
My page is pcbox.gr (fill the www in the front to access it)
If you try to access the user cp ,faq, or anything except forum and topics everything is just fine...
I tried to test my forum your way described above creating a post and the results was 9 secs!!!!!!
I thinks tha something is messed up with my database or...i dont know please help me guys !!!!!
Thanks a lot!
Mighty Gorgon [ Sun 19 Nov, 2006 19:55 ]
Post subject: Re: Testing Your XS Speed
I'd like to ask something about speed...If it not fits here plese move it anywhere you want to...
My page is pcbox.gr (fill the www in the front to access it)
If you try to access the user cp ,faq, or anything except forum and topics everything is just fine...
I tried to test my forum your way described above creating a post and the results was 9 secs!!!!!!
I thinks tha something is messed up with my database or...i dont know please help me guys !!!!!
I think you are getting help in another topic... so I'll ignore this!
tiolalu [ Sun 19 Nov, 2006 22:37 ]
Post subject: Respuesta: Testing Your XS Speed
Quote:
Tiempo en Generar la Pagina: 1.4482s (PHP: 96% SQL: 4%)
But it's in busy hour, I will try tomorrow morning again.
Edit: The same in the morning.
Mighty Gorgon [ Tue 28 Nov, 2006 22:46 ]
Post subject: Re: Testing Your XS Speed
this is what i got
Page Generation Time: 0.6976s (PHP: 71% SQL: 29%)
SQL queries: 36 - Debug On - GZIP Enabled
the thread url:
http://tinhthienthu.ath.cx/viewtopic.php?p=185#185
It is good!
hpl [ Thu 30 Nov, 2006 02:35 ]
Post subject: Re: Testing Your XS Speed
Tempo Generazione: 0.3894s (PHP: 81% SQL: 19%)
SQL queries: 60 - Debug On - GZIP Abilitato
Tempo Generazione: 0.3912s (PHP: 83% SQL: 17%)
SQL queries: 52 - Debug On - GZIP Abilitato
Tempo Generazione: 0.4076s (PHP: 82% SQL: 18%)
SQL queries: 57 - Debug On - GZIP Abilitato
Tempo Generazione: 0.4177s (PHP: 82% SQL: 18%)
SQL queries: 57 - Debug On - GZIP Abilitato
difus [ Thu 30 Nov, 2006 10:40 ]
Post subject: Re: Testing Your XS Speed
hpl your server is fast
oscarxp [ Thu 30 Nov, 2006 10:56 ]
Post subject: Re: Testing Your XS Speed
Black Angel Productions Forum
Quote:
Page Generation Time: 0.2353s (PHP: 85% SQL: 15%)
SQL queries: 37 - Debug On - GZIP Enabled
jz [ Fri 15 Dec, 2006 02:29 ]
Post subject: Re: Testing Your XS Speed
What the hell man!
Look at this crap
Page Generation Time: 2.5206s
Page Generation Time: 3.2233s
Page Generation Time: 7.1048s
how do you guys do it?
Vortex [ Fri 15 Dec, 2006 09:42 ]
Post subject: Re: Testing Your XS Speed
I say this because it could be useful for someone, who knows
Mine was veeeeeery slow (more than 8/9 seconds to load a page), now it loads averagely in less than one second... after I banned al Yahoo Slurp bot's ips range
Those bots are unbelievable... Sometimes I had more than 10 bots a time navigating my site
jz [ Fri 15 Dec, 2006 12:37 ]
Post subject: Re: Testing Your XS Speed
Do you think that's the only reason?
Mighty Gorgon [ Sun 24 Dec, 2006 20:35 ]
Post subject: Re: Testing Your XS Speed
I don't think that this is the only reason... but you can try banning them!
jz , do you have a link so I will have a look?
jz [ Wed 27 Dec, 2006 16:18 ]
Post subject: Re: Testing Your XS Speed
Mighty Gorgon [ Sun 07 Jan, 2007 02:23 ]
Post subject: Re: Testing Your XS Speed
Damn... this new server is a bit slower than the other one...
jz [ Sun 07 Jan, 2007 12:49 ]
Post subject: Re: Testing Your XS Speed
Yes it is., a little bit like my server.
when it wants is fast when it doesn't is slow.. bastards