Opened 12 years ago

Closed 12 years ago

#2025 closed defect (fixed)

Installer should set appropriate folder permissions for Profiling feature to work

Reported by: jng Owned by:
Priority: low Milestone: 2.4
Component: Installer Version:
Severity: trivial Keywords:
Cc: External ID:

Description

The new Profiling feature does not currently work out of the box due to insufficient permissions on the profilingmapxml folder, where PHP saves the performance profiling results into.

The installer should configure the correct permissions for this folder

Change History (2)

comment:1 by jng, 12 years ago

Suggested fix from Crispin:

WIX permissions on folders is something like this below.

The NetworkService account is good for W2k03 and below, W2k08 / Win7 needs a different (or additional) account ... best not to use "Everyone" on production systems!

  <DirectoryRef Id="INSTALLLOCATION">
    <Directory Id="dir_Logs_0" Name="Logs">

      <Component Id="comp_Log" DiskId="1" KeyPath="yes" Guid="___">
        <CreateFolder>
          <Permission GenericAll='yes' User='Administrators' />
          <Permission GenericAll='yes' User="NT AUTHORITY\NetworkService" />
        </CreateFolder>
      </Component>

comment:2 by jng, 12 years ago

Resolution: fixed
Status: newclosed

Fixed r6771

Note: See TracTickets for help on using tickets.