Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 10
Goto page 1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next
 
Reply with quote Download Post 
Post 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)
    Spoiler: [ Show ]

  • 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

rainbow
gradient

opacity

fading text

[blur=80]blur[/blur]
[wave=70]wave text[/wave]
[fliph]fliph[/fliph]
[flipv]flipv[/flipv]

marquee
marquee
marquee
marquee


sitelogo_small











Ciao





http://www.icyphoenix.com/


  1. list
  2. list
  3. list
  4. list
  5. list



  1. list
  2. list
  3. list
  4. list
  5. list



  • list
  • list
  • list
  • list
  • list



Mighty Gorgon wrote: 
quote

Off Topic
 Mighty Gorgon: 
ot


Spoiler: [ Show ]


Code: [Download] [Hide]
  1. <?php  
  2. define('IN_PHPBB', true);  
  3. $phpbb_root_path = './';  
  4. include($phpbb_root_path . 'extension.inc');  
  5. include($phpbb_root_path . 'common.'.$phpEx);  
  6.  
  7. // Start session management  
  8. $userdata = session_pagestart($user_ip, PAGE_INDEX);  
  9. init_userprefs($userdata);  
  10. // End session management  
  11.  
  12. $gen_simple_header = true;  
  13. $page_title = $lang['Greeting_Messaging'];  
  14. include($phpbb_root_path . 'includes/page_header.'.$phpEx);  
  15. $year=create_date('Y', time(), $board_config['board_timezone']);  
  16. $date_today = create_date('Ymd', time(), $board_config['board_timezone']);  
  17. $user_birthday=realdate("md",$userdata['user_birthday']);  
  18. $user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;  
  19. $l_greeting = ($user_birthday2==$date_today) ?  
  20.     sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :  
  21.     sprintf ( $lang['Birthday_greeting_prev'],  date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );  
  22. $template->set_filenames(array(  
  23.         'body' => 'greeting_popup.tpl'));  
  24. $template->assign_vars(array(  
  25.         'L_CLOSE_WINDOW' => $lang['Close_window'],  
  26.         'L_MESSAGE' => $l_greeting ));  
  27. $template->pparse('body');  
  28. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);  
  29.  
  30. ?> 


Code: [Download] [Hide]
  1. <?php  
  2. define('IN_PHPBB', true);  
  3. $phpbb_root_path = './';  
  4. include($phpbb_root_path . 'extension.inc');  
  5. include($phpbb_root_path . 'common.'.$phpEx);  
  6.  
  7. // Start session management  
  8. $userdata = session_pagestart($user_ip, PAGE_INDEX);  
  9. init_userprefs($userdata);  
  10. // End session management  
  11.  
  12. $gen_simple_header = true;  
  13. $page_title = $lang['Greeting_Messaging'];  
  14. include($phpbb_root_path . 'includes/page_header.'.$phpEx);  
  15. $year=create_date('Y', time(), $board_config['board_timezone']);  
  16. $date_today = create_date('Ymd', time(), $board_config['board_timezone']);  
  17. $user_birthday=realdate("md",$userdata['user_birthday']);  
  18. $user_birthday2=(($year.$user_birthday<$date_today)? $year+1:$year).$user_birthday;  
  19. $l_greeting = ($user_birthday2==$date_today) ?  
  20.     sprintf ( $lang['Birthday_greeting_today'], date('Y')-realdate('Y',$userdata['user_birthday']) ) :  
  21.     sprintf ( $lang['Birthday_greeting_prev'],  date('Y')-realdate('Y',$userdata['user_birthday']) , realdate(str_replace('Y','',$lang['DATE_FORMAT']),$userdata['user_birthday']) );  
  22. $template->set_filenames(array(  
  23.         'body' => 'greeting_popup.tpl'));  
  24. $template->assign_vars(array(  
  25.         'L_CLOSE_WINDOW' => $lang['Close_window'],  
  26.         'L_MESSAGE' => $l_greeting ));  
  27. $template->pparse('body');  
  28. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);  
  29.  
  30. ?> 


Code: [Download] [Hide] [Select]
<?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 01



Image 02
Image 02



Image 03
Image 03



Image 04
Image 04

 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
Here is my time... with CACHE disabled!

Page Generation Time: 0.3458s (PHP: 84% SQL: 16%)





Other users.

ThE KuKa wrote: [View Post]
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)

carlos wrote: [View Post]
Tiempo en Generar la Pagina: 6.402s (PHP: 96% SQL: 4%)
Consultas SQL: 33 - Debug On - GZIP Habilitado

andrea75 wrote: [View Post]
Tempo Generazione: 9.3273s (PHP: 99% SQL: 1%)
SQL queries: 39 - Debug On - GZIP Abilitato

Zuker wrote: [View Post]
Page Generation Time: 2.215s (PHP: 90% SQL: 10%)

zankyw wrote: [View Post]
Time without update:
Page Generation Time: 1.3445s (PHP: 95% SQL: 5%)
SQL queries: 40 - Debug On - GZIP Enabled

lenitron wrote: [View Post]
Tiempo en Generar la Pagina: 0.3356s (PHP: 90% SQL: 10%)
Consultas SQL: 43 - Debug On - GZIP Habilitado

napukjon wrote: [View Post]
Page Generation Time: 0.4537s (PHP: 86% SQL: 14%)
SQL queries: 31 - Debug On - GZIP Disabled

Hakkinen wrote: [View Post]
Tiempo en Generar la Pagina: 3.5284s (PHP: 96% SQL: 4%)
Consultas SQL: 46 - Debug On - GZIP Habilitado

Nizzle wrote: [View Post]
Page Generation Time: 1.2455s (PHP: 97% SQL: 3%)
SQL queries: 38 -  Debug On - GZIP Enabled

Round11 wrote: [View Post]
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!
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
This is only for new release or we can try with the old too?
 




____________
My Icy forum: www.lineameteo.it
Staff Member @ IcyPhoenix.com & IcyPhoenix.it
 
andrea75Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
andrea75 wrote: [View Post]
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
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
Mighty Gorgon wrote: [View Post]
andrea75 wrote: [View Post]
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
 
andrea75Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
andrea75 wrote: [View Post]
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
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
I want to see the Hide

(I'll test later at my board  
 




____________
www.LphantES.com
 
zankywSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Respuesta: Testing Your XS Speed 
 
Page Generation Time: 1.817s (PHP: 85% SQL: 15%)

 




____________
ThE KuKa - www.phpBB-Es.COM - Custom Installations phpBB
 
ThE KuKaSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
ThE KuKa wrote: [View Post]
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
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 



 
carlosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
2.248 other sites hosted on this server could be the reason. Look this
 




____________
www.LphantES.com
 
zankywSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Respuesta: Testing Your XS Speed 
 
zankyw wrote: [View Post]
2.248 other sites hosted on this server could be the reason. Look this


y que puedo hacer?
What can i do?
Saludos
 



 
carlosSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post 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
 
andrea75Send private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
Page Generation Time: 2.215s (PHP: 90% SQL: 10%)

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Testing Your XS Speed 
 
carlos wrote: [View Post]
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

 




____________
www.LphantES.com
 
zankywSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 10
Goto page 1, 2, 3, 4, 5, 6, 7, 8, 9, 10  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron