Following error show , how to fix it? - zend-framework2

Following Error Show , please tell me how to fix it ?

In your php.ini you should look for extension=php_intl.dll if its commented, comment that out,
check if your extension_dir= points to a valid location (probably yes) and finally make sure that your extension_dir contains php_intl.dll.

Related

applying MSDDetector in colab

I have trouble writing the MSD detector correctly. However, it has no attribute ''create''.
I wrote the following code. But my session crashed for an unknown reason.
msd=cv2.xfeatures2d.MSDDetector()
kps1=msd.detect(I1)
I will appreciate any help.
unfortunately, you've found a bug here.
there should be a ´XXX_create()´ function, but someone forgot to expose it to the python api, by adding a CV_WRAP to the function signature here
(and no, you cannot use the 'ordinary' constructor, it does not produce a valid instance (will segfault, if you call any method on it !!))
please raise an issue here
if you're able to build from src, try to fix it locally, by changing that line to:
CV_WRAP static Ptr<MSDDetector> create(....

Planner ID seemingly not set

I am using rospy.
I have a strange situation where the output is not expected.
Here is what I tried:
self.robot.arm.moveit_group.set_planner_id = "RRTConnectkConfigDefault"
What the output that I am getting is:
(Pdb) self.robot.arm.moveit_group.get_planner_id()
*** AttributeError: 'MoveGroupInterface' object has no attribute 'get_planner_id'
Not sure what could be the reason.
I think that you should use something like this:
self.robot.arm.moveit_group.set_planner_id("RRTConnectkConfigDefault")
I hope that it will help you to move on in the interesting moveit stuff!

Elasticsearch::Transport::Transport::Errors::ServiceUnavailable ([503] {"error":"MasterNotDiscoveredException[waited for [30s]]","status":503}):

I'm following this to install but , i cant get solution for this error: -
([503] {"error":"MasterNotDiscoveredException[waited for
[30s]]","status":503})
i'm stuck in this, however i also tried some solution given on internet but it did not work for me. any help would be appreciated. thanks.

Error in calling gmail watch method

I am calling watch method of gmail to get updates of my mailbox, but it is giving me error
Google::Apis::ClientError: invalidArgument: topicName required
this is the code
service.watch_user('me','projects/devpush/topics/push')
can any one please tell me what is wrong in this?
I had this same problem and after I consulted the source, I found that you need to build a WatchRequest and pass that in to user_watch, like so:
watch_request = Google::Apis::GmailV1::WatchRequest.new
watch_request.topic_name = 'projects/devpush/topics/push'
service.watch_user('me', watch_request)
I'm not familiar with ruby, but maybe you can try giving the topicName as a named parameter?
service.watch_user('me', topicName: 'projects/devpush/topics/push')
Sorry if I'm wrong, but from the error message, you should add a named parameter.

SugerCRM Warning: Creating default object from empty value

when i am trying to edit field from sugerCRM editor then i am getting this issue.
even i try to use this patch as well as a solution for this error but still getting this issue.
https://github.com/sugarcrm/sugarcrm_dev/pull/143
( ! ) Warning: Creating default object from empty value in C:\xampp\htdocs\crm\trunk\modules\ModuleBuilder\views\view.modulefield.php on line 151
I found the other answer almost correct but it generated further warnings, this seemed to solve them completely for me:
if(!isset($module->mbvardefs) || is_null($module->mbvardefs)) {
$module->mbvardefs = new stdClass();
}
$module->mbvardefs->vardefs = $dictionary[$objectName];
It is kind of frustrating that SugarCRM comes with bugs like this when using modern versions of PHP..
Thanks friend but this issue is being resolved we just need to replace line number 151 in view.modulefield.php file with
if(!isset($module->mbvardefs) || is_null($module->mbvardefs)) {
$module->mbvardefs = new stdClass();
}
In order for this to work for me, I found that the inserted statement needed to come AFTER the original problem line instead of before it, but big thanks for the solution. This has solved a big headache for me that no-one else seems to have had a pill for!

Resources