Questions tagged [incompatibility]
302 questions
0
votes
1 answer
jQuery width() not working in Opera but works in FF, IE, Chrome, Safari
I have an accordian menu on my site. I use jQuery to get the menu's width, subtract that from the window width, then set the width of the content to the difference. This works correctly in every browser I've tried - except Opera, which apparently…

FKEinternet
- 1,050
- 1
- 11
- 20
0
votes
0 answers
C++ random number generators legacy code
I've got some older code which uses std::uniform_int and std::variate_generator. On one machine I use GCC 4.8.5 and it works pretty fine. On my newer workstation I have GCC 7.2.1 installed and it is not possible to compile the code.
The error…

Schrigga
- 11
- 1
0
votes
1 answer
PhpStorm IDE 2017.2 does not highlight the error " [] operator not supported for strings" in PHP 7.1.x
I installed PhpStorm version 2017.2 and configured the PHP 7.1 under Settings > Languages and Frameworks > PHP > PHP Language Level
Unfortunately it does not highlight possible errors when using the empty array index operator on string variables (…

Remluben
- 1,613
- 2
- 16
- 21
0
votes
1 answer
A very basic Android app is incompatible on a lot of devices
So I have an app with some very basic functionalities, including writing to external Download folder, saving files to the external cache, and having an Intent that opens an email app. Yet my app is only compatible on 372 devices. I was wondering…

1pieceofbleach
- 15
- 2
0
votes
1 answer
Not compatible chrome app
I have a very simple chrome app:
manifest:
{
"manifest_version": 2,
"name": "App Name",
"description": "Short description",
"version": "0.4",
"app": {
"background": {
"scripts": ["background.js"]
}
},
"icons": {
…

xtremetom
- 37
- 5
- 12
0
votes
2 answers
Incompatible types - Required Long Found void + Optional<>
The entire first line is red underlined with the message: Incompatible types. Required: Java.lang.Long. Found: void.
Long userId = request.ifPresent(x -> x.getUsers().getId());
Optional employee = usersRepository.findOne(userId);
My findOne…

Martin Erlic
- 5,467
- 22
- 81
- 153
0
votes
1 answer
WordPress MySql incompatibility. Locally developed version : 5.6.17 & hosting providers version 5.5.36
I developed a wordpress site locally using WAMP with MySQL ver. 5.6.17.
While trying to take the website live (using the Duplicator wp plugin), I am not able to as I got an error for version incompatibility.
The shared hosting that i have purchased…

Aryaveer Sharma
- 23
- 1
- 4
0
votes
0 answers
How can I open Solution from Visual Studio 2010 to 2013?
How can I open Solution from VS 2010 to VS 2013? I tried to open it in VS 2013 but one of the projects was incompatible.
Any help would be appreciated, thank you.

Arina
- 70
- 7
0
votes
1 answer
"Unreplaced values treated as NA as .x is not compatible": Recoding numeric variables
I have a numeric variable (V110) that takes on values between 1-4. As the numbers stand for higher (1) and lower (4) trust in the govt, I want to recode them, so that the highest value signifies the highest and the lowest value the lowest trust. Now…

ureuss
- 1
- 1
- 1
- 1
0
votes
0 answers
Nav text does not align verticaly on Mac (fine on Windows)
I built a website for a client, and as feedback I get that the text in the navigation menu is not centered vertically. On my Windows computer it look fine on all browsers (Firefox, Chrome, Edge, Opera) But on Mac (which they have in the office) the…

Guy Toma
- 1
- 2
0
votes
2 answers
Incompatible return type in Java
I have the following method: (from this WSDL URL:
http://services.aonaware.com/DictService/DictService.asmx?WSDL
)
private static WordDefinition define(java.lang.String word) {
com.aonaware.services.webservices.DictService service = new…

user3096716
- 19
- 1
- 1
- 6
0
votes
1 answer
Phalcon 3.0 to Phalcon 2.0 compatibilty
I had created a barebone Phalcon 3.0 project with Devtools 3.0, it worked fine on my machine
Then I uploaded to my web host service, and it reproduced error message:
Argument 1 passed to Phalcon\Di\Injectable::setDI() must implement interface…

ir1keren
- 37
- 9
0
votes
3 answers
a CSS file with all the browser incompatibilities sorted out
Has anyone developed a CSS File which has all the major browser quirks sorted out?
Thanks

femi
- 974
- 2
- 13
- 44
0
votes
0 answers
PHP deprecated code with curly braces - no documentation about it?
On a PHP 5.2 server this code was working, but it doesn't work any more under 5.6 :
$value = $record->{self::TABLE_METHOD}();
Under 5.6 I had to do that :
$abc=self::TABLE_METHOD;
$value = $record->{$abc}();
Otherwise said, it works using…

Denis BUCHER
- 310
- 4
- 16
0
votes
2 answers
Problems migrating from XCode 3.2.2 to 3.2.3
After upgrading my copy of xcode from 3.2.2 to 3.2.3, I am getting over 10000 compilation errors. I have switched all frameworks to the iOS 4.0.x versions, and have set the new sdk to 4.0, with iOS 3.1 as compilation target. What could be causing…

futureelite7
- 11,462
- 10
- 53
- 87