vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.

View RSS Feed

Optimization

Related with memcached, eAccelerator, xCache

  1. [How To] Cambiando Dominios: Directamente redireccionando desde el viejo al nuevo dominio con un htaccess

    by on 10-09-2008 at 11:14 AM (Danny Bembibre (dbembibre) Crawlability Inc.)
    Para propositos de SEO (esto es miles de páginas indexadas bajo un nombre de dominio que ya no contiene nuestro sitio actual) muchas veces es recomendable mantener el viejo nombre de dominio.

    Por tanto, si decides cambiarlo, necesitas hacer una redirección 301
    de tráfico desde el viejo dominio al nuevo dominio.

    Para llevarla a cabo simplemente necesitas editar o añadir un .htacces a la raíz de tu viejo dominio

    Code:
    Options +FollowSymLinks
    RewriteEngine
    
    ...
  2. [How To] 404 /301 Tool Utilizar en foros migrados a traves de ImpEx, despues de migrar

    by on 10-09-2008 at 11:12 AM (Danny Bembibre (dbembibre) Crawlability Inc.)
    Mert Original Post: http://www.vbseo.com/f2/404-301-tool...-forums-27498/

    Uno de las mayores ventajas que posée vBulletin es la herramienta ImpEx. ImpxEx permite importar de forma sencilla y rápida el contenido de tu foro anterior, lease, phpBB, IPB, SMF, etc, a vBulletin, permitiendote de forma sencilla tener tu foro vBulletin/vBSEO sin perder todos los post/usuarios del foro anterior que utilizabas.

    La parte mala de ImpEx reside en que ...
  3. Plugin Memcached vBulletin Templates

    by on 11-02-2007 at 06:03 AM (Danny Bembibre (dbembibre) Crawlability Inc.)
    I modify a old plugin of Orban that cached templates at disk and make a modify to put this templates into memcached server (i use as base a memcache wrapper of Jiri Kupiainen).
    Work ok at my forums, but im not a php expertise and i cant guaranteed that is bug free..

    Upload the template_cache.php file to you includes folder and install the xml product.

    Go to AdminCP->Memcached Cache Options and config:

    ...

    Updated 11-05-2007 at 04:45 PM by dbembibre

    Categories
    BMW FAQ Club , Optimization , Php
    Attached Thumbnails Attached Thumbnails mmc2.jpg  
    Attached Thumbnails Attached Files
  4. Enable caching functions get and put in eAccelerator

    by on 10-16-2007 at 06:33 AM (Danny Bembibre (dbembibre) Crawlability Inc.)
    eAccelerator_get and eAccelerator_put functions are now disabled by default. These functions have been disabled because when leaving them on without any precautions these functions can be used for a local DoS attack by keep putting data in shared memory.

    http://eaccelerator.net/ticket/37

    The correct way to enable it is configure with the following atribute

    Code:
    --with-eaccelerator-shared-memory
    
    Configure and install secuence
    ...

    Updated 10-16-2007 at 11:38 AM by dbembibre

    Categories
    vBSEO , BMW FAQ Club , Optimization , vBSEO 3.0.1
    Attached Thumbnails Attached Thumbnails vbseo_ea_storage.jpg  
  5. Daemon scripts for memcached

    by on 10-12-2007 at 02:53 PM (Danny Bembibre (dbembibre) Crawlability Inc.)
    I dont know if the starters script exist, but i cant found.
    This is my solution from debian starters script in my Centos5.

    Create the configuration file

    Code:
    touch /etc/memcached.conf
    
    And put in:

    Code:
    #Memory a usar
    -m 16
    # default port
    -p 11211
    # user to run daemon nobody/apache/www-data
    -u nobody
    # only listen locally
    -l 127.0.0.1
    
    Create the startups files

    Code:
    touch /etc/init.d/memcached
    
    ...

    Updated 10-16-2007 at 11:39 AM by dbembibre

    Categories
    vBSEO 3.0.1 , vBSEO , Optimization