Apr 162012
 

Ja, das ist leider so – das neue iPad hat keinen Hotspot menüpunkt in den Einstellungen. Swisscom soll diese Funktionalität irgendwann im Mai bringen, Sunrise – habe heute (16.04.2012) bei Customer Service nachgefragt – ein update Termin war denen aber nicht im System definiert.

Bin echt enttäuscht von Apple / CH Providers dass Sie das noch nicht freigeschaltet haben.

Lösung: Selber ein Provider Profile basteln. Im Internet habe ich folgende Anleitung gefunden: www.apfeltalk.de/forum/guide-pers-nlichen-t403544.html

Um Euch die Zeit zu sparen, hier die IPCC Datei für Sunrise: Payload.ipcc (Die ZIP Datei extrahieren so dass iTunes mit Payload.ipcc upgedatet wird). Einfach das iPad an iTunes anschliessen, mit Alt Taste die „Check for Updates“ drücken (in iTunes!) und die ipcc Datei auswählen. Viola! Jetzt ist Tethering / Hotspot mit dem neuen iPad möglich.

Nachteil: Die Version des „custom“ Profiles ist 12.1. Sunrise wird bald auch auf 12.1 updaten -> euer iPad Profil wird nicht aktualisiert bis ein Firmware restore durchgeführt wird oder Sunrise 12.2 ausstrahlt.

 Posted by at 23:06
Apr 102012
 

Problem: Whenever I want to import images into new gallery from server directory, NextGen instead of creating own copy of all images in the defined gallery path (General Options->Gallery path) is working on the source directory changing source images. Later if the source directory is (re)moved, the gallery itself contains nothing else than dead image links.

So here is my little NextGen patch – before the images will be imported into new NextGen gallery the source directory is be copied into the Gallery path directory. This way source images are not changed anymore and NextGen can safely work on the copy of images.

Just replace the if ( isset($_POST['importfolder']) ) IF condition in extgen-gallery/admin/addgallery.php with the code below:

    	if ( isset($_POST['importfolder']) ){
    		check_admin_referer('ngg_addgallery');
    
    		if ( !nggGallery::current_user_can( 'NextGEN Import image folder' ))
    			wp_die(__('Cheatin’ uh?'));
    
    		$galleryfolder = $_POST['galleryfolder'];
    		if ( ( !empty($galleryfolder) ) AND ($defaultpath != $galleryfolder) ) {
			$galleryname = basename($galleryfolder);
			$galleryname = apply_filters('ngg_gallery_name', $galleryname);
			$gallerypath = WINABSPATH.$galleryfolder;
			
			$new_gallerypath = WINABSPATH.$defaultpath.$galleryname;
			
			//create gallery directory in defaultpath
			wp_mkdir_p($new_gallerypath);
            		
			//copy files
			$objects = scandir($gallerypath);
                	$ext = array('jpeg', 'jpg', 'png', 'gif');
			foreach( $objects as $file )
                	{
                    		$filepart = pathinfo($file);
				if( $file == "." || $file == ".." || !in_array($filepart['extension'], $ext))
                        		continue;
                    		@copy( $gallerypath.'/'.$file, $new_gallerypath.'/'.$file );
                	}
			$galleryfolder = $defaultpath.$galleryname;

    			nggAdmin::import_gallery($galleryfolder);
		}
    	}

Tested with Version 1.9.3 of NextGen gallery.

 Posted by at 21:21