Skip to content

Instantly share code, notes, and snippets.

@kbrmedia
Last active April 22, 2020 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kbrmedia/12f37170595ad21d772eba89b9dd9025 to your computer and use it in GitHub Desktop.
Save kbrmedia/12f37170595ad21d772eba89b9dd9025 to your computer and use it in GitHub Desktop.
Splash Page Fix Premium URL Shortener

To fix the issue, open the file includes/User.class.php go to line 1673 to find

if(($width < 500 && $height < 500) || ($width/$height) != 1)	return Main::redirect("user/splash/create",array("danger",e("Avatar must be either a 100x100 PNG or a JPEG (Max 300KB).")));	

and replace that by

if(($width > 500 && $height > 500) || ($width/$height) != 1)	return Main::redirect("user/splash/create",array("danger",e("Avatar must be either a 100x100 PNG or a JPEG (Max 300KB).")));	
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment