Your server has safe mode on. This will restrict your use of this module because it often requires more than 30 seconds to parse a feed

'; } include_once (AH_DIR_PATH.'misc'.AH_DS.'instructions.php'); } /** * * @return string */ function ah_changelog() { $form = '

Changelog

'; $form .= ''; return $form; } /** * * @return string */ function ah_admin_sidebar() { $form = '
'; $form .= '
'; $form .= '

Important notice on version 1.5

'; $form .= '

This is a major re-write of the PHP code

'; $form .= '

It has only been released after extensive testing but nevertheless bugs may still be present

'; $form .= '

If you come across any, don\'t panic and follow the procedure for filing bugs below

'; $form .= '

Author details

'; $form .= '

This plugin has been created by Andy Walpole

'; $form .= '

Please report any bugs or feature requests here

'; $form .= '

Once you have done that please email me here about the new thread

'; $form .= '

It\'s best that all discussion about this plugin is kept in the public arena so that others can learn from any issues

'; $form .= '

Hire me

'; $form .= '

Although I work on a full-time contract basis in the web development industry I sometimes carry out private work. Please contact me for a quote.

'; $form .= '

Drupal port

'; $form .= '

There is now a Drupal port of this module here. It is currently in sandbox stage but should hopefully be elevated to full project status eventually.

'; $form .= '
'; $form .= '
'; return $form; } /** * * Find maximum file upload size * * @return string */ function ah_max_upload() { $max_upload = @(int)(ini_get('upload_max_filesize')); $max_post = @(int)(ini_get('post_max_size')); $memory_limit = @(int)(ini_get('memory_limit')); if (isset($max_upload) && isset($max_post) && isset($memory_limit)) { return (int)(min($max_upload, $max_post, $memory_limit) * 1048576); } else { return 2097152; } }