Portfolio & Horde Modules

Well I am in the process of setting up a new site, but I need a portfolio for my work. Does anybody know of a good one I could use.

Also I would like to have Horde module so I can allow users to check there e-mail on my site.

I would appreciate it is anybody could help me out here.

risoftwi

Well I am in the process of setting up a new site, but I need a portfolio for my work. Does anybody know of a good one I could use.

Also I would like to have Horde module so I can allow users to check there e-mail on my site.

I would appreciate it is anybody could help me out here.


I don't know about a portfolio module or a module for Horde. But you can add a login block for Horde to your site. Simply add this code to a plain old HTML block (edit the domain name of course to suit your site).

Code

<form action="http://localhost.com/horde/imp/redirect.php" method="post" name="implogin">
<input type="hidden" name="actionID" value="105" />
<input type="hidden" name="url" value="http://localhost.com/horde/login.php" />
<input type="hidden" name="mailbox" value="INBOX" />
<input type="text" tabindex="1" name="imapuser" value="" />
<input type="password" tabindex="2" name="pass" />
<input type="hidden" name="server" value="localhost" />
<input type="hidden" name="port" value="143" />
<input type="hidden" name="namespace" value="INBOX." />
<input type="hidden" name="maildomain" value="http://localhost.com" />
<input type="hidden" name="protocol" value="imap/notls" />
<input type="hidden" name="realm" value="localhost.com" />
<input type="submit" class="button" name="button" tabindex="4" value="Log in" onclick="return submit_login();" /></form>

Zoom


I don't know about a portfolio module or a module for Horde. But you can add a login block for Horde to your site. Simply add this code to a plain old HTML block (edit the domain name of course to suit your site).

Code

<form action="http://localhost.com/horde/imp/redirect.php" method="post" name="implogin">
<input type="hidden" name="actionID" value="105" />
<input type="hidden" name="url" value="http://localhost.com/horde/login.php" />
<input type="hidden" name="mailbox" value="INBOX" />
<input type="text" tabindex="1" name="imapuser" value="" />
<input type="password" tabindex="2" name="pass" />
<input type="hidden" name="server" value="localhost" />
<input type="hidden" name="port" value="143" />
<input type="hidden" name="namespace" value="INBOX." />
<input type="hidden" name="maildomain" value="http://localhost.com" />
<input type="hidden" name="protocol" value="imap/notls" />
<input type="hidden" name="realm" value="localhost.com" />
<input type="submit" class="button" name="button" tabindex="4" value="Log in" onclick="return submit_login();" /></form>



Hello,

I have a small question regarding this code:

How can I make it so that the resulting URL is wrapped using postwrap? I know that the URL needs to be 'page.php?URL=http://localhost.com' instead of 'http://localhost.com' but I can't get it to work when I change the code above and add page.php?URL= to the values above.

Thank you