Go Back   vb.org Archive > Community Discussions > Forum and Server Management
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 03-27-2009, 05:36 AM
veenuisthebest's Avatar
veenuisthebest veenuisthebest is offline
 
Join Date: Mar 2008
Location: India
Posts: 1,416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You just need to open your eyes

Code:
	// ****** DATASTORE CACHE CONFIGURATION *****
	// Here you can configure different methods for caching datastore items.
	// vB_Datastore_Filecache  - to use includes/datastore/datastore_cache.php
	// vB_Datastore_APC - to use APC
	// vB_Datastore_XCache - to use XCache
	// vB_Datastore_Memcached - to use a Memcache server, more configuration below
$config['Datastore']['class'] = 'vB_Datastore_XCache';

	// ******** DATASTORE PREFIX ******
	// If you are using a PHP Caching system (APC, XCache, eAccelerator) with more
	// than one set of forums installed on your host, you *may* need to use a prefix
	// so that they do not try to use the same variable within the cache.
	// This works in a similar manner to the database table prefix.
$config['Datastore']['prefix'] = 'your_prefix';
Reply With Quote
  #12  
Old 03-27-2009, 05:42 AM
mariocaz mariocaz is offline
 
Join Date: Feb 2008
Location: Mexico, D.F.
Posts: 424
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok yes I understand but only I have to put a name(prefix) there and that is all ??, really sorry if I am stupid.
Reply With Quote
  #13  
Old 03-28-2009, 07:22 PM
mariocaz mariocaz is offline
 
Join Date: Feb 2008
Location: Mexico, D.F.
Posts: 424
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I asked to my hosting that please install for me in the server the XCache and they are checking this.

I hope they do it, to immediately enable the XCache option in the config.php
Reply With Quote
  #14  
Old 03-28-2009, 08:06 PM
ssslippy ssslippy is offline
 
Join Date: Jan 2006
Posts: 877
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If your host runs cpanel some hosts are reluctant to install xcache on a shared environment. Eaccelerator is not as good but it is supported by cpanel so hosts are more willing to install this.
Reply With Quote
  #15  
Old 03-28-2009, 08:39 PM
mariocaz mariocaz is offline
 
Join Date: Feb 2008
Location: Mexico, D.F.
Posts: 424
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes I have Cpanel, so thank you for the tip and that is another option, and that options works with FileCache ?? or what ? please tell me.

Thanx ssslippy
Reply With Quote
  #16  
Old 03-29-2009, 03:40 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Filecache runs independent of installed services on the server.
Reply With Quote
  #17  
Old 03-29-2009, 05:16 AM
mariocaz mariocaz is offline
 
Join Date: Feb 2008
Location: Mexico, D.F.
Posts: 424
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok Dismounted if my hosting enabled something else to the server like Xcache I will ask for your help to know what to do.

Also please tell me what else you can recommend me to optimize my forum to the maximum..... I already did all this tips:

Quote:
Originally Posted by Brandon Sheley View Post
Optimizing vBulletin for SEO and Server load will help your overall performance.
Here are a few tips I've found.

1. Store CSS StyleSheets as Files

By default, vBulletin will store the CSS of your pages as HTML within the head of the document. This, when taken over thousands of pages, can be quite a heavy burden.

Storing CSS Stylesheets as files will allow users/spiders to cache the CSS as a file, and make each page smaller, HTML wise, giving your server a bit of a breather.

To begin, ensure your forums/clientscript/vbulletin_css directory is chmod 777 so the stylesheet files can be created.
Next, in the AdminCP, select the vBulletin Options menu then vBulletin Options.
Select Style and Language Options.
Set "Store CSS Stylesheets as Files?" to Yes.
Click Submit.


2. Gzip those pesky pages!

Many hosts these days come with gzip as standard, meaning if you enable it within vBulletin you can actually slow pages down.

If your host has gzip installed, follow these instructions:

Go to the AdminCP, expand the vBulletin Options menu and select vBulletin Options.
Select Cookies and HTTP Header Options.
Set "GZIP HTML Output" to No, set "GZIP Compression Level" to 0 and click Submit.

If your host does not have gzip installed, choose Yes and 1 for the above.

3. Restrict Search Engine Crawling

Those spiders..they index your content, but there are always places that you don't want or need them to go.
To restrict the pesky critters to only eating up your Content, do the following.

In your root (public_html) directory, upload the following robots.txt::


