Joomla! Discussion Forums



It is currently Fri Nov 27, 2009 7:47 am (All times are UTC )

 


Forum rules

Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Security and Performance FAQs
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 186 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7  Next
Author Message
Posted: Sat Jun 13, 2009 8:19 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Sun Jan 14, 2007 1:18 pm
Posts: 54
Location: Paris
ok

this is an issue in rokbox.php, as it call the javascript file with the "$document->baseurl"

so you can try in plugins/system/rokbox.php to change this line (49):
Code:
      $rokboxJS = $document->baseurl."/plugins/system/rokbox/rokbox.js";


by this one:
Code:
      $rokboxJS = JURI::root() . "plugins/system/rokbox/rokbox.js";

_________________
Joomla 1.5.10 Fr/En


Top
   
 
Posted: Sat Jun 13, 2009 10:31 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
Thank you very much

that solved the problem!


Top
  E-mail  
 
Posted: Sun Jun 14, 2009 2:15 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
thanks again my sites are now around 80 on Yslow.

Maybe I am getting to excited here but
I still have a Grade F on Make fewer HTTP requests

This page has 14 external Javascript scripts. Try combining them into one.
This page has 10 external stylesheets. Try combining them into one.
This page has 9 external background images. Try combining them with CSS sprites.

Can I change to a better score using SO or do i have to use another technique?

Ps my site use RocketTheme templates...

http://salsa.panama-hat-central.com/

thanks


Top
  E-mail  
 
Posted: Sun Jun 14, 2009 3:23 am 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Sun Jan 14, 2007 1:18 pm
Posts: 54
Location: Paris
sweet160 wrote:
I still have a Grade F on Make fewer HTTP requests

This page has 14 external Javascript scripts. Try combining them into one.
This page has 10 external stylesheets. Try combining them into one.

For this two things, you can use CssJsCompress plugin
http://extensions.joomla.org/extensions ... 50/details

That's what I do on my own site.
And if you have something messed up because of some javascript doesn't support the compression of the plugin, you can add them in the excepetions field of the parameters.
For example I had to put jceutilities-220.js onto the exceptions.

So by one side you'll got a unification of almost all the css and js by the plugin, that just make two http requests, one for the js and one for the css.
All the rest will be still handle by S.O

sweet160 wrote:
This page has 9 external background images. Try combining them with CSS sprites.

This one is by far the most difficult to do, I already try for some files, but it's very hard to do, so don't bother you with that too much.

_________________
Joomla 1.5.10 Fr/En


Top
   
 
Posted: Sun Jun 14, 2009 1:07 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
I tried to install the plugin but I still get the Grade F on Make fewer HTTP requests.

Could it be that I have to change the order of the plugin?

I installed the latest version

Thanks,
Jo


You do not have the required permissions to view the files attached to this post.


Top
  E-mail  
 
Posted: Sun Jun 14, 2009 1:40 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Sun Jan 14, 2007 1:18 pm
Posts: 54
Location: Paris
yes you should play with the order of the plugins.

At least you must have two links in the head section of your source code.

one for js
<script type="text/javascript" src="/plugins/system/CssJsCompress/js.php?js=5ee3a3bd22f5f14c490999a2e6e6c91d.js.gz"></script>

and one for the css
<link rel="stylesheet" type="text/css" href="/plugins/system/CssJsCompress/css.php?css=0749faea95c1f3020c5ae6572feb86e7.css.gz"/>

_________________
Joomla 1.5.10 Fr/En


Top
   
 
Posted: Sun Jun 14, 2009 2:39 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
I pasted that code into the index.php of my template, and I have changed the order of my plugins but still I am in the red for http requests

Code:
   <head>

<script type="text/javascript" src="/plugins/system/CssJsCompress/js.php?js=5ee3a3bd22f5f14c490999a2e6e6c91d.js.gz"></script>
<link rel="stylesheet" type="text/css" href="/plugins/system/CssJsCompress/css.php?css=0749faea95c1f3020c5ae6572feb86e7.css.gz"/>

      <jdoc:include type="head" />
      <?php
      require(YOURBASEPATH . DS . "rt_utils.php");
      require(YOURBASEPATH . DS . "rt_head_includes.php");

   ?>
<meta name="verify-v1" content="nXI2GgBicpJaYWNslTtsL7Js4GMW9lkpXKZMsMvglIo=" />

</head>


I do have set GZip JavaScript and CSS to no right?


Top
  E-mail  
 
Posted: Sun Jun 14, 2009 3:21 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Sun Jan 14, 2007 1:18 pm
Posts: 54
Location: Paris
No lol

those links were just examples !

Do not copy and paste that !

You must have set to Yes the js, css and gzip in the plugin configuration

To see if the plugin is working well, you should see in the joomla cache directory two things.
One directory /js and one /css

And also, if you right clic on your site frontpage and so clic on "show source code", here you will see the links in the head section.

_________________
Joomla 1.5.10 Fr/En


Top
   
 
Posted: Sun Jun 14, 2009 7:24 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
haha,

that was silly of my, I misunderstood and took your words too litarally!

I will have try some more with this plugin to get it to work,

btw

Sirius, are you from IRan?


Top
  E-mail  
 
Posted: Sun Jun 14, 2009 7:36 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
SiriusOCT wrote:
yes you should play with the order of the plugins.

At least you must have two links in the head section of your source code.

one for js
<script type="text/javascript" src="/plugins/system/CssJsCompress/js.php?js=5ee3a3bd22f5f14c490999a2e6e6c91d.js.gz"></script>

and one for the css
<link rel="stylesheet" type="text/css" href="/plugins/system/CssJsCompress/css.php?css=0749faea95c1f3020c5ae6572feb86e7.css.gz"/>


I see this now in the source code in the browser..

Also in the cache things are happening.

The extensions is working but I cant see the benefits...

But I get a Yslow score of 83 without the extension
and a score of 80 with the extension

and I dont get a better score for my http requests...

Any more thoughts?

Thanks again,
and sorry for my folly before ;)


Top
  E-mail  
 
Posted: Sun Jun 14, 2009 8:17 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Sun Jan 14, 2007 1:18 pm
Posts: 54
Location: Paris
You never can get ride of all the http requests, so don't bother you too much with that.
For example you'll always get some requests from the advertising. And you can't do something for that.
83 is very good indeed, there's not so much site that got this rank.
So keep try to optimize step by step, point by point.

Also you can use the new tool from google "Page Speed", pretty the same thing that YSlow, but with some interesting others analysis and point of views.

_________________
Joomla 1.5.10 Fr/En


Top
   
 
Posted: Fri Jun 19, 2009 1:06 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 07, 2006 9:45 pm
Posts: 9
Funny thing is that I installed this program and it was caching the files, but my site went from a yslow speed of 17.141s to 28.463s - it almost doubled my load time. What could I be doing wrong here?


Top
  E-mail  
 
Posted: Mon Jun 22, 2009 11:46 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri May 02, 2008 2:53 am
Posts: 16
Location: Ohio, USA
My errors are fixed after upgrading to latest JCE and tweaks to .htaccess. Thanks SiriusOCT!

best-t1 wrote:
I've installed SO and it's working nicely with one exception.

JCE is my default editor. When I open an article and subsequently click on the Edit Code icon, I get the following three pop up messages in succession.

SmartOptimizer Error: File not found (../tiny_mce_popup.js).

SmartOptimizer Error: File is out of base directory.smartoptimizer/js/advcode.js

SmartOptimizer Error: File is out of base directory.smartoptimizer/js/codemirror.js

Somewhat, by chance, I found that the file, plugins/editors/jce/tiny_mce/plugins/advcode/advcode.html contained the following relative path references (labeled Original) which I changed to full path references.

Original:
<script type="text/javascript" src="tiny_mce/tiny_mce_popup.js"></script>

