Instructions http codex wordpress org Create A Network…

Instructions:
http://codex.wordpress.org/Create_A_Network
**************
I didn’t read this, but probably should:
http://codex.wordpress.org/Before_You_Create_A_Network
**************
Activate plugins on singles:
Go to network admin. Install a plugin. Do not activate it.
Go to a sub site. See the newly installed plugin in the list. Activate it.
Yes, it’s a bit more of a run around if you just want to fiddle with a plugin or two on one site.
**************
Plugin, Probably won’t use:
http://wordpress.org/extend/plugins/network-latest-posts/
**********************
The .htaccess file
http://wordpress.org/support/topic/need-hosting-advice
should look like this:
#BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]

  1. uploaded files

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

  1. 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]
#END WordPress

WordPress shopping carts http wordpress org extend plugins…

WordPress shopping carts
http://wordpress.org/extend/plugins/wp-online-store/screenshots/
http://thecartpress.com/
http://wordpress.org/extend/plugins/simple-e-commerce-shopping-cart/screenshots/
http://wordpress.org/extend/plugins/apptivo-ecommerce/
http://wordpress.org/extend/plugins/woocommerce/screenshots/
http://wordpress.org/extend/plugins/wordpress-ecommerce/screenshots/
http://wordpress.org/extend/plugins/thecartpress/screenshots/
http://wordpress.org/extend/plugins/ecommerce-feeder/
http://wordpress.org/extend/plugins/orderstorm-wordpress-e-commerce-custom/screenshots/
http://wordpress.org/extend/plugins/ready-ecommerce/

wordpress theme iphone http translate google com translate…

wordpress theme iphone: http://translate.google.com/translate?hl=en&sl=zh-CN&u=http://themes.wopus.org/wpthemes/cn-wordpress-themes/4733.html&prev=/search%3Fq%3DWarning:%2Bsimplexml_load_file%28%29%2B%255Bfunction.simplexml-load-file%255D:%2BI/O%2Bwarning%2B:%2Bfailed%2Bto%2Bload%2Bexternal%2Bentity%2B%2522http://mufeng.me/iphoto/notifier.xml%2522%26hl%3Den%26biw%3D1600%26bih%3D752%26prmd%3Dimvns&sa=X&ei=IQtEUNA5h4zpAbmhgKgM&ved=0CDwQ7gEwAw

How to remove the theme update remove action…

How to remove the theme update:
remove_action( 'load-update-core.php', 'wp_update_themes' );
add_filter( 'pre_site_transient_update_themes', create_function( '$a', "return null;" ) );
wp_clear_scheduled_hook( 'wp_update_themes' );

Or deactivate the theme you want to change the update.
Rename the theme you don’t want to show an update.
Reactivate the theme you don’t want to update.