{"id":11066,"date":"2010-11-02T02:25:14","date_gmt":"2010-11-02T02:25:14","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/mingle-users-online\/"},"modified":"2010-11-03T12:57:29","modified_gmt":"2010-11-03T12:57:29","slug":"mingle-users-online","status":"closed","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/mingle-users-online\/","author":5056151,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"0.1","stable_tag":"trunk","tested":"","requires":"","requires_php":"","requires_plugins":"","header_name":"Mingle Users Online","header_author":"Jay Schires (iComNow Modified)","header_description":"","assets_banners_color":"","last_updated":"2010-11-03 12:57:29","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"http:\/\/wordpress.org\/extend\/plugins\/mingle-users-online\/","header_author_uri":"","rating":0,"author_block_rating":0,"active_installs":20,"downloads":14134,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":0},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":[],"block_files":[],"assets_screenshots":{"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1538937","resolution":"2","location":"plugin"},"screenshot-3.png":{"filename":"screenshot-3.png","revision":"1538937","resolution":"3","location":"plugin"},"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1538937","resolution":"1","location":"plugin"}},"screenshots":[]},"plugin_section":[],"plugin_tags":[],"plugin_category":[],"plugin_contributors":[],"plugin_business_model":[],"class_list":["post-11066","plugin","type-plugin","status-closed","hentry","plugin_committers-jschires"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/mingle-users-online.svg","icon_2x":false,"generated":true},"screenshots":[{"src":"https:\/\/ps.w.org\/mingle-users-online\/trunk\/screenshot-1.png?rev=1538937","caption":""},{"src":"https:\/\/ps.w.org\/mingle-users-online\/trunk\/screenshot-2.png?rev=1538937","caption":""},{"src":"https:\/\/ps.w.org\/mingle-users-online\/trunk\/screenshot-3.png?rev=1538937","caption":""}],"raw_content":"<!--section=description-->\n<p><strong>PHP 5 is required.<\/strong><\/p>\n\n<p>Modified from the original: <a href=\"http:\/\/wordpress.org\/extend\/plugins\/wp-useronline\/\">WP-UserOnline<\/a><\/p>\n\n<p>This plugin enables you to display how many users are online on your Wordpress site, with detailed statistics of where they are and who they are (Members\/Guests\/Search Bots). Now has corrected url linking for Mingle User Profiles<\/p>\n\n<p>Links: <a href=\"http:\/\/icommow.com\">Plugin News<\/a><\/p>\n\n<!--section=installation-->\n<p>You can either install it automatically from the WordPress admin, or do it manually:<\/p>\n\n<ol>\n<li>Unzip the archive and put the <code>mingle-users-online<\/code> folder into your plugins folder (\/wp-content\/plugins\/).<\/li>\n<li>Activate the plugin from the Plugins menu.<\/li>\n<\/ol>\n\n<h4>Usage<\/h4>\n\n<p><strong>General Usage (With Widget)<\/strong><\/p>\n\n<ol>\n<li>Go to <code>WP-Admin -&gt; Appearance -&gt; Widgets<\/code><\/li>\n<li>The widget name is <strong>Mingle Users Online<\/strong>.<\/li>\n<li>Scroll down for instructions on how to create a <em>UserOnline Page<\/em>.<\/li>\n<\/ol>\n\n<p><strong>General Usage (Without Widget)<\/strong><\/p>\n\n<p>Open <code>wp-content\/themes\/&lt;YOUR THEME NAME&gt;\/sidebar.php<\/code> and add Anywhere:<\/p>\n\n<pre><code>&lt;?php if (function_exists('users_online')): ?&gt;\n    &lt;p&gt;Users online: &lt;div id=\"useronline-count\"&gt;&lt;?php users_online(); ?&gt;&lt;\/div&gt;&lt;\/p&gt;\n&lt;?php endif; ?&gt;\n<\/code><\/pre>\n\n<p><strong>UserOnline Page<\/strong><\/p>\n\n<ol>\n<li>Go to <code>WP-Admin -&gt; Pages -&gt; Add New<\/code><\/li>\n<li>Type any title you like in the post's title area<\/li>\n<li>If you <strong>ARE<\/strong> using nice permalinks, after typing the title, WordPress will generate the permalink to the page. You will see an 'Edit' link just beside the permalink.<\/li>\n<li>Click 'Edit' and type in <code>useronline<\/code> in the text field and click 'Save'.<\/li>\n<li>Type <code>[page_useronline]<\/code> in the post's content area<\/li>\n<li>Click 'Publish'<\/li>\n<\/ol>\n\n<p>If you <strong>ARE NOT<\/strong> using nice permalinks, you need to go to <code>WP-Admin -&gt; Settings -&gt; Mingle User Online<\/code> and under 'UserOnline URL', you need to fill in the URL to the UserOnline Page you created above.<\/p>\n\n<p><strong>UserOnline Stats (Outside WP Loop)<\/strong><\/p>\n\n<p>To Display <em>Most Number Of Users Online<\/em> use:<\/p>\n\n<pre><code>&lt;?php if (function_exists('get_most_users_online')): ?&gt;\n   &lt;p&gt;Most Users Ever Online Is &lt;?php echo get_most_users_online(); ?&gt; On &lt;?php echo get_most_users_online_date(); ?&gt;&lt;\/p&gt;\n&lt;?php endif; ?&gt;\n<\/code><\/pre>\n\n<p>To Display <em>Users Browsing Site<\/em> use:<\/p>\n\n<pre><code>&lt;?php if (function_exists('get_users_browsing_site')): ?&gt;\n   &lt;div id=\"useronline-browsing-site\"&gt;&lt;?php echo get_users_browsing_site(); ?&gt;&lt;\/div&gt;\n&lt;?php endif; ?&gt;\n<\/code><\/pre>\n\n<p>To Display <em>Users Browsing A Page<\/em> use:<\/p>\n\n<pre><code>&lt;?php if (function_exists('get_users_browsing_page')): ?&gt;\n   &lt;div id=\"useronline-browsing-page\"&gt;&lt;?php echo get_users_browsing_page(); ?&gt;&lt;\/div&gt;\n&lt;?php endif; ?&gt;\n<\/code><\/pre>\n\n<!--section=faq-->\n<dl>\n<dt>Error on activation: \"Parse error: syntax error, unexpected...\"<\/dt>\n<dd><p>Make sure your host is running PHP 5. The only foolproof way to do this is to add this line to wp-config.php (after the opening <code>&lt;?php<\/code> tag):<\/p>\n\n<pre><code>var_dump(PHP_VERSION);\n<\/code><\/pre>\n\n<p><br \/><\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>0.1<\/h4>\n\n<ul>\n<li>Corrected links for Mingle Installs<\/li>\n<\/ul>","raw_excerpt":"Based on the WP-UserOnline plugin.\n\nTags: mingle, useronline, usersonline, wp-useronline, online, users, user, ajax, widget\nRequires at least: 3.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/11066","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=11066"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/jschires"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=11066"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=11066"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=11066"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=11066"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=11066"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=11066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}