Skip to main content

Home/ Drupal for Developers/ Group items tagged sites

Rss Feed Group items tagged

Hendy Irawan

Run multiple sites from the same code base (multi-site) | drupal.org - 0 views

  •  
    "If you are running more than one Drupal site, you can simplify management and upgrading of your sites by using the multi-site feature. Multi-site allows you to share a single Drupal installation (including core code, contributed modules, and themes) among several sites. This is particularly useful for managing the code since each upgrade only needs to be done once. Each site will have its own database and its own configuration settings, so each site will have its own content, settings, enabled modules, and enabled theme. However, the sites are sharing a code base and web document root, so there may be security concerns (see section below for more information)."
Hendy Irawan

Social Networking in Drupal: my SouthEast LinuxFest Drupal Day presentation | Isaac Sukin - 0 views

  •  
    " * I gave a presentation on Social Networking at DrupalCamp South Carolina on June 13th, 2010 (hosted by the SouthEast LinuxFest). Here are the slides I presented (complete with my notes on them) in various formats, as well as a link to the demo site (feel free to play around) and the downloadable Feature I exported based on the demo site. Demo site: http://sndemo.dev3.webenabled.net/ Feature: http://community.featureservers.org/project/self-social-network (also attached) View slides online: http://www.slideshare.net/mediacurrent/social-networking-in-drupal-isaac... If you want to download the slides, I recommend the PPTX. Finally, thanks to Mediacurrent and Doug Vann for making it possible for me to give this presentation."
Hendy Irawan

Social Networking Sites | groups.drupal.org - 0 views

  •  
    "This is the group for people who want to discuss Drupal's social networking tools. These tools include modules like Buddylist, Organic Groups, Invite, FOAF, Private message, and so forth. Sites that currently do successful social networking are: * Orkut * Facebook * MySpace * LinkedIn * Xing The goal of this group is to foster communication between the developers of Drupal's social networking modules, discuss roadmaps, and collect community input."
Scott Blackburn

Drupal Performance Tuning and Optimization for large web sites | 2bits.com, Inc. - Drup... - 0 views

  • articles discuss performance tuning and optimization of Drupal as it pertains to web sites with a large number of visits and page views.
  •  
    Great list of articles that "discuss performance tuning and optimization of Drupal as it pertains to web sites with a large number of visits and page views."
mesbah095

Guest Post Online - 0 views

  •  
    Article Writing & Guestpost You Can Join this Site for Your Article & guest post, Just Easy way to join this site & total free Article site. This site article post to totally free Way. Guest Post & Article Post live to Life time only for Current & this time new User. http://guestpostonline.com
Hendy Irawan

SELF Social Network | community.featureservers.org - 0 views

  •  
    "This feature was generated from the demonstration site for Isaac Sukin's SouthEast LinuxFest Drupal Day presentation on Social Networking in Drupal on June 13th, 2010. The original demo site is at http://sndemo.dev3.webenabled.net/"
Hendy Irawan

Project usage overview | drupal.org - 0 views

  •  
    This page summarizes the usage of all projects on drupal.org. For each week beginning on the given date the figures show the number of sites that reported they are using (any version of) the project. Detailed usage information for each release of a project is available by clicking the project name. These statistics are incomplete; only Drupal websites using the Update Status module are included in the data. As this module is now included with the download of Drupal since version 6.x, the data is heavily biased toward newer sites. Read more information about how these statistics are calculated.
Daniel Gregoire

Example Varnish VCL for a Drupal / Pressflow site | Drupal - 1 views

  •  
    Example Varnish configuration, used for optimizing site performance with file and database caching.
innoraft

Composerizing a non-composerized Drupal site to a Composerized Drupal site - 1 views

https://www.innoraft.com/blogs/composerizing-non-composerized-drupal-site-composerized-drupal-site

drupal composer

started by innoraft on 26 Jun 19 no follow-up yet
Daniel Gregoire

