Displaying 2 results from an estimated 2 matches for "sueccess".
Did you mean:
success
2005 Jul 17
0
issues/workarounds to build dovecot on OSX
...\
--mandir=/var/Documentation/man \
--datadir=/var/Data/Dovecot \
--with-ssl=openssl --with-ssldir=/usr/local \
--with-rundir=/var/Process/dovecot \
--with-moduledir=/usr/local/dovecot-modules \
--enable-shared \
--enable-static \
--enable-ipv6 \
--with-pgsql \
--disable-debug
completes sueccessfully, as do:
make
make check
make install
resulting in:
% ls -aR
.:
. .. libexec sbin
./libexec:
. .. dovecot
./libexec/dovecot:
. checkpassword-reply dovecot-auth imap-login pop3-login
.. deliver imap pop3 rawlog
./sbin:
....
2006 Apr 24
1
Upload Progress Bar not showing
...class UploadsController < ApplicationController
before_filter :authorize
upload_status_for :new
[...]
def new
if request.get?
@upload = Upload.new
else
@upload = Upload.new(@params["upload"])
if @upload.save
flash[:notice] = "File uploaded sueccessfully."
redirect_to :action => "list"
end
end
end
end
And the ''new'' upload view:
<h3>Upload File</h3>
<%= form_tag_with_upload_progress %>
<p><input type="file" id="upload_file" name="uploa...