search for: qt0dzr

Displaying 20 results from an estimated 40 matches for "qt0dzr".

2011 Aug 04
1
GitHub - How to resolve this issue of preventing push to origin?
...owing: $ git push origin master Enter passphrase for key ''/c/Users/Medicine - SWEng/.ssh/id_rsa'': ERROR: Repository not found. fatal: The remote end hung up unexpectedly **EDIT:** Output of running `git remote -v`: $ git remote -v heroku git-Vgi1d2+GxVTQT0dZR+AlfA@public.gmane.org:young-rain-273.git (fetch) heroku git-Vgi1d2+GxVTQT0dZR+AlfA@public.gmane.org:young-rain-273.git (push) origin git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:SWEngineer7sample_app.git (fetch) origin git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:SWEngineer7sample_app....
2006 Mar 05
5
DreamHost and ActionMailer
I''m getting ready to sign up with DreamHost, but my application is missing the ActionMailer features. First, can anyone provide some real code to send an email upon comment submission? Second, is it easy to setup ActionMailer on a DreamHost server? Thanks! -- Posted via http://www.ruby-forum.com/.
2009 Oct 21
3
alias_method_chain and ActiveSupport::TestCase
I''m trying to add some functionality to the setup method of all my tests. I added a method called setup_with_ts in the test_helper and chained it using alias_method_chain :setup, :ts and that works great for every test that does not define setup in the test. So for my unit tests i tried also defining the same method setup_with_ts in a class ActiveSupport::TestCase def setup_with_ts
2008 Mar 13
0
mail problem and rails 2.0.2
...Please go through the following code if you can figure out something wrong. Do i need to change something for rails 2.0.2? My mailer model is as follows: class UserMailer < ActionMailer::Base def send_mail(person,textarea,subject) recipients person.email1 from "abc-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org" subject subject body textarea content_type "text/html" end end In the develeopment.rb i have the smtp settings as . . . # Check error if the mailer can''t send config.action_mailer.raise_delivery_errors = true #set delivery method...
2008 Sep 04
1
actionmailer sends from commandline but not from web
...onMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => "smtp.domain.com", :port => "25", :domain => "domain.com" } class Emailer < ActionMailer::Base def test() recipients "me-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org" from "you-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org" subject "subject" body "body" end end Emailer.deliver_test() ------------------------- I''m running Apache 2.2, and this is what my ruby.conf file for...
2009 Mar 17
1
ActionMailer works for gmail/yahoo, but not for other email addresses...HELP!
I have a rails app that can send emails to gmail, yahoo accounts. But when it comes to more obscure accounts like email-VB3JyQctZj/QT0dZR+AlfA@public.gmane.org or email-yvl6RSr0Ftk@public.gmane.org, the mail never arrives even though the log shows that the email was sent. Any ideas why this may be happening? I have sent an email directly through the same web server through the command line using mail -s and that worked. Why doesn...
2011 Dec 05
2
How to bypass a create record after validation wo error ?
I have a specific signup process to handle, and I am turning around the solution wo finding a clear validation ... a visitor fill in a User Registration form ( email /pwd /pwd confirmation ) I wrote a UserValidator class to check the uniqueness of the email field # if no user registered w this email, then no error , can proceed to create User.where(:email => self.email).empty? # no
2010 Sep 27
3
Rails3 app deploy : how to ?
Hello, I know many people are asking this kind of question. I searched in this forum and some others in the web but i did found something clear enough for my "ror''s power" (i''m not completly new but real close ;-) ) Well, I''m developing my application on os x, i''m using svn (team choice) for versionning but i will need to deploy on linux server (with
2013 Mar 03
1
Deploy with Capistrano. Bundle install freezes indefinetly.
...capistrano" # Load RVM''s capistrano plugin. set :rvm_ruby_string, :local # Or whatever env you want it to run in. ''1.9.3'' set :domain, ''www.xxx.com'' set :application, "myapp" set :repository, "git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:myrepo/myapp.git" set :branch, "bkpantesbootstrap" # "master" set :scm, "git" # :git set :user, "myuser" set :deploy_to, "/home/myuser/apps/#{application}" set :deploy_via, :copy # :remote_cache set :copy_st...
2006 Aug 23
12
mod_ruby and rails
Can rails run under apache and mod_ruby? How? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to
2007 Jan 18
7
form_tag broken in Rails 1.2 RC2 or is it me?
I''m using Rails 1.2 RC2 and I''ve got a view that uses form_tag and the form is not being rendered. It''s just not there. My view is this: <div class="box"> <fieldset> <legend>Log in</legend> <% form_tag do %> <div class="row"> <div class="formfield"> <label
2011 Oct 02
5
tutorial: gravatar_image_tag problem
Hi all, Still working through the Hartl tutorials. Making progress but am hitting (another) wall. The repository is on github at: git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:aamax/sample_app.git if you want to see the code. I''ve pretty much followed the tutorial exactly except I am using rails 3.1.0 rather than 3.0.1 and some of the other gem versions are different. I posted a gist entry at https://gist.github.com/1257103 Hopef...
2007 Jan 06
6
Exception notifier not working
I installed the exception notifier via: /script/plugin install -x exception_notification It resides in the vendor/exception_notification directory (as advertised). I''ve configured environment.rb with the following: ExceptionNotifier.exception_recipients = %w(blakemiller-uBzjpPW2m0pBDgjK7y7TUQ@public.gmane.org) ExceptionNotifier.sender_address = %("Application Error"
2007 Mar 13
1
imap and character enconding
...rst steps. For instance, if I want to read my INBOX folder and list the messages: ------------------------------------------- CONTROLLER => def list_inbox imap = Net::IMAP.new(''xxx.xxx.xxx.xxx'') imap.authenticate(''LOGIN'', ''username-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org'', ''password'') imap.select(''INBOX'') @emails = [] imap.search(["ALL"]).each do |i| @emails << imap.fetch(i, "ENVELOPE")[0].attr["ENVELOPE"] end imap.disconnect end VIEW =&...
2011 Aug 19
0
Sortable Nested Set for Rails 3.1.rc6 (Jquery + Nested set gem) released
Hello! Dreaming about Drag and Drop for Nested Sets? It’s should be with JQuery? Here’s the solution! https://github.com/the-teacher/Sortable-Nested-Set Installing cd ~ git clone git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:the-teacher/Sortable-Nested-Set.git cd Sortable-Nested-Set/ sudo bundle install change config/database.yml rake app:create rails s PLAY! I hope this will be useful for someone. -- Posted via http://www.ruby-forum.com/. -- You received this message bec...
2013 Feb 04
0
Jqgrid set both pagination and scroll loader in rails
Hi all, i am using ''jqgrid_rails'', :git => ''git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org:ctisol/jqgrid_rails.git'', :tag => ''v1.2.6'' is possible to use both pagination and scroll loader. i want to use pagination as well as scroll loader at same time. can u any one help me with solution ASAP. thanks in advance. Im waiting -- You r...
2011 Oct 30
5
Fatal error: The remote end hung up unexpectedly
...;new app" 1st step DONE 2. http://help.github.com/linux-set-up-git/ - I use this tutorial $ ssh-keygen -t rsa -C "a.sadecki-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org" passphrases --> empty I''ve copied id_rsa.pub into SSH Public Keys in GITHUBE site $ ssh -T git-9UaJU3cA/F/QT0dZR+AlfA@public.gmane.org git config --global user.name "girly girl" git config --global user.email "a.sadecki-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org" git config --global github.user girlygirl git config --global github.token my_token 2nd step DONE 3. I go to the /home/alex/Doku...
2007 Jun 06
7
RadRails vs. Textmate
Is there anyone out there can give me a comparison between RadRails/ Aptana and Textmate? I have been using skEdit for all of my general coding stuff, but I am now looking into getting a new editor for my Ruby/Rails work. I know that most Mac users swear by Textmate, but I would really like to hear some comparisons between RadRails, Textmate, and even skEdit as well. What your thoughts and
2009 Feb 10
0
ActionMailer getaddrinfo: Name or service not known..
...n error negotiating with the mail server. Here are the settings I''m using for SMTP delivery: config.action_mailer.smtp_settings = { :domain => ''domain.com'', :address => ''mail.domain.com'', :port => 25, :user_name => ''user-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org'', :password => ''passwd'', :authentication => :login } I''ve attempted setting domain to localhost/127.0.0.1 as google prescribes, but I''m still experiencing the issue. So I did a telnet session with the SMTP service and I rece...
2005 Jul 07
1
Rails 0.13 failing on Win XP
Hi all, Since 0.13 just got out, I decided to live a little on the edge and upgraded my working 0.12.1 Rails apps to 0.13. Which made them crash with a bang! After a little investigation it looks like even a fresh app will crash with a message: "allocator undefined for proc"... I''m on Win XP, everything was fine under Rails 0.12.1 Any help would be highly appreciated. --