Changed to:
<script type="text/javascript" src="../../plugins/editors/tinymce/jscripts/tiny_mce/tiny_mce_popup.js"></script>

Original:
<script type="text/javascript" src="js/advcode.js"></script>

Changed to:
<script type="text/javascript" src="../../plugins/editors/jce/tiny_mce/plugins/advcode/js/advcode.js"></script>

Original:
<script type="text/javascript" src="js/codemirror.js"></script>

Changed to:
<script type="text/javascript" src="../../plugins/editors/jce/tiny_mce/plugins/advcode/js/codemirror.js"></script>

As a result of the change, I no longer get the pop up messages, although the Edit Code window remains blank or empty as

it did before with no trace of any html code.

Not sure what to do next or whether my modification is even correct. Any help is appreciated!

Thanks in advance!

Craig

_________________
Instant Broadband Quotes & Availability online for DSL, Cable, Cellular, T1, Managed Ethernet, MPLS, SIP Trunking & more at http://www.best-t1.com. USA only.


Top
  E-mail  
 
Posted: Wed Jul 01, 2009 10:25 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Mar 13, 2009 12:54 pm
Posts: 44
This extension is great! I had some problems with rokbox on Administrator backend, but it's solved now thanks to SiriusOCT.
Thank you so much!


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 1:51 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Jul 09, 2009 5:10 pm
Posts: 107
Location: Southsea, UK
Great thread guys!
Some super information in here!
Many Thanks to SiriusOCT and the authors of CssJsCompress.

I installed SO and CssJsCompress and had no problems at all, the site and admin areas seem to be functioning correctly...even with JCE installed (I'm running 1.5.12)
The only question I have is over disabled ETAG's. This might make sense in some cases, but if the site is running from a single server, surely ETAG's want to be enabled. I've kept the ETAG by adding
FileETag MTime Size
to my .htaccess

I'm now getting 92 on YSLOW, ruleset V2, 88 on ruleset V1, and 98 on small site/blog!

I've got 2 more phases of optimisations to do, converting backgrounds to using CSS sprites, and using some javascript to request images, as currently I'm sending a fixed quantity from the server, then using javascript to hide/display depending on screen resolution.
I'm not sure of the rules for posting the website in question, so I'll not do so, but I think it could be interesting as it's a quite heavily modified joomla site!

_________________
Online art gallery - http://www.finegallery.co.uk


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 2:07 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 07, 2006 9:45 pm
Posts: 9
I am going to try it again. Any ideas on how to get the javascript at the bottom of the page like YSlow says it should be? I can't figure out how to get the java to load last in Joomla.


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 2:25 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 07, 2006 9:45 pm
Posts: 9
Ok, I tried again after removing Apache server and installing LigHTTP on the server instead and now this works great.

V2 Before - 73 - now 81
V1 Before - 61 - now 73
Blog Before - 72 - now 85

Still need to try and fix this, but I don't know how:

This page has 10 external Javascript scripts. Try combining them into one.
This page has 3 external stylesheets. Try combining them into one.
This page has 17 external background images. Try combining them with CSS sprites.

Can't get rid of the 17 external background images, it is the way that JReviews works when doing the feeds and the entire site is dynamically changing by the hour some times. I have cssJsCompress installed too.


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 2:39 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Jul 09, 2009 5:10 pm
Posts: 107
Location: Southsea, UK
@phpdawg, I'm having a look at moving the javascript to the bottom of the document...but it will be a hack (not that I'm afraid of course), also to combine js and css just install CssJsCompress, seems to work a treat.

_________________
Online art gallery - http://www.finegallery.co.uk


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 2:40 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Jul 09, 2009 5:10 pm
Posts: 107
Location: Southsea, UK
Oops, missed the bit at the end when you said you already had it installed! It should combine everything...is it activated and the options are turned on?

