CONFIG.txt 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. Troubleshooting
  2. =================
  3. If you are experiencing errors, please check your server error log. Tidypics
  4. writes warnings for most upload related problems. You will see something
  5. along these lines: "Tidypics warning: user exceeded post limit on image upload"
  6. GD PHP Image Library
  7. =====================
  8. Elgg requires GD for image resizing of profile avatars. Tidypics uses GD by
  9. default for resizing. There are two versions GD and GD2. It generally does not matter
  10. which one you are using and it isn't always apparent which one you are
  11. running anyway. GD is a memory hog and will cause problems with large images.
  12. imagick PHP Image Library
  13. =============================
  14. A significantly better image library than GD. Not as common as GD. You may need
  15. to ask your system administrator to install this. The server info tab in Tidypics
  16. settings will tell you whether it is installed.
  17. ImageMagick command line tools
  18. ===============================
  19. This requires that the PHP function exec() is available which is often disabled
  20. for security reasons. You can find ImageMagick on your server by running "which convert".
  21. Memory Available to PHP
  22. =========================
  23. The amount of RAM available to a single PHP process. This can have an effect on
  24. how large an image you can resize (especially if you are running Tidypics with GD).
  25. The best place to change it is .htaccess.
  26. Memory Used to Load This Page
  27. ==============================
  28. This gives you a baseline of how much memory is being used to load the Elgg
  29. framework and plugins. Subtract this number from the total amount of memory available
  30. for image processing. Remember that GD requires a lot of memory - more than just the
  31. size of the image.
  32. Max File Upload Size
  33. =======================
  34. The largest file that can be uploaded. You can adjust this in .htaccess.
  35. Max Post Size
  36. ===============
  37. The largest amount of data that can be submitted. For Tidypics, this affects
  38. how many large images can be uploaded in a single upload with the basic uploader.
  39. If this is exceeded, nothing is uploaded and the user gets an error message.
  40. It can be adjusted in .htaccess.
  41. Max Input Time
  42. ===============
  43. This is the amount of time PHP will wait for an upload to finish. Your users may
  44. experience failures if they are uploading large images on a poor connection or if
  45. your server does not have a lot of bandwidth.
  46. Max Execution Time
  47. ===================
  48. The longest time a PHP script can run on your server. If a user uploads many
  49. large images, the resize code may take a long time to complete and will be
  50. stopped by PHP. If you are seeing problems with this, you probably have a slow server.
  51. GD imagejpeg
  52. ===============
  53. This tells you whether you can resize JPEG images with GD
  54. GD imagegif
  55. ===============
  56. This tells you whether you can resize GIF images with GD
  57. GD imagepng
  58. ===============
  59. This tells you whether you can resize PNG images with GD