Adobe Illustrator Links http mashable com 2010 08…

Adobe Illustrator Links
http://mashable.com/2010/08/19/adobe-illustrator-tutorials/

Adobe Illustrator Tutorials


This is the one I started: http://www.vectordiary.com/illustrator/how-to-create-a-vector-stopwatch-tutorial/
http://blog.spoongraphics.co.uk/articles/20-basic-illustrator-tutorials-every-beginner-should-see

Vectorgraphit – Tutorials, Free vectors


http://www.creativebloq.com/digital-art/illustrator-tutorials-1232697
http://www.creativebloq.com/graphic-design/how-create-vector-art-2131975
http://www.1stwebdesigner.com/tutorials/fundamental-illustrator-tutorials/

Code Canyon MOGish and Personal Wish List Ultimate…

Code Canyon MOGish and Personal Wish List
Ultimate Contact:
http://codecanyon.net/item/sofa-front-post-classified-ads-for-wordpress/3300950?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=feeleep
**Content Slider:
http://codecanyon.net/item/contentslide-slide-content-plugin-for-wordpress/3970054?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=OriginalEXE
Subscribe and Download:
http://codecanyon.net/item/subscribe-download/2687305?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=ichurakov
Part slider, part tips:
http://codecanyon.net/item/hotspot-map-wp-powerful-annotations-tooltips/2826664?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=nickys
Possible slider:
http://codecanyon.net/item/pop-out-panel-for-wordpress/3556558?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=b4ucode
MultiMedia:
http://codecanyon.net/item/znews-multimedia-post/3931373?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=srvalle
Contact:
http://codecanyon.net/item/simple-contact-slider/3744517?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=GDragoN

Code Canyon wish list eBook http codecanyon net…

Code Canyon wish list:
eBook
http://codecanyon.net/item/ebook-creator/3296224?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=osmman
Squares:
http://codecanyon.net/item/usquare-universal-responsive-grid-for-wordpress/3352677?WT.ac=category_thumb&WT.seg_1=category_thumb&WT.z_author=Br0
Slider Glider
http://codecanyon.net/item/accordions-plus-for-wordpress/full_screen_preview/3684077
http://codecanyon.net/item/allslider-wordpress-responsive-slider-carousel/3745375?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=Elliot
http://codecanyon.net/item/image-tag-slider-version-2/3870522?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=NuvuScripts
http://codecanyon.net/item/pop-out-panel-for-wordpress/3556558?sso?WT.ac=category_item&WT.seg_1=category_item&WT.z_author=b4ucode

How to Hide Errors on WordPress http make…

How to Hide Errors on WordPress

PHP Warning: Missing argument 2 for wpdb::prepare()


PHP Warning: Missing argument 2 for wpdb::prepare()
Hello plugin or theme author! You possibly found this post after searching the Internet for the error above: “PHP Warning: Missing argument 2 for wpdb::prepare().”
So, this is a new warning in 3.5. No sites are broken, everything is fine as before. But, this is indeed something you need to look at, because you may be exposing your users to a possible SQL injection vulnerability. Now that’s no fun!
First, if you’re a user and you want to get rid of these errors, you should turn off the displaying of errors in PHP. There are many ways to do this, such as in php.ini, .htaccess, etc. For this, you can just put this in wp-config.php. (Note that hiding errors on production sites is good practice anyway.)
@ini_set(‘display_errors’, 0);
If you’re a user, you can stop here. Just be sure to send a link to this post to the developer of the theme or plugin referenced in the error.
Now, developers: Here’s how $wpdb->prepare() is supposed to work:
$wpdb->prepare( “SELECT * FROM table WHERE ID = %d AND name = %s”, $id, $name );
See how $id — an integer, presumably — was passed as the second argument? That corresponds to the first placeholder, %d. Then, $name (a string) was passed as the third argument, thus the second placeholder, %s. This makes sure your query is safe, and prevents something like little bobby tables. (Note: the comic is wrong, don’t sanitize — always prepare your queries.)
The problem is, a number of people were calling $wpdb->prepare() with only one argument, like so:
$wpdb->prepare( “SELECT COUNT(*) FROM table” );
See, there’s no parameter (%d, %s, or for floats, %f) in this query. This happens to work fine, but the prepare call isn’t doing anything. You should instead the query directly, as there are no inputs.
But here’s where the problem lies:
$wpdb->prepare( “SELECT * FROM table WHERE id = $id” );
See the problem? That query isn’t secure! You may think you are “preparing” this query, but you’re not — you’re passing $id directly into the query, unprepared. And this, right here, is why $wpdb->prepare() now issues a warning if it isn’t called with more than one argument. Because you can’t prepare a query without more than one argument. Here’s a correct example:
$wpdb->prepare( “SELECT * FROM table WHERE id = %d”, $id );
This wasn’t a decision done lightly. We don’t like shoving PHP warnings into the faces of users and developers. But given the potential security risks, we wanted everyone to immediately look at how they are running queries. And, of course, always prepare them properly.
For more: wpdb Codex reference, #22262, and [22429].

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