_________________
Online art gallery - http://www.finegallery.co.uk


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 2:43 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Dec 07, 2006 9:45 pm
Posts: 9
I had to turn it off for all of the JReviews javascripts because they were not compatible. Everything else is compressed though. Perhaps I am at the finish line and it is as good as it gets. We have over 5000 visitors per day and I was getting complaints about the speed (and they were right) so I am just trying to do all I can do.


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 3:21 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Jul 09, 2009 5:10 pm
Posts: 107
Location: Southsea, UK
Ok, I've done some hacking, and it's very very simple to add functionality to add scripts anywhere you want in the document, not just the head!
Here's what I did, there may be many other ways of doing this, but I'm no expert on the framework, so someone please correct, or run with this to make it better!

Working in : libraries\joomla\document\document.php
Declare 2 more vars as follows:
var $_foot_scripts = array();
var $_footscript = array();
I put them right under
var $_scripts = array(); //Around line 149
Add 2 functions as follows:
Function 1 :
function addFootScript($url, $type="text/javascript") {
$this->_foot_scripts[$url] = $type;
}
Again as it was all cut and paste, i popped them in under their originals (in this case addScript), around line 431
Function 2:
function addFootScriptDeclaration($content, $type = 'text/javascript')
{
if (!isset($this->_footscript[strtolower($type)])) {
$this->_footscript[strtolower($type)] = $content;
} else {
$this->_footscript[strtolower($type)] .= chr(13).$content;
}
}
Thats it for the document.php
Then I created a new file in libraries\joomla\document\html\renderer called foot.php which was a simple copy and paste from the head.php modified to only add from the _footscript. Attached is the file.

Then instead of $document->addScript()
use
$document->addFootScript()

Then in your template index.php file you will need to add
<jdoc:include type="foot" />
where you want the scripts to be loaded.


You do not have the required permissions to view the files attached to this post.

_________________
Online art gallery - http://www.finegallery.co.uk


Top
  E-mail  
 
Posted: Fri Jul 24, 2009 4:54 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Thu Jul 09, 2009 5:10 pm
Posts: 107
Location: Southsea, UK
I've continued poking around with this, and modded the standard addScript to pop the values in _foot_scripts. Of course when it comes to generating the page, the orders are wrong, because foot will processed first, and might not contain the scripts being added. I've got a good work around for that, but it's not as pretty as I'd like...
It's all doable, it depends on how nasty you want the hacks to be!

_________________
Online art gallery - http://www.finegallery.co.uk


Top
  E-mail  
 
Posted: Tue Jul 28, 2009 7:29 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Tue Sep 25, 2007 12:12 pm
Posts: 14
Location: South Australia
I am also getting the 'SmartOptimizer Error: File is out of base directory.' error in the admin section only.

Has anyone got a copy of the modified index.php that was posted on the first page of this thread to pinpoint what is causing the error as the one posted cannot be downloaded?


Top
  E-mail  
 
Posted: Fri Jul 31, 2009 4:49 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Thu Feb 14, 2008 12:11 am
Posts: 29
Thanks again for a great optimizer!

All my site go to around 80 and I am very happy with that.

I just have one more question.

I installed JCE and a Spanish language pack.

Since then I get this erro "SmartOptimizer Error: File not found (../plugins/editors/jce/tiny_mce/plugins/article/langs/es.js"

when I login and try to edit front end.

I checked and the file isnt there...

What should I do?

Thanks thanks thanks!!!!


Top
  E-mail  
 
Posted: Sun Aug 09, 2009 3:01 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Feb 27, 2009 9:27 am
Posts: 49
Location: www.a2phone.com
Thank for sharing : SiriusOCT
Its very helpful, my sites run more fastest now

_________________
a2phone Directory - http://www.a2phone.com
a2phone Solution - http://www.a2phone.net


Top
  E-mail  
 
Posted: Fri Aug 14, 2009 4:07 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Oct 17, 2008 3:27 pm
Posts: 27
I aslo need the index.php that will allow me to find out where my "out of base" error is coming from...anyone have a copy I can use?

