Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
This is my podfile
pod 'AFNetworking', '~> 2.1.0'
when i try pod install i am getting
[!] Pod::Executable pull
U ALPValidator/0.0.1/ALPValidator.podspec
A APAsyncDictionary/0.0.3/APAsyncDictionary.podspec
A ASCScreenBrightnessDetector/0.1.0/ASCScreenBrightnessDetector.podspec
A Appboy-iOS-SDK/2.3.1/Appboy-iOS-SDK.podspec
A AuthorizeNet/0.1.0/AuthorizeNet.podspec
A CTFeedback/1.0.8/CTFeedback.podspec
U CardIO/3.2.2/CardIO.podspec
U CardIO/3.3.0/CardIO.podspec
U CardIO/3.4.1/CardIO.podspec
U CardIO/3.4.4/CardIO.podspec
A Colours/4.1/Colours.podspec
A FXBlurView/1.5.3/FXBlurView.podspec
M Facebook-iOS-SDK/3.9.0/Facebook-iOS-SDK.podspec
A FreeStreamer/1.5.3/FreeStreamer.podspec
A GoldenFleece/1.1/GoldenFleece.podspec
A Google-Mobile-Ads-SDK/6.8.0/Google-Mobile-Ads-SDK.podspec
A IOSLinkedInAPI/2.0.0/IOSLinkedInAPI.podspec
A JDStatusBarNotification/1.4.7/JDStatusBarNotification.podspec
A JSONJoy/0.1.0/JSONJoy.podspec
A KTBTaskQueue/1.0.0/KTBTaskQueue.podspec
A LINEActivity/0.2.0/LINEActivity.podspec
U LetsMove/1.9/LetsMove.podspec
A LumberjackPrettyClassInformation/1.0.0/LumberjackPrettyClassInformation.podspec
A MSCachedAsyncViewDrawing/1.0.1/MSCachedAsyncViewDrawing.podspec
A MUKAdMobViewController/1.2.1/MUKAdMobViewController.podspec
A MUKAdMobViewController/1.2.2/MUKAdMobViewController.podspec
A MUKAdMobViewController/1.2/MUKAdMobViewController.podspec
A MUKToolkit/1.1.1/MUKToolkit.podspec
A NXOAuth2Client/1.2.5/NXOAuth2Client.podspec
A PubNub/3.5.5/PubNub.podspec
A RestReaper/0.1.1/RestReaper.podspec
A SatelliteStore/1.0.0/SatelliteStore.podspec
A UIImage+Dummy/0.0.2/UIImage+Dummy.podspec
A WYPopoverController/0.1.8/WYPopoverController.podspec
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>'
as appropriate to mark resolution, or use 'git commit -a'.
What is the issue?How can i fix this?
Related
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 4 days ago.
Improve this question
local success = exports['car_dealer_number']:StartCarDealerNumber())
if success then
Wait(5000)
NetworkStartSynchronisedScene(HackKeypad['scenes'][3])
Wait(4000)
DeleteObject(usb)
DeleteObject(phone)
ClearPedTasks(ped)
hacking = false
busy = false
TriggerServerEvent('pacificheist:server:doorSync', index)
elseif not success then
Wait(5000)
NetworkStartSynchronisedScene(HackKeypad['scenes'][4])
Wait(4000)
DeleteObject(usb)
DeleteObject(phone)
ClearPedTasks(ped)
busy = false
hacking = false
end
end)
else
ShowNotification(Strings['need_this'] .. itemLabel)
end
end, Config['PacificHeist']['requiredItems'][7])
end
I tried everything I knew, deleting some stuff, adding some stuff.
When I'm trying to reset the script the error in client.lua pops up unexpected symbol near ')'. The client.lua file doesnt load because of this error
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 months ago.
Improve this question
Im using EMQX 4.4.11 and trying to add a hook following this https://github.com/emqx/emqx-extension-java-sdk
When I start the plugin it gives following error
022-12-15T09:14:32.374558+05:30 [error] [ExHook Svr] CALL emqx_exhook_v_1_hook_provider_client:on_provider_loaded(#{broker => #{datetime => "2022-12-15 09:14:32",sysdescr => "EMQ X Broker",uptime => "1 minutes, 1 seconds",version => "4.4.11"},meta => #{cluster_name => "emqxcl",node => <<"emqx#127.0.0.1">>,sysdescr => "EMQ X Broker",version => "4.4.11"}}, #{channel => "default",key_dispatch => <0.2007.0>,pool_size => 8,timeout => 5000}) error: econnrefused
2022-12-15T09:14:32.376430+05:30 [warning] Failed to reload exhook callback server "default", Reason: econnrefused
Can someone share some tips to identify the root cause?
The example in this repo (https://github.com/emqx/emqx-extension-java-sdk) are only for version 4.2, the examples for version 4.4 are here: https://github.com/emqx/emqx-extension-examples.
Then there is econnrefused in the log, which means that the server has rejected the connection. It seems that you have not modified the default connection address of EMQX.
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
Windows 32, Delphi XE5. Database from Component ACE: Absolute database.
Form Create Procedure worked ok upto few hours ago. Suddenly resulted in error:
Cannot open File"Error Code 3" Error message: Can not find the path specified. Error 30364.
I have read many discussion with the same or similar problem but none gave me a good hint to solve.
The Procedure code is:
Procedure TForm1.FormCreate(Sender: TObject);
begin
ABSDatabase1.DatabaseFilename:= ExtractFilePath(Application.ExeName)+'LibCat.ABS';
ABSDatabase1.Open;
// showmessage(ABSDatabase1.Databasefilename);
ABSTable1.TableName:='Cat';
ABSTable1.Open; // gives error
ABSTable1.Last;
GetAppVersionStr;
Form1.Caption:=Form1.Caption +': Books Catalogue, ver. ' + Versione;
end;
The database file is in the same folder as the Project exe file. Any path of the option file point to the same folder.
I cannot imagine what modication I did to get this error.
On a step by step debugging the Database opens regularly, but the open Table gives the error.
On Object Inspector for Database the FileName is specified as .\LibCat.abs
Solved.
It was really a silly reason:
I examined carefully the .dfm file and I found that on "Object Inspector" providing data to ABSDatabase1 I have written the name and put at the end of the string a carriage return and a new line. Of course these characters where not visible on ID, only on .dfm file.
I do not know why this additional keys caused the error, but as I cleared them the Form was regularly generated and the program run perfectly.
Hope this can be useful to someone else.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
TFS2013
Edit: Additional info as per comment:
I'm trying to add a "blocked" swim lane to my task board.
So as per instructions I run:
witadmin.exe exportprocessconfig /collection:http://{my collection} /p:{my project} /f:config.xml
It generates the XML as expected
If I immediately run (without editing the xml):
witadmin.exe importprocessconfig /collection:http://{my collection} /p:{my project} /f:config.xml /v
I get:
Line: 3 Position: 4 - The required attribute `pluralName` is missing.
So basically the XML generated by witadmin exportprocessconfig is invalid?!
exportprocessconfig creates a BROKEN xml file (according to importprocessconfig /v)
I amended line 3 from:
<BugWorkItems category="Microsoft.BugCategory" singularName="Bug">
To:
<BugWorkItems category="Microsoft.BugCategory" singularName="Bug" pluralName="Bugs">
then carried out my own changes and it worked.
Kinda sucks that the export is not compatible with the import on the same tool.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I've created custom 404 error pages for my symfony application, but they don't seem to work. In dev I see :
This request has been forwarded to a 404 error page by the action "blabla".
But in prod, the page is just blank; I get a 500 error.
In the logs, the error is :
PHP Parse error: syntax error, unexpected T_PUBLIC in /var/www/myproject/apps/myapp/modules/default/actions/actions.class.php on line 7
default/actions/actions.class.php is the following :
<?php
/**
* Error page for page not found (404) error
*
*/
public function executeError404()
{
}
public function executeSecure()
{
}
?>
I followed this tutorial on symfony-check.org
I found the answer all by myself :D
I'd forgotten part of the file :
class defaultActions extends sfActions
{
public function executeError404() {}
}