Displaying 7 results from an estimated 7 matches for "tyliong".
Did you mean:
tying
2009 Jan 08
4
SMTP settings for action mailer
with rails 2.2.2 action mailer requires a valid ssl certificate
i have a question about routing
my smtp settings for my postfix are now
ActionMailer::Base.smtp_settings = {
:address => "smtp.mydomain.com",
:port => 25,
:domain => "mydomain.com",
:authentication => :plain,
:user_name => "mydomain_mailer-3Q2Tfjf0mexWk0Htik3J/w@public.gmane.org",
2008 Sep 01
4
action view mutiplication problem and why doesn't method work
I am trying to multiply something in view but what i get is the first
parameter without the 2nd parameter being multiplied.
<%= product.price*product.quantity %> only gives product.price
Secondly I have put this method into the
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk"
2008 Sep 03
2
Highlighint rjs problem on a new product
Hi,
Problem Summary:
I have been trying to add the highlight effect to my table but
everytime a new record is added the highlighting gives an rjs error.
However when i click the add to cart button on a product that already
exists inside the table, the highlight effect works. Is this because
the partial must only have only one <tr></tr> in it and the <table>
must be on the other
2009 Apr 07
4
/lib daemon folder: how do i add a module into the daemon?
I am using the daemons plugin.
I have just one problem how do i add modules from the /lib folder to
the /lib/daemons/daemon.rb file
eg. /lib/basic_functions.rb
this is the file i want to load in daemon.rb
contents daemon.rb:
#!/usr/bin/env ruby
# You might want to change this
ENV["RAILS_ENV"] ||= "production"
require File.dirname(__FILE__) +
2008 Sep 03
0
saving to mysql while displaying a partial that calls for the list of mysql items lags
Hi,
Originally this was part of my highlighting question but now after
debugging and slicing up the problem i found that the problem was not
rjs but that saving to database does not sync with the ajax partial
Controller code:
____________________________________________
def add_to_cart
@sguser = Sguser.find(params[:ad])
@lineprice = SglineItem.find(:all, :conditions => "sguser_id =
2008 Dec 13
0
select_tag and select_date how to change inline font
I have been trying to change the font size in the select_date but i
haven''t had any luck
here''s what i did:
<%= select_date( Date.today, :prefix => ''prom_date_end'', :order =>
[ :day,:month, :year], :html => {:style => "font-size: xx-small;"}) %>
--~--~---------~--~----~------------~-------~--~----~
You received this message because
2009 Jan 07
0
Actionmailer and postfix settings
Hi,
I am having problems configuring my actionmailer to work with postfix.
I followed this tutorial: http://howtoforge.org/virtual-users-and-domains-postfix-courier-mysql-centos5.1
and i got the server set up.
at first i fixed the mail settings to work with gmail using this
tutorial:
http://www.danielfischer.com/2008/01/09/how-to-use-gmail-as-your-mail-server-for-rails/
and my app worked