Adcaelo
Forum Replies Created
-
remember to udate your robot.txt
# BEGIN XML-SITEMAP-PLUGIN
Sitemap: http://www.myndd.com/sitemap.xml.gz
Sitemap: http://www.myndd.com/sitemap-en.xml.gz
Sitemap: http://www.myndd.com/sitemap-live.xml.gz
# END XML-SITEMAP-PLUGINI run Google XML Sitemap on a WordPress 3.0 with network enabled and 3 different website.
i activate the plugin (version 3.2.3) as “Network Activate” and configure the plugin in all the site as following
for the main site http://www.myndd.com/ :
–Location of the sitemap :
—Automatic Detectionfor the 2nd website http://www.myndd.com/en/ :
— Location of the sitemap :
—- Custom Location
—— Absolute or relative path to the sitemap file, including name.
——— /home/myndd/public_html/sitemap-en.xml
—— Complete URL to the sitemap file, including name.
——— http://www.myndd.com/sitemap-en.xmlfor the 3rd website http://www.myndd.com/wathever/ :
— Location of the sitemap :
—- Custom Location
—— Absolute or relative path to the sitemap file, including name.
——— /home/myndd/public_html/sitemap-wathever.xml
—— Complete URL to the sitemap file, including name.
——— http://www.myndd.com/sitemap-wathever.xmland you can do this for all site on sub-directory or sub-domain…
then you just add all the sitemap (http://www.myndd.com/sitemap.xml, http://www.myndd.com/sitemap-en.xml, http://www.myndd.com/sitemap-wathever.xml) to your Google / Yahoo / Etc Webmaster Tools
si is not perfect but it can help you before Google XML Sitemap 4.0
Forum: Fixing WordPress
In reply to: Give a User Access to a Page, Just a PageI’m writing a plugin like this
it will be very simple, juste bind User with Page and when user is in /wp-admin/ he should see page menu and all page he can edit.
Everything ready, we can choose user and page and save it
in DB but i can’t give acces for the moment.I need to finish it as quick as possible so if anyone has idea it will be very helpfull (I’m working with WordPress 3.0).
i will update it after and make it better and more user-friendly but now, i really need to found how to give write access (in a clean way).
i think many people hope a plugin like this.
Forum: Plugins
In reply to: How I can use TinyMCE for my own pluginaccording to http://blog.zen-dreams.com/en/2009/06/30/integrate-tinymce-into-your-wordpress-plugins/
you need to enqueue script in wordpress header (for me it’s admin header)so :
add_filter('admin_head','ShowTinyMCE'); function ShowTinyMCE() { // conditions here wp_enqueue_script( 'common' ); wp_enqueue_script( 'jquery-color' ); wp_print_scripts('editor'); if (function_exists('add_thickbox')) add_thickbox(); wp_print_scripts('media-upload'); if (function_exists('wp_tiny_mce')) wp_tiny_mce(); wp_admin_css(); wp_enqueue_script('utils'); do_action("admin_print_styles-post-php"); do_action('admin_print_styles'); }and
the_editor($content_to_load);where you want your tinyMCE text area
Not perfectly working with WP 3.0 (beta) i’m working on it, but you can use it as a text area and media upload work (upload file / add code into text)