Skip to main content

Posts

[FIX] ERROR Internal navigation rejected cannot access other urls - Cordova iOS

Make sure that your config.xml whitelist is ok <allow-navigation href="http://*" />  <allow-intent href="http://*/*" />   Those tags must be set. Specify your url to restrict the navigation. run cordova clean and then cordova build ios Make sure that you have a provisioning profile when building otherwise the app will be stuck after the splash screen. It's preferable to build on xcode AFTER runnin  "cordova build ios" since cordova will reparse your main xml. Avoid the modification of the xml for the specific platform and remember to backup your files before doing anything.

[FIX] - iPhone project’s minimum deployment target

When we try to run the iOS app on an older device we can get such info. From the xcode project info we can change the setting but the problem (that's what happened for me) will persist. To lower the development target we need to change IPHONEOS_DEPLOYMENT_TARGET in the file build.xcconfig located in myproject/Resoruces/config/ for esample I added IPHONEOS_DEPLOYMENT_TARGET = 4.0 Now xCode 7.3 runs without problems my app (sdk ios 9) the application on iphone 4 with iOS 7.1.2. In my case it's a cordova project without particular plugins. The xCode generated error: iPhone runs iOS 7.1.2, which is lower than app's minimum deployment target. Change your project’s minimum deployment target or upgrade iPhone di businessweb’s version of iOS.

Older versions of Xcode - Direct download from Apple

Older versions of Xcode - Direct download from Apple. Xcode 7 Download 7.3.1 GM seed 7.3 7.2.1 7.1.1 7.0.1 Xcode 6 Download 6.4 6.3.2 6.2 6.1.1 6.0.1 Xcode 5 Download 5.1.1 5.0.2 Xcode 4 Download 4.6.3 4.5.2 4.4.1 4.3.2 4.2 4.1 4.0.2 Xcode 3 Download 3.2.6 3.1.4 3.0 Xcode 2 Download 2.5 2.4.1 2.3 2.2.1 Xcode 1 Download 1.5 1.0

Fix: Error Parse Generalized time, invalid offset

When you get this error while signing or listing the data from keystore the problem can be, as happened for me, that you have the wrong time set if compared to the keys in the store or you have generated a key with a lot of days (ex. -validity 1000000000). Check the time/date settings on your system including bios (just to be sure that your time will be ok also after rebooting). Create your keystore (backup anything if you don't know what you are doing) again with a common validity. Usually it should be 365 or less but you can also use 3650 (10 years?). Error keytool: java.security.cert.CertificateParsingException: java.io.IOException: Parse Generalized time, invalid offset

How to move your web folder in the account on freeshells.org!

Run ssh and login with your own account (ex. fs-youraccount) check the path where is located your web area by going up for 2 folders and changing to the web directory In my case my home folder is: /var/www/clients/client456/web303/home/fs-guida/  and my web folder is /var/www/clients/client456/web303/web Just create a symbolic mlink ln -s /var/www/clients/client456/web303/web /var/www/clients/client456/web303/home/fs-guida/ And now you can see your "web" subfolder via ftp. That's all :) If you need a basic (italian) guide to have a new shell and website for free follow this link: http://guida.freeshells.org/ La guida per avere una shell gratis e farci girare un bnc o psybot o altro.

Get the version of opencart from the index file using an external script.

If you are writing standalone scripts that are using the informations from opencart this small function can be useful. It will return the current version of opencart. function getcurrentversion($indexfile='index.php'){     if(file_exists($indexfile)) {         $fd = fopen($indexfile,'r');         if(empty($fd)){return false;}         while (!feof($fd)) {             $buffer = fgets($fd);             if(preg_match("#define\('VERSION', '(.*?)'\);#",$buffer,$matches)){                 fclose($fd);                 return $matches[1];             }         }       ...