• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Éric Quinton
    É
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Éric Quinton

    @Éric Quinton

    0
    Reputation
    365
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Age 54

    Éric Quinton Unfollow Follow

    Latest posts made by Éric Quinton

    • How to secure nfs share ?

      Hello,

      Actually, the folder /images/dev must be with 777 mode, for upload images. At the end of the upload, the folder <mac address> is move to /images, an it’s rename. But the images files keep their rights : everybody can write another image at their places.

      For the moment, I’ve cron this script to change the access rights :
      #!/bin/bash
      RACINE=/opt/fog
      for DOSSIER in find $RACINE -perm 777 -type d|grep -v dev
      do
      chmod -R o-w $DOSSIER
      chown -R fog $DOSSIER
      done

      My NFS server is installed into a second computer.

      Do you have a suggestion to improve that ?

      Thanks,

      Eric.

      posted in General
      É
      Éric Quinton
    • RE: Ajax search don't work

      I’d reinstall server components and database, and now, serach function via ajax work…

      Configuration of Fog is very difficult, when you want to install database in a second server, and nfs shares into a third…

      posted in General
      É
      Éric Quinton
    • Ajax search don't work

      Hi,
      I’ve installed Fog 0.32, with database on a dedied server and the storage of images into another server. I can upload and download images, it’s ok.

      I’ve a problem with the web interface : the searches by ajax don’t work, but if I call the ajax php file directly, it work fine.

      Navigator : firefox 10.0.6 ESR (or Chromium 18.0.1025.168)

      Javascript errors : Avertissement : Propriété « writing-mode » inconnue. Déclaration abandonnée.
      Fichier Source : [url]http://svfog/fog/management/css/global.css[/url]
      Ligne : 92

      and:
      Avertissement : downloadable font: format not supported (font-family: “Ubuntu” style:normal weight:normal stretch:normal src index:0)
      source: [url]http://svfog/fog/management/css/ubuntu-regular-webfont.eot?#iefix[/url]
      Fichier Source : [url]http://svfog/fog/management/css/global.css[/url]
      Ligne : 0
      Code Source :
      @font-face { font-family: “Ubuntu”; font-style: normal; font-weight: normal; src: url(“ubuntu-regular-webfont.eot?#iefix”) format(“embedded-opentype”), url(“ubuntu-regular-webfont.woff”) format(“woff”), url(“ubuntu-regular-webfont.ttf”) format(“truetype”), url(“ubuntu-regular-webfont.svg#UbuntuRegular”) format(“svg”); }

      A suggestion :

      Can you added an hyperlink in the list of group’s memberships to open a computer (example : file groups.edit.include.php, line 650 :
      echo ( “<tr class=”$bgcolor"><td> <a href=“?node=host&sub=edit&id=”.$members[$i]->getId().“”>" . $members[$i]->getHostName() . “</a></td><td> " . $members[$i]->getIPaddress() . “</td><td> " . $members[$i]->getMAC() . “</td><td><a href=”?node=$_GET[node]&sub=$_GET[sub]&groupid=” . $_GET[“groupid”] . “&tab=$_GET[tab]&delhostid=” . $members[$i]->getID() . “”><img src=“images/deleteSmall.png” class=“link” /></a></td></tr>” );

      )
      Thanks,

      Eric.

      posted in General
      É
      Éric Quinton