Code:
User-agent: *
Disallow: /forums/ajax.php
Disallow: /forums/attachment.php
Disallow: /forums/calendar.php
Disallow: /forums/cron.php
Disallow: /forums/editpost.php
Disallow: /forums/global.php
Disallow: /forums/image.php
Disallow: /forums/inlinemod.php
Disallow: /forums/joinrequests.php
Disallow: /forums/login.php
Disallow: /forums/member.php
Disallow: /forums/memberlist.php
Disallow: /forums/misc.php
Disallow: /forums/moderator.php
Disallow: /forums/newattachment.php
Disallow: /forums/newreply.php
Disallow: /forums/newthread.php
Disallow: /forums/online.php
Disallow: /forums/poll.php
Disallow: /forums/postings.php
Disallow: /forums/printthread.php
Disallow: /forums/private.php
Disallow: /forums/profile.php
Disallow: /forums/register.php
Disallow: /forums/report.php
Disallow: /forums/reputation.php
Disallow: /forums/search.php
Disallow: /forums/sendmessage.php
Disallow: /forums/showgroups.php
Disallow: /forums/subscription.php
Disallow: /forums/threadrate.php
Disallow: /forums/usercp.php
Disallow: /forums/usernote.php
Remove any lines that you WANT the spiders to see.. if you want them to crawl the Calendar, take out Disallow: /forums/calendar.php.

4. Move Attachments to the File System

Stock vBulletin Attachments are stored in the Database. Large attachments or frequent viewing of them can cause a strain.

To move them to the File System, create an attachments directory above your public_html (at the same level as it.. /root/username/public_html | root/username/attachments) and CHMod it 777.

By placing it at this level, we prevent anyone from being able to access the attachments directly (ie: not through vBulletin).

Next, go to the AdminCP and expand the Attachments menu.
Click on Attachment Storage Type.
Move your attachments out of the database and into the file system.

Attachment Path: /home/*username*/attachments


5. Move Avatars and Profile Pics to the File System

As with the Attachments above, but the Avatars are on every post, so cause a burden to the server whenever a post is viewed.

To move them to the filesystem, chmod your forums/customavatars and forums/customprofilepics directories to 777.
Go to the AdminCP and expand the Avatars menu.
Click User Picture Storage Type.
Choose to Move Avatars and Profile Pics to the File System.

Avatar Path: /home/*username*/public_html/forums/customavatars

Avatar URL: /forums/customavatars

Profile Pic Path: /home/*username*/public_html/forums/customprofilepics

Profile Pic URL: /forums/customprofilepics


6. Increase Cached Posts Lifespan

Posts can be "cached", meaning the server doesn't have to pull them from the database every time they are viewed.
To enable Post Caching, do the following:

Go to the AdminCP, expand the vBulletin Options menu and select vBulletin Options.
Select Server Settings and Optimization Options in the drop down menu.
Set "Cached Posts Lifespan" to 90.
Click Submit.
If you have very little spare space, drop it to 30.


7. Disable Search and Who's Online for Guests

Why should guests (which are often mainly Spiders) see your Who's Online and Search? Do the following to stop them and reduce the load.

Go to your AdminCP.
Expand the Usergroups menu.
Select Usergroup Manager.
Select Unregistered / Not Logged In.
Set both "Can Search Forums" and "Can View Who's Online" to No.
Click Submit.

8. Turn on fulltext searching

Go to your AdminCP and expand the vBulletin Options menu
Select Search Type.
Set "Empty postindex and word tables?" to Yes.
Click Submit.


9. vBulletin.org Optimisation Mods

The following link willl provide the various Modifications that have been written by the Community at vB.org:

vB3.5 Add-ons - vBulletin.org Forum

[Source....] thx to Kall @ vbenhanced.com
And this is my forum: www.all-reefs.com

Thank you my friend!!

Mario
Reply With Quote
  #18  
Old 05-04-2009, 03:42 PM
mariocaz mariocaz is offline
 
Join Date: Feb 2008
Location: Mexico, D.F.
Posts: 424
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi guys,

Finally I changed my hosting to a better option (Knownhost hosting) and I have now a VPS plan, so I think I could have XCache in my server.

I have a question right now I have enabled the FileCache option and when I did that, also I did this:

to enable Filesystem caching of your datastore. Make sure that you have /includes/datastore/datastore_cache.php set to 777 so that it may write to the file.

So now if I enable XCache I have to disable that ??? or I have to leave it like that ?

Please tell me and thank you in advance!!

Mario
Reply With Quote
  #19  
Old 05-05-2009, 05:40 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You must choose only one type of datastore caching.
Reply With Quote
  #20  
Old 05-05-2009, 03:28 PM
mariocaz mariocaz is offline
 
Join Date: Feb 2008
Location: Mexico, D.F.
Posts: 424
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello Dismounted,

Ok also I want to ask you, I have a CubeCart only store in that server the XCache will affect the online store ?? do I have to put a prefix in the config.php for that ??

And finally do I have to change again the permissions in the folder ? /includes/datastore/datastore_cache.php

Thank you again my friend!!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:30 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.13625 seconds
  • Memory Usage 2,268KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete