Nadiamode
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] You are already logged in as /b>plugin author know this ? i have same problem – wait for plugin update
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] google sitemap 4.0i think plugin author is so busy, this plugin has many download (10 millions) btw for me, this is the best google xml sitemap plugin forever
i just discover that normal version still let user create 2 static files sitemap.xml and sitemap.xml.gz in home directory
i can’t believe that 10 millions download plugin still using old method until now
all other sitemap plugins go with virtual sitemap.xml and users no need to create / chmod anything
i know beta version support virtual sitemap & wordpress mu but why it never come to normal version ?
thank you
Forum: Plugins
In reply to: [Networks for WordPress] Selectively sharing users between NetworksWP Network still use share wp_users and wp_usermeta table so everyone can login via every network unless you have to write your own function to check when user sign-in to see that this user allow to login via this site or not
You may add_user_meta when user first signup that specific the site that this user belong to.
example
username KEN register via NETWORK2 so add_user_meta key=”usersite” value=”network2″
now you have user_meta key=”usersite” for everyone
when user signin, check user_meta first that which site they belong to. if it match with current site, let they login
this is done by custom function that filter/hook on signin step process or you can write it in plugin and add option to let admin add site domain to allow or block to sign-in via admin control panel then upload this plugin and enable to all site that you want to restrict
Forum: Plugins
In reply to: [Networks for WordPress] Error when commenting out DOMAIN_CURRENT_SITEHi, what the purpose of comment out the line /*DOMAIN_CURRENT_SITE */ ?
to tell wordpress that do not let DOMAIN_CURRENT_SITE act as main site, right?
because still have another network on this install to act like WordPress MU
Forum: Plugins
In reply to: [BP Multi Network] Duplicate user profile on multiple networkI think BP Multi Network plugin work correctly ^^
But I just wonder that user profile can share on other network, right?
I mean if user A register on Network 1 then later user A go to login on Network 2 and post activity update so user A profile can reach via 2 network, Do I understand correct?
On my sites I can’t see member that register on another network in member list page
I can see only member that register via current network. this is done by BP Multi Network plugin.But if I directly go to url
https://site1.example.com/members/david/
https://site2.example.com/members/david/user profile page exist on every network
it just don’t show on member list pageso this is normal, right?
another thing that BP Multi Network create new bp_ database table for each new wp network to store activity, groups and etc separately but use same global user and user_meta table then user base share across network if user go to login another network
BTW, Thank you for wonderful plugin.
Forum: Plugins
In reply to: [BP Multi Network] Duplicate user profile on multiple network– I install WordPress
– I enable WordPress MU
– I install Buddypress and enable on main WordPress MU– I install Networks for WordPress
– I install BP Multi Network
– I create new network– I activate Buddypress on new network
– I can use Buddypress on new network separately from main WordPress MU except user profile url that still share between main WordPress MU and new networkI haven’t use WP Multi Network or Networks+ so I don’t know that 2 plugins will render user profile link same Networks for WordPress or not
Forum: Plugins
In reply to: [WP Multi Network] Cannot add a networkI think so, this plugin should continue developing.
I installed but cannot do anything. Step to install also no helfulForum: Plugins
In reply to: [Simple Google Connect] register using google & multisite?I thought plugin can register new user via google+ login.. I hope you will add this feature to a future versions
@anointed Could you share your code?
Forum: Plugins
In reply to: [ITRO Popup Plugin] Deleted the Plugin and it still hijacked my home page!why plugin auto create page on my blog ?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Multiple headers?please add this function in plugin
sometime i have 2 or 3 row header / sometime it intersect like colspan/rowspan
this is example https://www.w3.org/TR/html401/images/mergedcells.gif
please add this function in plugin
sometime i have 2 or 3 row header / sometime it intersect like colspan/rowspan
this is example https://www.w3.org/TR/html401/images/mergedcells.gif
@siebje I try to compare which one better. now site is just for testing purpose
but i love how easy fancy box works. it’s simple and beautiful – also easy for user to view an imagesForum: Plugins
In reply to: [WP No Category Base] over 300 queries So slow websiteI don’t think so.
I think No matter how many category you have, wordpress run only 1 query to find category name in category But only 1 thing is if you have so many category so it might use more time to find but still use only 1 query
But I don’t think the time to search is problem because 1000 category = 1000 table row in database and it very fast to search. It will finished in millisecond
Actually wordpress work like this =
Query > wp_term_taxonomy – to define category or tag (or custom tag or custom post type – if you have one) and then
> wp_terms – to find category name example “yellow shoes”
> if you have 1000 category – it will search through your database row in wp_terms tableall above use only one query
From my personal experience I have many wordpress websites and install wordpress many times, I found that default wordpress setup use a little bit resource and database query (around 20-30 queries) If you just use wordpress as normal (no plugin + use default theme) so nothing to worry but other extra things will add more query to database example plugins or custom theme or extra function that not properly coding
example I had ever try to write my own function to show 10 recent posts in sidebar with show image in post too. this function eat many query because my code request database query every 1 image in 1 post and another some small function that also use query . when i put everything custom recent post + custom recent comment + custom related post = 200-300 queries from normal at 30-50 queries
Can you tell your website address? so we may help you to see what is your really problem and you can try blow plugin to test and see your site
Try this plugin https://www.ads-software.com/extend/plugins/debug-queries/ before and after you enable WP No Category Base
Debug Queries will show you how many query wordpress run and which query they require to run