<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://secure.freeside.biz/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Darsys</id>
		<title>Freeside - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://secure.freeside.biz/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Darsys"/>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php/Special:Contributions/Darsys"/>
		<updated>2026-05-05T11:36:49Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.7</generator>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside_talk:1.7:Documentation:Upgrading&amp;diff=2248</id>
		<title>Freeside talk:1.7:Documentation:Upgrading</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside_talk:1.7:Documentation:Upgrading&amp;diff=2248"/>
				<updated>2007-06-16T01:07:06Z</updated>
		
		<summary type="html">&lt;p&gt;Darsys: Issues with freeside-upgrade&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== int-&amp;gt;bigint for the byte counting stuff ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
clear; for t in svc_acct h_svc_acct; do for c in upbytes upbytes_threshold downbytes downbytes_threshold totalbytes totalbytes_threshold; do echo &amp;quot;BEGIN WORK;&lt;br /&gt;
ALTER TABLE $t ADD COLUMN ${c}_new bigint;&lt;br /&gt;
UPDATE $t SET ${c}_new = CAST($c AS bigint);&lt;br /&gt;
ALTER TABLE $t DROP COLUMN $c; &lt;br /&gt;
ALTER TABLE $t RENAME COLUMN ${c}_new TO $c;&lt;br /&gt;
COMMIT WORK;&lt;br /&gt;
&amp;quot;; done; done&lt;br /&gt;
&lt;br /&gt;
clear; for t in prepay_credit h_prepay_credit; do for c in upbytes downbytes totalbytes; do echo &amp;quot;BEGIN WORK;&lt;br /&gt;
ALTER TABLE $t ADD COLUMN ${c}_new bigint;&lt;br /&gt;
UPDATE $t SET ${c}_new = CAST($c AS bigint);&lt;br /&gt;
ALTER TABLE $t DROP COLUMN $c;&lt;br /&gt;
ALTER TABLE $t RENAME COLUMN ${c}_new TO $c;&lt;br /&gt;
COMMIT WORK;&lt;br /&gt;
&amp;quot;; done; done&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== bigger payinfo fields for encryption ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ALTER TABLE cust_main ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE cust_main SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE cust_main DROP payinfo;&lt;br /&gt;
ALTER TABLE cust_main RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE cust_main ADD paycvv_new varchar(512);&lt;br /&gt;
UPDATE cust_main SET paycvv_new = paycvv;&lt;br /&gt;
ALTER TABLE cust_main DROP paycvv;&lt;br /&gt;
ALTER TABLE cust_main RENAME paycvv_new TO paycvv;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_cust_main ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE h_cust_main SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE h_cust_main DROP payinfo;&lt;br /&gt;
ALTER TABLE h_cust_main RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_cust_main ADD paycvv_new varchar(512);&lt;br /&gt;
UPDATE h_cust_main SET paycvv_new = paycvv;&lt;br /&gt;
ALTER TABLE h_cust_main DROP paycvv;&lt;br /&gt;
ALTER TABLE h_cust_main RENAME paycvv_new TO paycvv;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE cust_pay ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE cust_pay SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE cust_pay DROP payinfo;&lt;br /&gt;
ALTER TABLE cust_pay RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_cust_pay ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE h_cust_pay SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE h_cust_pay DROP payinfo;&lt;br /&gt;
ALTER TABLE h_cust_pay RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE cust_pay_void ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE cust_pay_void SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE cust_pay_void DROP payinfo;&lt;br /&gt;
ALTER TABLE cust_pay_void RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_cust_pay_void ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE h_cust_pay_void SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE h_cust_pay_void DROP payinfo;&lt;br /&gt;
ALTER TABLE h_cust_pay_void RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE cust_pay_batch ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE cust_pay_batch SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE cust_pay_batch DROP payinfo;&lt;br /&gt;
ALTER TABLE cust_pay_batch RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_cust_pay_batch ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE h_cust_pay_batch SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE h_cust_pay_batch DROP payinfo;&lt;br /&gt;
ALTER TABLE h_cust_pay_batch RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE cust_refund ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE cust_refund SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE cust_refund DROP payinfo;&lt;br /&gt;
ALTER TABLE cust_refund RENAME payinfo_new TO payinfo;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_cust_refund ADD payinfo_new varchar(512);&lt;br /&gt;
UPDATE h_cust_refund SET payinfo_new = payinfo;&lt;br /&gt;
ALTER TABLE h_cust_refund DROP payinfo;&lt;br /&gt;
ALTER TABLE h_cust_refund RENAME payinfo_new TO payinfo;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== bigger _password fields for weird LDAP encodings ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ALTER TABLE svc_acct ADD _password_new varchar(512) NOT NULL;&lt;br /&gt;
UPDATE svc_acct SET _password_new = _password;&lt;br /&gt;
ALTER TABLE svc_acct DROP _password;&lt;br /&gt;
ALTER TABLE svc_acct RENAME _password_new TO _password;&lt;br /&gt;
&lt;br /&gt;
ALTER TABLE h_svc_acct ADD _password_new varchar(512) NOT NULL;&lt;br /&gt;
UPDATE h_svc_acct SET _password_new = _password;&lt;br /&gt;
ALTER TABLE h_svc_acct DROP _password;&lt;br /&gt;
ALTER TABLE h_svc_acct RENAME _password_new TO _password;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Issues with freeside-upgrade  ==&lt;br /&gt;
&lt;br /&gt;
I had lots of issues while trying to run freeside-upgrade.  The fix I finally made work was to run the script as follows &lt;br /&gt;
&lt;br /&gt;
freeside-upgrade -d username &amp;gt; dbupdatefile&lt;br /&gt;
&lt;br /&gt;
and then manually dump the dbupdatefile to psql&lt;br /&gt;
&lt;br /&gt;
psql -f dbupdatefile&lt;/div&gt;</summary>
		<author><name>Darsys</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside_talk:1.7:Documentation:RT_Installation&amp;diff=1583</id>
		<title>Freeside talk:1.7:Documentation:RT Installation</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside_talk:1.7:Documentation:RT_Installation&amp;diff=1583"/>
				<updated>2006-11-07T15:51:40Z</updated>
		
		<summary type="html">&lt;p&gt;Darsys: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I just went through this installation and thought I would edit the page a little but wanted to get approval from all.&lt;br /&gt;
