We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 36582
    • 463 Posts
    Cliche was working fine and then suddenly I can't upload any images and it's looking like (checking via FTP) no physical galleries are created?

    Error: cliche.upload_max_filesize

    Revo 2.2.2 trad
    Cliche 1.0.1
      Web site design in Nottingham UK by Chris Fickling http://www.chrisficklingdesign.co.uk
      • 40553
      • 42 Posts
      To aonyone who is getting the following error:

      • cliche.upload_max_filesize

      The error is caused by simple mistake in the class which is handling file upload.

      Find the file core/components/cliche/model/cliche/helpers/fileuploader.class.php and change the line number 59 from this:

      • if ($postSize < $this->config['sizeLimit']){

      to this:

      • if ($postSize > $this->config['sizeLimit']){
        • 28173
        • 409 Posts
        Thanks for the tip, but I had another error after your modification.
        So I comment all the "if" block, and it's working well now smiley