kumarsivarajan / mollify

Automatically exported from code.google.com/p/mollify
0 stars 0 forks source link

No share options in menu #554

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Log onto Mollify
2. Select file and right mouseclick to open menu
3.

What is the expected output? What do you see instead?
Expect to find a "share" option, instead there is none

What version of the product are you using? On what operating system?
2.5.12 on Windows Server 2003 32bit, IIS6, MySQL 5.6

Please provide any additional information below.

The Mollify test installation is very basic, and the standard functions are 
working properly (login, get folder contents, view/download files, etc.). 
However I wanted to test the public link functionality through the share 
plugin. I have made the following changes to the configuration.php:

$CONFIGURATION = array(
        "db" => array(
            "type" => "mysql",
            "user" => "mollify",
            "password" => "mollify",
            "host" => "localhost",
            "database" => "MySQL",
            "table_prefix" => "mollify_",
            "charset" => "utf8",
        "plugins" => array(
                "Share" => array()
        )

And added the following line to the index.html, right below the dropbox plugin 
from the example index.html file:
new mollify.plugin.SharePlugin()

When I log in, there are no changes in the menu's. There is no share line 
popping up, only download, copy, copy here, move, rename, delete, permissions 
and Add to dropbox. 

The backend/update tool tells me that no update is required, so I am stumped 
since the info here on the share plugin is fairly straight forward.

How can I get the share options visible and working so I can test public links 
to the files?

Original issue reported on code.google.com by d.groe...@gmail.com on 26 May 2014 at 1:58

GoogleCodeExporter commented 8 years ago
The plugins in configuration.php don't go under "db", but in the root level.

Something like this: 

$CONFIGURATION = array(
    "db" => array(
        "type" => "mysql",
        ...
    ),
    "plugins" => array(
        "Share" => array(),
        ...
    )
);

And remember to run updater after this.

Original comment by samuli.j...@gmail.com on 27 May 2014 at 11:34

GoogleCodeExporter commented 8 years ago
Now I feel like a complete dimwit... that fixed it and I cannot believe I did 
not see that mistake, thx!

Original comment by d.groe...@gmail.com on 28 May 2014 at 6:54

GoogleCodeExporter commented 8 years ago
no problem

Original comment by samuli.j...@gmail.com on 28 May 2014 at 7:06