bijibuji
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can we define wp-admin and wp-includes path individually?Hello dear vishdrck
I am also looking for a similar solution. I want to have one common “wp-admin” & “wp-includes” (probably out of public web root) for about 10 separate WordPress websites.
Have you had any progress on this?
Forum: Plugins
In reply to: [YITH WooCommerce Affiliates] Problem creating database tableThat is probably because of some options remaining inside
wp_options
table. search for latest options there and try to delete theme as well.Forum: Plugins
In reply to: [Better AMP - WordPress Complete AMP] AMP after the URLExact same question here!
Documentation says (in FAQ section):
You can see AMP version of your site with adding /amp/ to your site url: domain.com/amp/
All inner pages url will be started with same /amp/ in start of url: domain.com/amp/category/fashion
Also BetterAMP supports the /amp/ in the end of url to cover “Automatic AMP” plugin urls.But I need to have it like you said:
{schema}://{host}/{slug}/amp/
What should we do?
Hi, you should give Full Control access for Users over TEMP directory
Forum: Plugins
In reply to: [Email Users] phpmailer and gmail smtp serverI am getting this notice upon enabling wordpress DEBUG mode
Notice: Undefined variable: from_sender in C:\wamp\www\mysite\wp-content\plugins\email-users\email_users_send_test_mail.php on line 56
Forum: Plugins
In reply to: [Email Users] phpmailer and gmail smtp serverThanks for your answer.
This is how I implemented the hook:
function my_phpmailer_init( $PHPMailer ){ $PHPMailer->IsSMTP(); $PHPMailer->SMTPAuth = true; $PHPMailer->SMTPSecure = 'ssl'; $PHPMailer->Host = 'smtp.gmail.com'; $PHPMailer->Port = 465; $PHPMailer->Username = '[email protected]'; $PHPMailer->Password = 'my_gmail_password'; } add_action( 'phpmailer_init', 'my_phpmailer_init' );
Are there any step by step guides or something to correctly implement Email Users plugin in wordpress?
problem found but with some dummy solution: dont translate TML menu name
Removed the translation on ‘TML’ and everything working now.
whats that? a rtl language bug or some sort of copyright?Forum: Plugins
In reply to: [FeedWordPress] Encoding problemcopy your html encoded text, from your blog and paste it to one of these online HTML decoders to find the exact, decoded text.I think you have something other than ALFANUMMERC ASCII chars, in your text.
Let me know if thats the case.Forum: Plugins
In reply to: [FeedWordPress] Duplicate postsFWP Filters does not function so much as desired. I was on it too, and finally uninstalled it due to so many problems with it
Forum: Plugins
In reply to: [FeedWordPress] Encoding problemAre you facing this with all your feed links, and every item in that feeds, or some of some?
Forum: Plugins
In reply to: [Automatic Post Tagger] Little BUG with 2-letter wordsThanks for you response. I am looking forward for the comming 1.6.
Forum: Fixing WordPress
In reply to: Custom Taxonomy Term – Name & Descriptionno, a single post template
Forum: Plugins
In reply to: [Automatic Post Tagger] Little BUG with 2-letter wordsThanks for your response. Lets have an example:
We have a 2-letter tag like this: AB, and assume that it has meaning in english. When I add this AB to the tags list, I see the tag on page as CD for example.
I am using unicode charactersForum: Fixing WordPress
In reply to: Custom Taxonomy Term – Name & DescriptionI think this would go and contact the DB, am I right?