Raghwendra Narayan Ojha
Forum Replies Created
-
Yes i got fix the problem. It seems not working with PHP 8.1.x on my server. Downgrade the PHP version 7.4 and it works.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Allowed memory size bytes exhaustedPlease increase your memory size in your php.ini file server.
Forum: Plugins
In reply to: [AMP Contact FORM 7 - AMPCF7] So promising but… didn’t work for me :(It seems not working with Latest wordpress version 5.x. For me it is also not working. Can any one help on this?
Forum: Plugins
In reply to: [Yummly Rich Recipes] Google Search Console Server Error 5xxHello @northsouthblonde
Did you still get this error? This may come due to most web servers with WordPress installation often throws 500 Internal Server Error or another issue may be you delete that plugin “yummy rich recipes” plugin.For the solution, If you deleted the plugin then please write in “robots.txt” file following code
Disallow: /wp-content/plugins/yummly-rich-recipes/includes/style.phpThank you Let me know if you have still any doubt.
I am getting same problem with amp plugin only 49 score. https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.raghwendra.com%2Fblog%2F&tab=mobile
Please help! Thank you.
Forum: Plugins
In reply to: [Contact Form 7] date form with placeholderI am facing same problem and think that if the filed type is date we may not use any text placeholder. But it is also complex to keep there default date format in contact form 7 date field. I used a plugin that name “Contact Form 7 Datepicker” and it solved my problem. Hope this plugin can help you.
Forum: Fixing WordPress
In reply to: Warning : Missing argument 1 for WP_Widget::__construct(), called indear @hellheim thank you for follow me. I am sorry for delay reply. I got the solution. First of add i disable all plugin and error has gone. But i didn’t rectify from which plugin error was coming coz i didn’t activate all of my old plugin. Thanks
Forum: Fixing WordPress
In reply to: Warning : Missing argument 1 for WP_Widget::__construct(), called inDidn’t get success yet? i copied new file for wp widget and it doesn’t get worked may i do something else @hellheim
Forum: Fixing WordPress
In reply to: After Update to 4.6 keep getting cURL error 23I am also getting Curl problem on update latest version of wordpress. When i was talk with my hosting provider regarding this they said that in your hosting account port 80 is disable. I went to cpanel and enable port 80 and problem has gone. Thanks
Forum: Plugins
In reply to: AMP Not Working On My WebsitesThe discussion already started please read here more
https://ww.wp.xz.cn/support/topic/amp-permalink-not-working/#post-8166889
https://ww.wp.xz.cn/support/topic/amp-and-amp1-not-working/Forum: Plugins
In reply to: [AMP] /amp/ permalink not working?I installed the AMP plugin and resave permalink but still it’s not working. Is any other setting need to be done on AMP?
Forum: Plugins
In reply to: [Contact Form 7] Keep getting "doesn't belong to same domain as site"Try to put your email like this [your-name] <[email protected]> Hope this will help you
Forum: Networking WordPress
In reply to: Redirection issueIt may be the problem in Redirection in htacess file if you type http://electrixinternational.com/xyz or any thing else after your domain name it is going on home page. please check it
Forum: Plugins
In reply to: [List category posts] Using shortcode w/ post_type, orderby title not workingYeah the result appears in ascending order of title i check it my side and it working fine. Please check other notes also https://ww.wp.xz.cn/plugins/list-category-posts/other_notes/
Forum: Plugins
In reply to: [Custom DataBase Tables] Failed to create table.In the SQL statement who and due doesn’t except DEFAULT ‘0’ please try this statement
CREATE TABLE wp_actionlist (
task_id int(11) NOT NULL AUTO_INCREMENT,
task_name longtext NOT NULL,
urgency int(11) NOT NULL DEFAULT 0,
importance int(11) NOT NULL DEFAULT 0,
who text NOT NULL ,
due date NOT NULL ,
created datetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’ COMMENT ‘Created Datetime’,
updated timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ‘Updated Datetime’,
PRIMARY KEY(task_id) )
ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT=’actionlist’ AUTO_INCREMENT=1