Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    •  
      CommentAuthorsidtheduck
    • CommentTimeJun 27th 2008
     
    How many images are you trying to import, etc? I'm guessing that your PHP is timing out (set by max_execution_time in php.ini).
    I'm guessing you are not allowed to set PHP system variables via "ini_set" functions (which are already in place in Plogger). However, are you allowed .htaccess files on your server to change PHP setting variables? If so, I can help you set up the variables manually via an .htaccess file.

    Just open the .htaccess file that comes with the Plogger install and add the following lines to the top:
    php_value upload_max_filesize 16M
    php_value max_execution_time 300
    php_value memory_limit 64M

    This should set your upload filesize to 16MB, your timeout time to 300 seconds, and your temporary memory to 64MB (if .htaccess files are supported to change php.ini variables). You can change these values to whatever you would like (I'm just matching what Plogger tries to set them as within the script).
  1.  
    I've tried doing this and it errors out the whole site. Can you upload a sample .htaccess file so I can download it and make sure mine is laid our correctly? or you can email it to spim@threesided.com thx

    adam
    •  
      CommentAuthorsidtheduck
    • CommentTimeJul 1st 2008
     
    weaselbringer,

    Judging by the upgrade features of newsit.es, it looks like they may not allow .htaccess or custom php.ini files for the free server (you may have to upgrade to get these options). Most likely that is why your whole site is erroring (a 500 error?). You may have to contact their tech support directly to see if the free version of their site allows for custom php.ini files or local, private .htaccess files.