Displaying 13 results from an estimated 13 matches for "upadt".
Did you mean:
updt
2008 Sep 01
1
upadte database
i want to update database .
--~--~---------~--~----~------------~-------~--~----~
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
2005 Jan 17
3
RHEL 4 => CentOS 4
Hi,
I would like to try to switch from CentOS 3.4 => CentOS 4 beta.
I hava a couple of questions:
-is possible to upadte/upgrade my test box from 3.4 => 4 and what are
the yum.conf settings/requirements?
-is it easy to update your CentOS 4 beta => CentOS 4 when the stable
version comes out?
Thanks in advance!
--
Kind Regards,
Michiel van Es
2009 Jul 09
6
rdiscount Deadlock !
....1
You''re running:
ruby 1.8.7.72 at /opt/ruby/bin/ruby
rubygems 1.3.2 at /home/marya/.gem/ruby/1.8,
/opt/ruby/lib/ruby/gems/1.8
--------------------------------------------
is there someway to bypass version check ?
i tried to make symlink of rdiscount-1.3.4 to rdiscount-1.3.1.1 and
upadted rdiscount.gemspec with ver 1.3.1.1
but still rake db:migrate gives error for rdiscount-1.3.1.1
--
Posted via http://www.ruby-forum.com/.
2006 Nov 30
1
update quota
I'm working with last dovecot r15 and exim 4.63
When I download my emails, pop3, dovecot not upadtes the maildirsize file
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://dovecot.org/pipermail/dovecot/attachments/20061130/901f4771/attachment-0001.html>
2016 Oct 10
3
a question about tdb record backup for ctdb failover
hello everyone:
I want to know if the lastest version of ctdb has the following mechanism:
when a record in tdb was added or upadted, if there are two same record in different nodes.In other words, if ctdb need to backup a record on other node?
if not, do we plan to add this mechanism?
thank you !
________________________________
sunyekuan at outlook.com
2006 Jul 04
1
redirect being performed on server when via AJAX call?
Hi,
I''m having a hard time understanding why when I make a request via an
AJAX call that triggers a redirect, the redirect seems to be performed
by the server and the response of that subsequent request is the one
sent back to the client.
I am aware I can send back JavaScript in the response to perform the
location change rather than a redirect but I''d like to have the 302
2006 Feb 23
2
Problesm with an application
Hi all,
I just start to experience problems ussing Wine with an application
(called Past) that was not experienced before. I am using Wine 0.98 in a
Kubuntu Breezy instalation (upadted, with KDE 3.5.1) in a notebook Toshiba
Satelite 1715, with 196 Mb RAM.
The site for the program (freeware) is: http://folk.uio.no/ohammer/past/
All the other several programs (even one that does not run properly with
0.97) runs fine, but Past gave the following message after execute "win...
2002 Jan 13
0
rsynd-2.5.1 / checksum.c patches
...Sun Jan 6 22:41:06 2002
@@ -1,3 +1,4 @@
+/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:CHECKSUM.TPU on
6-JAN-2002 22:41:06.45 OPENVMS_AXP */
/*
Copyright (C) Andrew Tridgell 1996
Copyright (C) Paul Mackerras 1996
@@ -30,7 +31,7 @@
a simple 32 bit checksum that can be upadted from either end
(inspired by Mark Adler's Adler-32 checksum)
*/
-uint32 get_checksum1(char *buf1,int len)
+uint32 get_checksum1(const void *buf1,int len)
{
int i;
uint32 s1, s2;
@@ -49,7 +50,7 @@
}
-void get_checksum2(char *buf,int len,char *sum)
+void get_checksum2(...
2005 Jan 17
2
OT - Software deployment
Hi all,
I have been fishing through the archives and have not found a lot of posts
about this that were not 'golden oldies.' Do you guys use anything other
than brute force to deploy software and updates to your client PCs? I would
be interested to know what you are using, whether you use it for initial OS
install, software deployment/upgrades, or other things, and roughly how much
2006 Dec 15
15
running mongrel in production on win32
Hey guys, I''m running the mongrel server that comes with rails-1.2rc1
for development on a winxp box, anticipating taking it into production
on a win2k3 box in the next few weeks. I''ve had a couple of crashes
occur during development that give me pause, however. I made a ticket
for the last one here:
http://dev.rubyonrails.org/ticket/6841
I know, or at least believe, that
2003 Oct 05
2
Possible security hole
Maybe security related mails should be sent elsewhere? I didn't notice
any so here it goes:
sender.c:receive_sums()
s->count = read_int(f);
..
s->sums = (struct sum_buf *)malloc(sizeof(s->sums[0])*s->count);
if (!s->sums) out_of_memory("receive_sums");
for (i=0; i < (int) s->count;i++) {
s->sums[i].sum1 = read_int(f);
2010 Nov 29
15
Playonlinux and Office 2007
I'm trying to install MS office 2007 standard trial using Playonlinux on Wine 1.3.8.
I need to install stuff like MSXML, .net 2 etc... but when I start installing them, a dialog pops up saying 'choose a prefix to patch'... and the list below is empty.
If I forward the dialog just closes.
2002 Aug 05
5
[patch] read-devices
...c rsync-patched/checksum.c
--- rsync-2.5.5/checksum.c Tue Oct 26 01:04:09 1999
+++ rsync-patched/checksum.c Mon Aug 5 10:05:15 2002
@@ -24,8 +24,9 @@
#define CSUM_CHUNK 64
int checksum_seed = 0;
extern int remote_version;
+extern int read_devices;
/*
a simple 32 bit checksum that can be upadted from either end
(inspired by Mark Adler's Adler-32 checksum)
@@ -73,43 +74,40 @@
for(i = 0; i + CSUM_CHUNK <= len; i += CSUM_CHUNK) {
mdfour_update(&m, (uchar *)(buf1+i), CSUM_CHUNK);
}
- if (len - i > 0) {
+ if (len - i > 0) { /* make this ">=" to addr...