Much Appreciated


Top
  E-mail  
 
Posted: Tue Sep 01, 2009 9:47 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Dec 30, 2008 3:17 am
Posts: 2
The backend administrator page looks like it doesn't have any css loaded. Does anybody know how to fix this issue? Thanks for the help in advance.


You do not have the required permissions to view the files attached to this post.


Top
  E-mail  
 
Posted: Sat Sep 19, 2009 5:17 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Jul 08, 2009 7:15 am
Posts: 28
Not getting this to work correctly yet.

I uploaded the Smartoptimizer directory to the root directory of my website. This is the same level as my index.php joomla file.

I then went in and set 777 for permissions for the cache subdirectory.

I then and inserted the .htaccess contents into my .htaccess just after the RewriteEngine On line as such:

Code:
##
# @version $Id: htaccess.txt 10492 2008-07-02 06:38:28Z ircmaxell $
# @package Joomla
# @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

##  Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
#  mod_rewrite in use

RewriteEngine On


<IfModule mod_expires.c>
   <FilesMatch "\.(gif|jpg|jpeg|png|swf|css|js|html?|xml|txt)$">
      ExpiresActive On
      ExpiresDefault "access plus 10 years"
   </FilesMatch>
</IfModule>
<IfModule mod_rewrite.c>
   RewriteEngine On
   
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*\.(js|css))$ smartoptimizer/?$1
   
   <IfModule mod_expires.c>
      RewriteCond %{REQUEST_FILENAME} -f
      RewriteRule ^(.*\.(js|css|html?|xml|txt))$ smartoptimizer/?$1
   </IfModule>

   <IfModule !mod_expires.c>
      RewriteCond %{REQUEST_FILENAME} -f
      RewriteRule ^(.*\.(gif|jpg|jpeg|png|swf|css|js|html?|xml|txt))$ smartoptimizer/?$1
   </IfModule>
</IfModule>
<FilesMatch "\.(gif|jpg|jpeg|png|swf|css|js|html?|xml|txt)$">
   FileETag none
</FilesMatch>



########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode crap to send via URL
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Send all blocked request to homepage with 403 Forbidden error!
RewriteRule ^(.*)$ index.php [F,L]
#
########## End - Rewrite rules to block out some common exploits

#  Uncomment following line if your webserver's URL
#  is not directly related to physical file paths.
#  Update Your Joomla! Directory (just / for root)

# RewriteBase /
RewriteCond %{HTTP_HOST} !^aion-on-line.com$ [NC]
RewriteRule ^(.*)$ http://aion-on-line.com/$1 [L,R=301]

########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section



I also tried uncommenting "RewriteBase /" but no change.

Everything on my site appears to be working but I am not seeing any speed increase. I do have files in my cache folder.

My host is Godaddy and it is running on Apache. It does support GZIP.

Is there a forum for this Smartoptimizer program somewhere by the way? This is the only location I have seen where anyone is talking about it.


Top
  E-mail  
 
Posted: Sat Oct 10, 2009 1:19 am 
Joomla! Intern
Joomla! Intern
Offline

Joined: Sat Apr 22, 2006 3:09 pm
Posts: 65
Hello

I have gallery3 installed but I alway get error when access " Smartoptimizer Error: File is out of base directory " .

How I pass this error ?? or make gallery3 folder not effect by this mod .

Thanks


Top
  E-mail  
 
Posted: Sat Oct 10, 2009 1:26 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Feb 27, 2009 9:27 am
Posts: 49
Location: www.a2phone.com
You can read carefully from first page for your problem.

@davidmanvell
Try to put the SO htaccess code to the beginner of your htaccess, and check the SO cache folder

_________________
a2phone Directory - http://www.a2phone.com
a2phone Solution - http://www.a2phone.net


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 186 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7  Next

Quick reply

 



Who is online

Users browsing this forum: No registered users and 12 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group