• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. q16marvin
    3. Posts
    Q
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 25
    • Best 0
    • Controversial 0
    • Groups 0

    Posts made by q16marvin

    • RE: Feature Request - LDAP login

      yes thats a good idea to import all computers from the ad 🙂

      posted in Feature Request
      Q
      q16marvin
    • RE: Ubuntu 11.10 and fog 0.32 works slow

      is it more a ubuntu problem or an fog problem? to night i will try some other ubuntu server / desktop versions. i hope this helps to solve the problem.

      posted in FOG Problems
      Q
      q16marvin
    • RE: Feature Request - LDAP login

      [url]http://adldap.sourceforge.net/[/url]

      and then something like that:

      [PHP]<?php
      session_start ();
      require_once(‘ldap/src/adLDAP.php’);

      try {
      $adldap = new adLDAP();
      }
      catch (adLDAPException $e) {
      echo $e;
      exit();
      }

      $loginUsername = $_REQUEST[‘loginUsername’];
      $loginPassword = $_REQUEST[‘loginPassword’];
      $loginUsername = strtolower($loginUsername);

      if ($adldap->authenticate($loginUsername, $loginPassword)){
      $result = $adldap->user()->inGroup($loginUsername,“XXXXXXXXX”);
      if($result){
      $info = $adldap->user()->info($loginUsername);
      //var_dump($info);
      $sql = sprintf(“SELECT u.id, u.username, u.name, u.firstname FROM user u WHERE (lower(u.username) like ‘%s’)”,$loginUsername);
      $result = mysqli_query ($GLOBALS[“db”],$sql);
      $data = mysqli_fetch_array ($result);
      if (mysqli_num_rows ($result) > 0 and $data[‘status’]<>“0”)
      {
      $_SESSION[“user_id”] = $data[“id”];
      $_SESSION[“user_nickname”] = $data[“username”];
      $_SESSION[“user_nachname”] = $data[“name”];
      $_SESSION[“user_vorname”] = $data[“firstname”];
      echo “{success: true}”;
      }else
      {
      echo “{success: false, errors: { reason: ‘Login fehlgeschlagen. Bitte erneut versuchen.’ }}”;
      }
      }else{
      echo “{success: false, errors: { reason: ‘Login fehlgeschlagen. Bitte erneut versuchen.’ }}”;
      }
      }else{

      echo "{success: false, errors: { reason: 'Login fehlgeschlagen. Bitte erneut versuchen.' }}";
      

      }
      ?> [/PHP]

      posted in Feature Request
      Q
      q16marvin
    • Office 2003 snapin to big?

      Hello, i want to test the snapin feature. i build like in the video tutorial a snapin file with SFX Maker.

      The Installer.exe is now 377MB. I changed the settings in the php file so i can upload such a big file. But wenn i deploy the snapin i see the Installer.exe is copied in the C:\Program Files\FOG\tmp directory of the target Client. But after ca. 100MB it stops and the Prompt with: “Non 7z archive.”. It seems he want to starts the exe bevore its finished ulpload.

      [ATTACH]6[/ATTACH]

      i have a ubuntu 11.10 with fog 0.32

      [url=“/_imported_xf_attachments/0/6_Unbenannt.png?:”]Unbenannt.png[/url]

      posted in FOG Problems
      Q
      q16marvin
    • Ubuntu 11.10 and fog 0.32 works slow

      Hi, i installed a new server with ubuntu 11.10 with fog 0.32. all works great, but i think the imagin process works realy slow (max 250MiBb/min). With my old FOG Server (0.29) i reach 800 or 900. Is there a reason for?
      i see my cpu load is 100% during the imagin with some nfsd tasks

      okay an upload of an image works extremly fast. but there is also a point: hey starts fast, stops for some seconds, run fast, stops, fast, stops etc. whats going on there?
      Thank you very much!

      posted in FOG Problems
      Q
      q16marvin
    • 1 / 1