Dragonrider wrote:Check your actual plugin directory, make sure both the php file and folder are there for mail2list
Dragonrider wrote:I would expect, for server security mailtolist.php to be 644 permission wise.
brodsta wrote:Dragonrider wrote:I would expect, for server security mailtolist.php to be 644 permission wise.
OK thanks for that, fixed the permissions up. I've tried with a bunch of other plugins and I'm not getting any configuration links in the plugins page at all. Can't find any screenshots so I'm not actually sure what it's meant to look like, other than a few posts indicating the name of each plugin should be a link.
Dragonrider wrote:Sorry, just re-read this post, configure your Mail2List on the configuration page, not the plugin page. It'll be somewhere WAY down the bottom of the page.
<?php
/**
* EMAIL TO PHPLIST
* This is a plugin for phplist
* Created by SaWey (C) 2007
*
*
* The only thing you have to do is
* Put the files in your plugin directory
* And change the file path and URL to the
* attachments dir in get_email.class.php
* All other config happens in the webgui
*/
class mailtolist extends phplistPlugin {
const VERSION_FILE = 'version.txt';
public $name = 'Mail to List';
public $description = '';
public $authors = '';
public $topMenuLinks = array(
'main' => array('category' => 'config'),
);
public $pageTitles = array(
'main' => 'Mail2List',
);
public function __construct()
{
$this->coderoot = dirname(__FILE__) . '/mailtolist/';
$this->version = (is_file($f = $this->coderoot . self::VERSION_FILE))
? file_get_contents($f)
: '';
parent::__construct();
}
}
?>
Return to Contributions: Plug-ins, Add-ons, Mods
Users browsing this forum: No registered users and 1 guest