- lsof -i :<PORT>
- PID raussuchen
- kill -9 <PID>
Quelle: http://code2care.org/2015/how-to-kill-service-running-on-port-using-terminal-command/
Meine Gedankenstütze ;-)
Quelle: http://code2care.org/2015/how-to-kill-service-running-on-port-using-terminal-command/
![]()
Heredoc-Syntax
echo <<<CONTENT
<p>The content to be output comes
here and must be closed by following </p>
CONTENT;
Quelle: https://www.php.net/
MongoDB is a NoSQL database that offers a high performance, high availability, and automatic scaling enterprise database. Data is stored in a documen…
Source: www.howtoforge.com/tutorial/install-mongodb-on-ubuntu-14.04/
Mongo-DB Server über externe IP verfügbar machen
bindIp: 0.0.0.0
Quelle: https://stackoverflow.com/questions/24899849/connection-refused-to-mongodb-errno-111#24941698
Wenn nach eine NodeJS-Update Node-Module nicht mehr laufen (inkompatibel), dann hilft meist:
node_modules und package--lock.jsonnpm clean cache --force als Administratornpm installQuelle: https://github.com/gulpjs/gulp/issues/2280#issuecomment-493701211
$properties = array_keys((array) $record);
Wenn das Problem auftritt, muss in den Project Setting das Build System von „New Build System“ auf „Legacy Build System“ umgestellt werden:
![]()
Since yesterday I’ve been getting the following error when trying run an app on my device: „A valid provisioning profile for this executable was not found.“. This is after updating to Xcode 10. Bui…
Die Lösung ist unter Project Target > Build Settings > Suchfenster nacht PROVISIONING_PROFILE zu suchen und alle Profile zu löschen.
![]()
I have an Ionic 2 app, which builds and is testable in Xcode 8.2.1 Simulator environment, e.g. iPhone7 (Build Successful). When I try Archive the app to create an ipa file to set on a device, I fo…
Source: https://stackoverflow.com/questions/42885122/xcode-has-conflicting-provisioning-settings#53957176
Seit iOS 11.3 sind alle Apps mit einem Bounce-Effekt beim scrollen versehen. Das wirkt sicht negativ auf Cordova-Apps aus, da diese nur im Webview scrollen sollen.
Dafür muss in der config.xml von Cordova folgendes eingefügt werden:
<preference name="DisallowOverscroll" value="true" /> <preference name="UIWebViewBounce" value="false" />
Danach muss die App mit cordova build ios neu kompiliert werden.

Source: hazaveh.net/2018/02/disable-ios-scroll-bounce-overscroll-in-cordova-apps/