Tuesday, January 10, 2012

Downloads | ServerPress.com

Downloads | ServerPress.com: "Premium members have access to our high speed CDN (content delivery network) for faster downloads, full featured versions of products, support, updates, and unlimited access to the newest content for the duration of their membership.


DesktopServer Version 3.3.0
Our free DesktopServer Limited allows for only 3 virtual host servers. The unlimited version is available to our premium members only. Please select your computer platform (Macintosh or Windows)."

'via Blog this'

Getting Started with WordPress Multisite | ServerPress.com

Getting Started with WordPress Multisite | ServerPress.com: " /**
75
* For developers: WordPress debugging mode.
76
*
77
* Change this to true to enable the display of notices during development.
78
* It is strongly recommended that plugin and theme developers use WP_DEBUG
79
* in their development environments.
80
*/
81
define( 'FS_METHOD', 'direct' );
82
define('WP_DEBUG', false);
83
define('WP_ALLOW_MULTISITE', true);
84
define( 'MULTISITE', true );
85
define( 'SUBDOMAIN_INSTALL', true );
86
$base = '/';
87
define( 'DOMAIN_CURRENT_SITE', 'company.dev );
88
define( 'PATH_CURRENT_SITE', '/' );
89
define( 'SITE_ID_CURRENT_SITE', 1 );
90
define( 'BLOG_ID_CURRENT_SITE', 1 );
"

'via Blog this'

htaccess Code for WordPress Multisite • Perishable Press

htaccess Code for WordPress Multisite • Perishable Press: "Bonus: wp-config.php code

In addition to the above htaccess code, WordPress multisite requires the following code in your main site’s wp-config.php file:

define( 'MULTISITE', true );
define( 'SUBDOMAIN_INSTALL', false );
$base = '/';
define( 'DOMAIN_CURRENT_SITE', 'example.com' );
define( 'PATH_CURRENT_SITE', '/' );
define( 'SITE_ID_CURRENT_SITE', 1 );
define( 'BLOG_ID_CURRENT_SITE', 1 );
This code should be placed just above the line that says “That’s all, stop editing! Happy blogging.”. Unlike the htaccess code, this code requires editing: replace the “example.com” with your main site’s domain. Note that this code is also available in under Tools > Network when everything is working properly."

'via Blog this'

htaccess Code for WordPress Multisite • Perishable Press

htaccess Code for WordPress Multisite • Perishable Press: " fresh WordPress install with these conditions seems to work great. For these types of setups, here is the HTAccess code used in WordPress 3.0:

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
When everything is working properly, this code is available to you on the Tools > Network options page."

'via Blog this'

htaccess Code for WordPress Multisite • Perishable Press

htaccess Code for WordPress Multisite • Perishable Press: "Currently, multisite is easiest to setup under the following conditions:

WordPress for main site installed in the root directory
Each additional network site is created in its own subdirectory
Implementing multisite on a fresh WordPress install with these conditions seems to work great. For these types of setups, here is the HTAccess code used in WordPress 3.0:

"

'via Blog this'