SB Mahapatra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Domain with www. redirects to wp-adminHi, I am facing the same problem. I tried to change entries 2 areas as below
.htaccess
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /#RewriteCond %{HTTPS} !=on
#RewriteRule ^ https://%{www.urjatrust.org}%{REQUEST_URI} [L,R=301]RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
And commented out as above after it did not workwp-config.php
define(‘FORCE_SSL_ADMIN’, true);Later I commented out
when I type below url
https://example.com/wp-adminit automatically changes to
https://wp-adminNow Admin access is not available and not sure how to restore. Request immediate suggestions
Forum: Plugins
In reply to: [My Chatbot] An internal error occured in chatbotI have similar problem with WordPress 4.9.7. But it is working for all intent hosted on dialogflow except the one which are fulfilled through webhook using Google Cloud service. The error in the Firebase server log is as below.
TypeError: Cannot read property
‘isInSandbox’
of undefined
at DialogflowConversation.Conversation (/user_code/node_modules/actions-on-google/dist/service/actionssdk/conversation/conversation.js:37:38)
at DialogflowConversation (/user_code/node_modules/actions-on-google/dist/service/dialogflow/conv.js:27:9)
at Function.<anonymous> (/user_code/node_modules/actions-on-google/dist/service/dialogflow/dialogflow.js:87:24)
at next (native)
at /user_code/node_modules/actions-on-google/dist/service/dialogflow/dialogflow.js:22:71
at __awaiter (/user_code/node_modules/actions-on-google/dist/service/dialogflow/dialogflow.js:18:12)
at Function.handler (/user_code/node_modules/actions-on-google/dist/service/dialogflow/dialogflow.js:58:16)
at Object.<anonymous> (/user_code/node_modules/actions-on-google/dist/assistant.js:53:32)
at next (native)
at /user_code/node_modules/actions-on-google/dist/assistant.js:22:71And this same intent is working fine and retrieving information from Google Cloud through Google Assistant and Skype.
I am using V2 API as suggested by Dialogflow and I could see ‘isInSandbox’ being used in deprecated V1 API. Please suggest whether Chatbot is using V1 or V2 API or both are Ok.