Restrict specific folders from public download (via .htaccess) | drupal.org - 0 views

  • If you set "public" as the download method, you can still protect some of your folders by settings in your .htaccess file, if you have mod_rewrite enabled. For instance, if your files live in sites/default/files, and you want to protect everything in sites/default/files/protected_download_dir, then you can add the following line to your central .htaccess file: RewriteRule ^sites\/default\/files\/(protected_download_dir\/.*)$ index.php?q=system/files/$1 The files in this folder (or, all files that match the regular expression) will not be served directly by apache, but by a full drupal request using the file_download() callback. The routing for system/files is defined in system_menu(). Access Checking for File Downloads Modules can do access checking on files downloaded through file_download(), by implementing hook_file_download(). For instance, the filefield module will do access checking for all files that you upload via filefield. It will only give access to people who are allowed to see the node and the field the file belongs to. In addition, you can look for modules that restrict file downloads based on the folder name or other criteria. Access Checking built-in with Filefield The filefield module has access checking built-in. To make use of this, please Make sure to use the latest dev version of filefield (for now). The current offical release (08/2009) has a bug in access checking. Have a look into filefield issue 516104. Configure the filefield you want to protect. Use the filefield path module, to define where the files for the filefield should be stored by default. Add a line to your .htaccess to protect this folder (see above). Use whatever modules to restrict node or field access.
Shahriar Kabir

Drupal - An Open Source CMS - 0 views

  •  
    Drupal is a distributed platform made by a dynamic group and overflowing with potential. Use as-is or snap in any of a huge number of free designs and modules for fast site assembly. Designers cherish the all around archived APIs of Drupal. Creators cherish their adaptability. Site chairmen love their boundless adaptability.
Daniel Gregoire

Searchlight: A Views-driven Approach to Pluggable Search in Drupal | Development Seed - 5 views

  •  
    Write-up and video on Development Seed's new "Searchlight" module, which brings the power of Solr or Sphinx as Views backends. A la Views 3.x, but with some differences. Also nice demo of Health Market Innovation's site which Dev. Seed did.
Daniel Gregoire

Reducing server resource utilization for busy sites by implementing fast 404s in Drupal... - 3 views

  • // List of extensions for static files $exts = 'txt|png|gif|jpe?g|shtml?|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp|xml'; // It is not an imagecache path, which we allow to go through Drupal if (!strpos($_SERVER['QUERY_STRING'], 'imagecache')) { // It is not our main feed page if ($_SERVER['QUERY_STRING'] != 'rss.xml') { // Is it a static file? if (preg_match('/\.(' . $exts . ')$/', $_SERVER['QUERY_STRING'])) // Just send a 404 right now ... { header('HTTP/1.0 404 Not Found'); print '<html>'; print '<head><title>404 Not Found</title></head>'; print '<body><h1>Not Found</h1>'; print '<p>The requested URL was not found on this server.</p>'; print '</body></html>'; exit(); } } }
  •  
    Fast Drupal 404 handling for static files.
Daniel Gregoire

Setup of /sites directory for multi-site | drupal.org - 0 views

  •  
    Good overview of directory structure for setting up Drupal multisite installations.
Hendy Irawan

More info | Social Networking - 0 views

  •  
    "Essentially, this website is built around the Facebook-style Statuses module and the Facebook-style Micropublisher extension for it. These two modules (plus the ubiquitous Views module) are what power the "streams" of status updates, links, and images that you see on this site. The rest is mostly fluff. Cool fluff, but fluff nonetheless. My name is Isaac Sukin, a.k.a. IceCreamYou. I frequently blog and tweet about social networking, and I'm planning a blog series about topics I covered in my DrupalCamp presentation in the coming days and weeks. I wrote the Facebook-style Statuses suite, and I am mentoring the Micropublisher initiative for Google's Summer of Code. I've been working on social networking in Drupal since 2007."
Razvan P

Visual Website Optimizer: Another Way To Run A/B Tests On Your Site - 0 views

  •  
    A/B testing for Drupal nodes.
Scott Blackburn

Finding Your Server's Bottleneck - 0 views

  •  
    # Matt Westgate (Lullabot) - Introduction [602KB] and Finding Your Server's Bottleneck [2.02MB] # James Walker (Bryght) - Optimizing The Web Server [740KB] # Jeremy Andrews (CivicSpace Labs) - Optimizing the Database [108KB] # Robert Douglass (Lullabot) - Memcache - Lightning Fast Drupal Sites [146KB] # Dries Buytaert (Drupal Project Founder) - Optimizing Drupal (not available)
Scott Blackburn

Take control of your Drupal theme | Lullabot - 0 views

  •  
    Want to create a front page that's styled differently from the rest of your site? Perhaps you need a separate admin theme? Or how about a login page which only shows the login block and nothing else? With a little PHP knowledge these problems are easy t
1 - 20 of 62 Next › Last »
Showing 20 items per page