crdipu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Username has been exposedThere is one way to find username.
Forum: Plugins
In reply to: [WPeMatico RSS Feed Fetcher] Getting Duplicate ContentsAll,
I am getting duplicate contents, from db I understood that time of creation is same for those contents.
Kindly share your thoughts
Thank you
Dipu RatheesanForum: Plugins
In reply to: [WordPress MU Domain Mapping] Mapping sub domain to sub directoryAll,
@ron
Thank you for your quick response.I found a way I am not sure is it good or bad, I am still testing my method and site. I am listing my method step by step below. It will be very helpful to me if you share your thoughts regarding method explaining below.
1) I have created sub directory “sub-domain-2” inside document root
of “example-2.com”.2) Created .htaccess file in side “sub-domain-2” with following
details.<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /sub-domain-2/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /sub-domain-2/index.php [L]
</IfModule>3) Copy wp-config.php from document root of “example-2.com” to
sub directory “sub-domain-2”, make sure following things are
correct in the file.- Modify the table prefix, by following steps (based on example)
- Get site Id in our example, site ID of “sub-domain-2.example-1.com” is 3
- Suppose default prefix is wp_
- Then our new prefix is wp_3_
- Comment following lines
- #define( ‘WP_ALLOW_MULTISITE’, true );
- #define(‘MULTISITE’, true);
- #define(‘SUBDOMAIN_INSTALL’, true);
- #define(‘DOMAIN_CURRENT_SITE’, ‘example-1.com’);
- #define(‘PATH_CURRENT_SITE’, ‘/’);
- #define(‘SITE_ID_CURRENT_SITE’, 1);
- #define(‘BLOG_ID_CURRENT_SITE’, 1);
- #define( ‘SUNRISE’, ‘on’ );
- Define WP_HOME and WP_SITEURL as follows
- define( ‘WP_HOME’, “https://example-2.com/sub-domain-2” );
- define(‘WP_SITEURL’, “https://example-2.com/sub-domain-2”);
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Mapping sub domain to sub directoryThank you for the quick response.
Can we map the URL as listed below, this time it is sub-directory to sub-domain
Base URL : example-1.com
Site 1 URL : example-1.com/sub-domain-1
Site 2 URL : example-1.com/sub-domain-2
Site 3 URL : example-1.com/sub-domain-3I would like to map above URL to URLs listed below.
Site 1 URL : sub-domain-1.example-2.com
Site 2 URL : example-2.com/sub-domain-2
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Mapping main site@george
I found that this plugin is working based on table “wp_domain_mapping”. Redirection loop will happen or register page will display if the requested domain is not found in this table.Plugin it is not allowing to create entry with blog_id =1. I have disabled this validation and created an entry, then it works, that is I can able to map main domain as well(but hosted in different servers). But I am not sure what all the consequence can happen due to this practice.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] cant seem to map a domain@ron
I would like to map main site of my multi site installation. I found that is not possible as there is some validation in plugin code. I disabled the validation, so that now I can able to map main site too.It is working for now and I am not sure what will be the consequence of mapping main site, it will be very helpful for us to know why the plugin prevent from adding domain map to main site by default, kindly let us know your feedback.
They are providing a filter “rpx_user_existing_permission” you can make use of that to add your custom post type capabilities.
Forum: Hacks
In reply to: post_row_actions filter is not working while update post using quick editHi All,
Sorry for the question as I found out it is my mistake. It is happened because I disabled the admin object of my plugin while doing ajax(by mistake), it cause the issue of not processing “post_row_actions”(I defined in admin class) in quick-edit.
Thank you for your help.
Forum: Hacks
In reply to: post_row_actions filter is not working while update post using quick edit@bcworkz Sorry I have added return in my actual code but forgot to add in example.
Forum: Hacks
In reply to: How to get all registered Post status?The function “get_post_stati” will get all registered post-status.
https://codex.www.ads-software.com/Function_Reference/get_post_stati
Forum: Plugins
In reply to: Need new WordPress post publishing workflowHi nuggetsol,
Yes, that will be a good move as most of the workflow plugin doesn’t have that feature, all the best.
By the way it will be an encouragement(as I am a WordPress beginner) to me if comment about my plan.
Forum: Plugins
In reply to: Need new WordPress post publishing workflowHi nuggetsol,
Thank you, Oasis is a wonderful plugin and liked it the way you did. I have tried and pointed out some bugs some weeks ago. I think I have one scenario prevent me from using that, I am listing it below.
- The contributes are always allowed to edit the posts even if it is published
- And the changes publish only if the Admin or Editor approve the changes
- The old published content should remain accessible to public while the new changes are going through approval process
Forum: Plugins
In reply to: [Visualizer: Tables and Charts Manager for WordPress] Adding new data sourceThank you ??
Forum: Plugins
In reply to: [Visualizer: Tables and Charts Manager for WordPress] Adding new data sourceThank you for your time and reply.
I was referring to third party service, I have used hooks and changed the chart data.
What I am thinking is it will be great if we are providing an option to user to store the URL, so that user can able to add any URL without modifying the code(hook).