• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. dwit
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 10
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by dwit

    • D

      Boot menu not loading

      FOG Problems
      • • • dwit
      9
      0
      Votes
      9
      Posts
      2.2k
      Views

      D

      just found my error 😞 …

      I add my DHCP entry to undionly.pxe instead of undionly.kpxe

      thanks for your support and your great work.

    • D

      Upload Image stay in dev folder

      FOG Problems
      • • • dwit
      2
      0
      Votes
      2
      Posts
      983
      Views

      Jaymes DriverJ

      [quote=“dwit, post: 31433, member: 24311”]HI,

      I’ve done a fresh install of fog 1.1.1 with node, I’m trying to upload an new image. It run fine except the image stay in the /image/dev folder and stay with a generic name.

      I try to chmod -R 777 * the images folder but it doesn’t change …
      I’m running on ubuntu and FOG 1.1.1.

      Any idea ?

      thanks in advance ,[/quote]

      Try this
      [code]
      sudo chmod -R 0777 /images[/code] and give it a go. also there is an update out please download and install FOG 1.1.2 some major bug fixes and improvements have been implemented.

    • D

      List all images - pages not found

      FOG Problems
      • • • dwit
      20
      0
      Votes
      20
      Posts
      6.4k
      Views

      I

      What was the actual root cause of this problem? I’ve just run into it after upgrading a 0.32 system to 1.1.2. The system is in production so I’d rather not upgrade to SVN unless it is absolutely necessary.

      [COLOR=#ff0000]EDIT - FIXED (kindof)[/COLOR]
      [COLOR=#000000]In my case this turned out to be one of my “antique” images which was referring to an imageNFSGroupID which no longer exists. Correcting that problem fixed the white screen issue for me. [/COLOR]

      [COLOR=#000000]N.B. I’m including the SQL (below) which fixed my problem, but I’m doing this mostly as a reminder to myself. Use it at your own risk!!![/COLOR]

      [CODE]
      $ mysql -u root -p
      Enter password: *************
      mysql> use fog;
      mysql> SELECT ngID,ngName FROm nfsGroups;
      ±-----±--------+
      | ngID | ngName |
      ±-----±--------+
      | 1 | default |
      ±-----±--------+

      mysql> SELECT ngmID,ngmGroupID FROM nfsGroupMembers;
      ±------±-----------+
      | ngmID | ngmGroupID |
      ±------±-----------+
      | 1 | 1 |
      ±------±-----------+

      mysql> SELECT imageID, imageName, imageNFSGroupID FROM images WHERE imageNFSGroupID!=1;
      ±--------±-----------------------------------------±----------------+
      | 47 | RHL6x64PIMS50GBTest | 3|
      ±--------±-----------------------------------------±----------------+

      mysql> UPDATE images SET imageNFSGroupID=1 WHERE imageID=47;
      [/CODE]

    • 1 / 1