Branding
An EAM edition license (or above) is required for this feature. To upgrade please contact [email protected]
You can customize SquaredUp by changing the SquaredUp branding to your own company's branding for all users. From System > Branding there are three images you can change, the home button, the logon box image and logon page background.
Most image formats are accepted, .jpg, .png .SVG etc.
Home Company Logo
This allows you to change the home button that appears at the top left of SquaredUp. The image is automatically resized, but you can design your image to be 22 x 22 pixels.
- Click custom logo.
- Drop your file in the box, or click to upload your image.
- You can revert to the SquaredUp logo by clicking back to default logo.
Login Company Logo
This allows you to change the image displayed above the login box. The image is automatically resized to 300 pixels wide, but your image can be any height.
- Click custom logo.
- Drop your file in the box, or click to upload your image.
- You can revert to the SquaredUp logo by clicking back to default logo.
- Alternatively, you can choose not to use an image by clicking none.
Login Background
This allows you to change the background behind the login box.
- Click custom background.
- Drop your file in the box, or click to upload your image.
- You can revert to the SquaredUp logo by clicking back to default logo.
- Alternatively, you can click selected color and choose a color for the background.
Troubleshooting
How to increase the file upload size in IIS
The default limit on file uploads is 4MB, but this can be increased up to a hard limit of 10MB.
These steps describe how to change the file size limit in the web.config
file on your SquaredUp server:
Find the
web.config
file located in the SquaredUp folder.Create a backup of theThe default location for the SquaredUp folder is
C:\inetpub\wwwroot\SquaredUp
For v5 it is
C:\inetpub\wwwroot\SquaredUpv5
and for v4C:\inetpub\wwwroot\SquaredUpv4
.Name of the SquaredUp folderA custom location may have been chosen during the installation.
The default name of the SquaredUp folder is
SquaredUp
for v6 and above.For v5 it is
SquaredUpv5
, and for v4SquaredUpv4
.web.config
file by copy and pasting the file to a different location.Open the
web.config
file in the SquaredUp folder as an administrator.- Add (or amend if the
httpRuntime
line already exists)<httpRuntime maxRequestLength="xxx" />
wherexxx
is the file size limit in KB, up to a limit of 10000. For example, you might need to amend the line as below:<configuration> <system.web> ... <httpRuntime targetFramework="4.5.2" enableVersionHeader="false" maxRequestLength="6000" /> ... </system.web> </configuration>
- Save the
web.config
file. - Open a command prompt as 'Run as administrator' and type
iisreset
to restart IIS. You should then be able to upload the file to SquaredUp DS.