&lt;br /&gt;
In my installation the root user for rt was already in the system.  I would like to edit the section about adding this user to reflect that.  What version was this user added automatically?&lt;br /&gt;
&lt;br /&gt;
In the section about logging into rt as added root user I would like to add the following:  ''You may also need to add 'root' as a freeside user in order for the web server to allow access. (Be sure to disable after installation!)''&lt;/div&gt;</summary>
		<author><name>Darsys</name></author>	</entry>

	<entry>
		<id>https://secure.freeside.biz/mediawiki/index.php?title=Freeside_talk:1.7:Documentation:RT_Installation&amp;diff=1582</id>
		<title>Freeside talk:1.7:Documentation:RT Installation</title>
		<link rel="alternate" type="text/html" href="https://secure.freeside.biz/mediawiki/index.php?title=Freeside_talk:1.7:Documentation:RT_Installation&amp;diff=1582"/>
				<updated>2006-11-07T15:50:32Z</updated>
		
		<summary type="html">&lt;p&gt;Darsys: RT Installation Update&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I just went through this installation and thought I would edit the page a little but wanted to get approval from all.&lt;br /&gt;
&lt;br /&gt;
In my installation the root user for rt was already in the system.  I would like to edit the section about adding this user to reflect that.  What version was this user added automatically?&lt;br /&gt;
&lt;br /&gt;
In the section about logging into rt as added root user I would like to add the following:  ''You may also need to root as a freeside user in order for the web server to allow access.''&lt;/div&gt;</summary>
		<author><name>Darsys</name></author>	</entry>

	</feed>