Tips &amp; Clues https://www.jaxbeachtech.com/index.php/ en PhpMyAdmin error message when the script has not been run during install... https://www.jaxbeachtech.com/index.php/node/196 <span>PhpMyAdmin error message when the script has not been run during install...</span> <span><span lang="" about="/index.php/users/donmc" typeof="schema:Person" property="schema:name" datatype="">donmc</span></span> <span>Mon, 11/03/2014 - 17:35</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/5" hreflang="en">Open Source</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/1" hreflang="en">Technology</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>I see this fairly often when I have done fast installs of ubuntu:<br /><b>"Connection for controluser as defined in your configuration failed."</b></p> <p>What happens is I ignore the install script that needs to run for PhpMyAdmin to establish its database etc.<br /> Happily the fix is fairly easy - just run the script again now:<br /><code>sudo dpkg-reconfigure phpmyadmin</code></p> </div> Mon, 03 Nov 2014 22:35:48 +0000 donmc 196 at https://www.jaxbeachtech.com Recent Drupal tricks and tips... https://www.jaxbeachtech.com/index.php/node/187 <span>Recent Drupal tricks and tips...</span> <span><span lang="" about="/index.php/users/donmc" typeof="schema:Person" property="schema:name" datatype="">donmc</span></span> <span>Sat, 12/28/2013 - 14:16</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item">Found lots of bocked (SPAM) users in my Drupal 7 site. Deleted with this SQL script (in PHPMYADMIN)<br /><code>DELETE FROM users WHERE `status` = 0 AND `uid` != 0;</code> Also had 49,000+ failed admin login attempts on my site - had caused a lockout of my admin user.<br /> Did this in phpmyadmin <sql>: <code>DELETE FROM flood;</code> <br /> Also these bash script commands to set the permissions for a standard Drupal site: <code>cd /path_to_drupal_installation sudo chown -R greg:www-data . find . -type d -exec chmod u=rwx,g=rx,o= '{}' \; find . -type f -exec chmod u=rw,g=r,o= '{}' \; and... cd /path_to_drupal_installation/sites find . -type d -name files -exec chmod ug=rwx,o= '{}' \; for d in ./*/files do find $d -type d -exec chmod ug=rwx,o= '{}' \; find $d -type f -exec chmod ug=rw,o= '{}' \; done</code></sql></div> Sat, 28 Dec 2013 19:16:52 +0000 donmc 187 at https://www.jaxbeachtech.com Allow webmin traffic through the default firewall [iptables] settings in Proxmox Containers https://www.jaxbeachtech.com/index.php/node/183 <span>Allow webmin traffic through the default firewall [iptables] settings in Proxmox Containers</span> <span><span lang="" about="/index.php/users/admin" typeof="schema:Person" property="schema:name" datatype="">admin</span></span> <span>Tue, 04/23/2013 - 13:08</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>Just a liitle trick I needed to do to get my webmin access enabled in the vhost on Proxmox:</p> <blockquote><p> iptables -I INPUT 1 -p tcp --dport 10000 -j ACCEPT </p></blockquote> </div> Tue, 23 Apr 2013 17:08:25 +0000 admin 183 at https://www.jaxbeachtech.com Proxmox Vhost IP Address Configuration https://www.jaxbeachtech.com/index.php/node/182 <span>Proxmox Vhost IP Address Configuration</span> <span><span lang="" about="/index.php/users/admin" typeof="schema:Person" property="schema:name" datatype="">admin</span></span> <span>Tue, 04/23/2013 - 13:04</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/5" hreflang="en">Open Source</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>Some key cmds that I had to use to get the networking operational on the proxmox server:</p> <p><code><br /> root@proxmax:/etc/network# vzctl set 103 --ipadd 192.168.3.88 --save<br /></code><br /> This will poke a new IP address into the config for the container.<br /> The "<b>/etc/network/interfaces</b>" files that results will look like this:</p> <blockquote><p> root@XXX4 /etc/network# less interfaces<br /> # This configuration file is auto-generated.<br /> #<br /> # WARNING: Do not edit this file, your changes will be lost.<br /> # Please create/edit /etc/network/interfaces.head and<br /> # /etc/network/interfaces.tail instead, their contents will be<br /> # inserted at the beginning and at the end of this file, respectively.<br /> #<br /> # NOTE: it is NOT guaranteed that the contents of /etc/network/interfaces.tail<br /> # will be at the very end of this file.<br /> #</p> <p># Auto generated lo interface<br /> auto lo<br /> iface lo inet loopback</p> <p># Auto generated venet0 interface<br /> auto venet0<br /> iface venet0 inet manual<br /> up ifconfig venet0 up<br /> up ifconfig venet0 127.0.0.2<br /> up route add default dev venet0<br /> down route del default dev venet0<br /> down ifconfig venet0 down</p> <p>iface venet0 inet6 manual<br /> up route -A inet6 add default dev venet0<br /> down route -A inet6 del default dev venet0</p> <p>auto venet0:0<br /> iface venet0:0 inet static<br /> address 192.168.3.88<br /> netmask 255.255.255.255 </p></blockquote> <h3>And from the Proxmox Controller:</h3> <blockquote><p> root@proxmax:/etc/network# vzlist<br /> CTID NPROC STATUS IP_ADDR HOSTNAME<br /> 100 18 running - XXX3.msjlaw.us<br /> 101 19 running - XXX4.msjlaw.us<br /> root@proxmax:/etc/network#<br /> root@proxmax:/etc/network# vzctl set 101 --ipadd 192.168.3.88 --save<br /> Adding IP address(es): 192.168.3.88<br /> CT configuration saved to /etc/pve/openvz/101.conf</p> <p>root@proxmax:/etc/network# vzlist<br /> CTID NPROC STATUS IP_ADDR HOSTNAME<br /> 100 18 running - XXX3.msjlaw.us<br /> 101 18 running 192.168.3.88 XXX4.msjlaw.us<br /> root@proxmax:/etc/network#<br /> root@proxmax:/etc/network# ping 192.168.3.88<br /> PING 192.168.3.88 (192.168.3.88) 56(84) bytes of data.<br /> 64 bytes from 192.168.3.88: icmp_req=1 ttl=64 time=0.047 ms<br /> 64 bytes from 192.168.3.88: icmp_req=2 ttl=64 time=0.015 ms<br /> 64 bytes from 192.168.3.88: icmp_req=3 ttl=64 time=0.014 ms<br /> 64 bytes from 192.168.3.88: icmp_req=4 ttl=64 time=0.022 ms<br /> 64 bytes from 192.168.3.88: icmp_req=5 ttl=64 time=0.027 ms<br /> ^C </p></blockquote> </div> Tue, 23 Apr 2013 17:04:42 +0000 admin 182 at https://www.jaxbeachtech.com Remote reboot while logged in via RDP https://www.jaxbeachtech.com/index.php/node/180 <span>Remote reboot while logged in via RDP</span> <span><span lang="" about="/index.php/users/donmc" typeof="schema:Person" property="schema:name" datatype="">donmc</span></span> <span>Tue, 01/22/2013 - 21:11</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>At a CMD prompt run:<br /> shutdown -t 0 -r -f</p> </div> Wed, 23 Jan 2013 02:11:26 +0000 donmc 180 at https://www.jaxbeachtech.com bash history date/time stamps https://www.jaxbeachtech.com/index.php/node/179 <span>bash history date/time stamps</span> <span><span lang="" about="/index.php/users/admin" typeof="schema:Person" property="schema:name" datatype="">admin</span></span> <span>Tue, 01/08/2013 - 14:32</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/1" hreflang="en">Technology</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>By default, the bash history does not keep tabs on the time of day that a given command was run. But it is really as simple as defining ONE environment variable: "HISTTIMEFORMAT"</p> <p>This from "<a href="http://linux.byexamples.com/archives/467/list-command-line-history-with-timestamp/">Linux by Example</a>": HISTTIMEFORMAT takes format string of strftime. Check out the strftime manual to choose and construct the timestamp that suit your taste. My favorite is "%F %T ".</p> <p><code>export HISTTIMEFORMAT="%F %T "</code></p> </div> Tue, 08 Jan 2013 19:32:51 +0000 admin 179 at https://www.jaxbeachtech.com Extract IP Addresses from a text file... https://www.jaxbeachtech.com/index.php/node/178 <span>Extract IP Addresses from a text file...</span> <span><span lang="" about="/index.php/users/admin" typeof="schema:Person" property="schema:name" datatype="">admin</span></span> <span>Wed, 12/19/2012 - 16:31</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/1" hreflang="en">Technology</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>This is a cool little grep search to pull any IPs from a text file:<br /> grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' file_with_ips_in_it.txt | sort | uniq</p> </div> Wed, 19 Dec 2012 21:31:29 +0000 admin 178 at https://www.jaxbeachtech.com Upgraded jaxbeachtech.com to Drupal 7 https://www.jaxbeachtech.com/index.php/node/175 <span>Upgraded jaxbeachtech.com to Drupal 7</span> <span><span lang="" about="/index.php/users/admin" typeof="schema:Person" property="schema:name" datatype="">admin</span></span> <span>Sat, 10/27/2012 - 19:06</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/5" hreflang="en">Open Source</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>I finally bit the bullet and upgraded the site to Drupal V7 - it was pretty straight forward, a few glitches here and there, but overall, pretty smooth. It was worth waiting a few years for the code to be nicely cleaned up :)</p> <p>A BIG Thank You to all those clever people that contributed to the Drupal 7 experience - there is no doubt about it - it is a fantastic product.</p> </div> Sat, 27 Oct 2012 23:06:19 +0000 admin 175 at https://www.jaxbeachtech.com Drupal's magical "DRUSH" CLI https://www.jaxbeachtech.com/index.php/content/drupals-magical-drush-cli <span>Drupal&#039;s magical &quot;DRUSH&quot; CLI</span> <span><span lang="" about="/index.php/users/donmc" typeof="schema:Person" property="schema:name" datatype="">donmc</span></span> <span>Sat, 04/28/2012 - 16:45</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/1" hreflang="en">Technology</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/5" hreflang="en">Open Source</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>I have just spent a few hours getting familiar with this cool tool. Drush allows most housekeeping for Drupal sites to be done from a command line - it's a wonderful thing. Just take a look at how much I got done executing this single command:</p> <pre>sudo drush @veo up</pre><h2>And here's what it did for me:</h2> <pre> donmc@jbt:/var/www/VEOffice$ sudo drush @veo up Update information last refreshed: Sat, 04/28/2012 - 16:25 Update status information on all installed and enabled Drupal projects: Name Installed version Proposed Status version AddThis (addthis) 7.x-2.1-beta1 7.x-2.1-beta1 Up to date Apps (apps) 7.x-1.0-beta5 7.x-1.0-beta6 Update available Backup and Migrate (backup_migrate) 7.x-2.2 7.x-2.2 Up to date Backup and Migrate Files (backup_migrate_files) 7.x-1.x-dev 7.x-1.x-dev Up to date Drupal 7.12 7.12 Up to date Boxes (boxes) 7.x-1.0-beta6 7.x-1.0-beta8 Update available CAPTCHA (captcha) 7.x-1.0-alpha3 7.x-1.0-beta2 Update available Colorbox (colorbox) 7.x-1.2 7.x-1.3 Update available OpenPublic (openpublic) 7.x-1.0-beta8 7.x-1.0-beta8 Up to date Comment notify (comment_notify) 7.x-1.0 7.x-1.0 Up to date Conditional Stylesheets (conditional_styles) 7.x-2.0 7.x-2.1 Update available Context (context) 7.x-3.0-beta2 7.x-3.0-beta2 Up to date Context Bool Field (context_bool_field) 7.x-1.0-beta1 7.x-1.0-beta1 Up to date Context Breadcrumb Current Page 7.x-1.0-beta2 7.x-1.0-beta2 Up to date (context_breadcrumb_current_page) Context Field (context_field) 7.x-1.0-beta2+10-dev 7.x-1.0-beta3 Update available Chaos tools (ctools) 7.x-1.0-rc1 7.x-1.0 SECURITY UPDATE available Date (date) 7.x-2.0-alpha4 7.x-2.5 Update available Default Content (defaultcontent) 7.x-1.0-alpha4 7.x-1.0-alpha6 Update available Delta API (delta) 7.x-3.0-beta8 7.x-3.0-beta9 Update available Diff (diff) 7.x-2.0 7.x-2.0 Up to date Entity API (entity) 7.x-1.0-beta10 7.x-1.0-rc2 Update available Entity Autocomplete (entity_autocomplete) 7.x-1.0-beta1 7.x-1.0-beta1 Up to date Entity cache (entitycache) 7.x-1.1 7.x-1.1 Up to date Features (features) 7.x-1.0-beta4 7.x-1.0-rc2 Update available Fieldgroup (field_group) 7.x-1.1 7.x-1.1 Up to date Follow (follow) 7.x-1.0-alpha1+0-dev 7.x-1.0-alpha1 Up to date google_analytics 7.x-1.2 7.x-1.2 Up to date IMCE (imce) 7.x-1.5 7.x-1.5 Up to date IMCE Wysiwyg API bridge (imce_wysiwyg) 7.x-1.0 7.x-1.0 Up to date Link (link) 7.x-1.0-beta1 7.x-1.0 Update available References (references) 7.x-2.0-beta3 7.x-2.0 Update available Node Reference View Formatter 7.x-1.0-beta2 7.x-1.0-beta3 Update available (node_reference_view_formatter) Nodeblock (nodeblock) 7.x-1.2 7.x-1.2 Up to date Node Connect (nodeconnect) 7.x-1.0-alpha1 7.x-1.0-alpha2 Update available Nodequeue (nodequeue) 7.x-2.0-alpha1 7.x-2.0-beta1 Update available Panels (panels) 7.x-3.0 7.x-3.2 Update available Password policy (password_policy) 7.x-1.0-rc1 7.x-1.0-rc2 Update available Pathauto (pathauto) 7.x-1.0-rc2 7.x-1.0 Update available reCAPTCHA (recaptcha) 7.x-1.7 7.x-1.7 Up to date Secure Pages (securepages) 7.x-1.x-dev Installed version not supported Strongarm (strongarm) 7.x-2.0-beta4 7.x-2.0-rc1 Update available Token (token) 7.x-1.0-beta6 7.x-1.0 Update available Twitter Pull (twitter_pull) 7.x-1.0-rc1 7.x-1.0-rc1 Up to date Views (views) 7.x-3.0-rc1 7.x-3.3 SECURITY UPDATE available Views Boxes (views_boxes) 7.x-1.0-beta6 7.x-1.0-beta8 Update available Webform (webform) 7.x-3.13 7.x-3.17 SECURITY UPDATE available Wysiwyg (wysiwyg) 7.x-2.1 7.x-2.1 Up to date XML sitemap (xmlsitemap) 7.x-2.0-beta3 7.x-2.0-rc1 Update available Omega (omega) 7.x-3.0 7.x-3.1 Update available Rubik (rubik) 7.x-4.0-beta8 7.x-4.0-beta8 Up to date Tao (tao) 7.x-3.0-beta4 7.x-3.0-beta4 Up to date Security and code updates will be made to the following projects: Apps [apps-7.x-1.0-beta6], Boxes [boxes-7.x-1.0-beta8], CAPTCHA [captcha-7.x-1.0-beta2], Colorbox [colorbox-7.x-1.3], Conditional Stylesheets [conditional_styles-7.x-2.1], Context Field [context_field-7.x-1.0-beta3], Chaos tool suite (ctools) [ctools-7.x-1.0], Date [date-7.x-2.5], Default Content [defaultcontent-7.x-1.0-alpha6], Delta [delta-7.x-3.0-beta9], Entity API [entity-7.x-1.0-rc2], Features [features-7.x-1.0-rc2], Link [link-7.x-1.0], References [references-7.x-2.0], Node Reference View Formatter [node_reference_view_formatter-7.x-1.0-beta3], Node Connect [nodeconnect-7.x-1.0-alpha2], Nodequeue [nodequeue-7.x-2.0-beta1], Panels [panels-7.x-3.2], Password policy [password_policy-7.x-1.0-rc2], Pathauto [pathauto-7.x-1.0], Secure Pages [securepages-7.x-1.x-dev], Strongarm [strongarm-7.x-2.0-rc1], Token [token-7.x-1.0], Views [views-7.x-3.3], Views Boxes [views_boxes-7.x-1.0-beta8], Webform [webform-7.x-3.17], XML sitemap [xmlsitemap-7.x-2.0-rc1], Omega - Responsive HTML5 Base Theme [omega-7.x-3.1] Note: A backup of your project will be stored to backups directory if it is not managed by a supported version control system. Note: If you have made any modifications to any file that belongs to one of these projects, you will have to migrate those modifications after updating. Do you really want to continue with the update process? (y/n): y Project apps was updated successfully. Installed version is now 7.x-1.0-beta6. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/apps. [ok] Project boxes was updated successfully. Installed version is now 7.x-1.0-beta8. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/boxes. [ok] Project captcha was updated successfully. Installed version is now 7.x-1.0-beta2. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/captcha. [ok] Project colorbox was updated successfully. Installed version is now 7.x-1.3. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/colorbox. [ok] Project conditional_styles was updated successfully. Installed version is now 7.x-2.1. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/conditional_styles. [ok] Project context_field was updated successfully. Installed version is now 7.x-1.0-beta3. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/context_field. [ok] Project ctools was updated successfully. Installed version is now 7.x-1.0. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/ctools. [ok] Project date was updated successfully. Installed version is now 7.x-2.5. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/date. [ok] Project defaultcontent was updated successfully. Installed version is now 7.x-1.0-alpha6. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/defaultcontent. [ok] Project delta was updated successfully. Installed version is now 7.x-3.0-beta9. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/delta. [ok] Project entity was updated successfully. Installed version is now 7.x-1.0-rc2. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/entity. [ok] Project features was updated successfully. Installed version is now 7.x-1.0-rc2. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/features. [ok] Project link was updated successfully. Installed version is now 7.x-1.0. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/link. [ok] Project references was updated successfully. Installed version is now 7.x-2.0. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/references. [ok] Project node_reference_view_formatter was updated successfully. Installed version is now 7.x-1.0-beta3. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/node_reference_view_formatter. [ok] Project nodeconnect was updated successfully. Installed version is now 7.x-1.0-alpha2. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/nodeconnect. [ok] Project nodequeue was updated successfully. Installed version is now 7.x-2.0-beta1. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/nodequeue. [ok] Project panels was updated successfully. Installed version is now 7.x-3.2. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/panels. [ok] Project password_policy was updated successfully. Installed version is now 7.x-1.0-rc2. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/password_policy. [ok] Project pathauto was updated successfully. Installed version is now 7.x-1.0. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/pathauto. [ok] Project securepages was updated successfully. Installed version is now 7.x-1.x-dev. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/securepages. [ok] Project strongarm was updated successfully. Installed version is now 7.x-2.0-rc1. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/strongarm. [ok] Project token was updated successfully. Installed version is now 7.x-1.0. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/token. [ok] Project views was updated successfully. Installed version is now 7.x-3.3. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/views. [ok] Project views_boxes was updated successfully. Installed version is now 7.x-1.0-beta8. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/views_boxes. [ok] Project webform was updated successfully. Installed version is now 7.x-3.17. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/webform. [ok] Project xmlsitemap was updated successfully. Installed version is now 7.x-2.0-rc1. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/modules/xmlsitemap. [ok] Project omega was updated successfully. Installed version is now 7.x-3.1. Backups were saved into the directory /home/donmc/drush-backups/VEOffice/20120428202647/themes/omega. [ok] donmc@jbt:/var/www/VEOffice$ sudo drush @veo updatedb No database updates required [success] Finished performing updates. [ok] donmc@jbt:/var/www/VEOffice$ sudo drush @veo up Update information last refreshed: Sat, 04/28/2012 - 16:27 Update status information on all installed and enabled Drupal projects: Name Installed version Proposed Status version AddThis (addthis) 7.x-2.1-beta1 7.x-2.1-beta1 Up to date Apps (apps) 7.x-1.0-beta6 7.x-1.0-beta6 Up to date Backup and Migrate (backup_migrate) 7.x-2.2 7.x-2.2 Up to date Backup and Migrate Files (backup_migrate_files) 7.x-1.x-dev 7.x-1.x-dev Up to date Drupal 7.12 7.12 Up to date Boxes (boxes) 7.x-1.0-beta8 7.x-1.0-beta8 Up to date CAPTCHA (captcha) 7.x-1.0-beta2 7.x-1.0-beta2 Up to date Colorbox (colorbox) 7.x-1.3 7.x-1.3 Up to date OpenPublic (openpublic) 7.x-1.0-beta8 7.x-1.0-beta8 Up to date Comment notify (comment_notify) 7.x-1.0 7.x-1.0 Up to date Conditional Stylesheets (conditional_styles) 7.x-2.1 7.x-2.1 Up to date Context (context) 7.x-3.0-beta2 7.x-3.0-beta2 Up to date Context Bool Field (context_bool_field) 7.x-1.0-beta1 7.x-1.0-beta1 Up to date Context Breadcrumb Current Page 7.x-1.0-beta2 7.x-1.0-beta2 Up to date (context_breadcrumb_current_page) Context Field (context_field) 7.x-1.0-beta3 7.x-1.0-beta3 Up to date Chaos tools (ctools) 7.x-1.0 7.x-1.0 Up to date Date (date) 7.x-2.5 7.x-2.5 Up to date Default Content (defaultcontent) 7.x-1.0-alpha6 7.x-1.0-alpha6 Up to date Delta API (delta) 7.x-3.0-beta9 7.x-3.0-beta9 Up to date Diff (diff) 7.x-2.0 7.x-2.0 Up to date Entity API (entity) 7.x-1.0-rc2 7.x-1.0-rc2 Up to date Entity Autocomplete (entity_autocomplete) 7.x-1.0-beta1 7.x-1.0-beta1 Up to date Entity cache (entitycache) 7.x-1.1 7.x-1.1 Up to date Features (features) 7.x-1.0-rc2 7.x-1.0-rc2 Up to date Fieldgroup (field_group) 7.x-1.1 7.x-1.1 Up to date Follow (follow) 7.x-1.0-alpha1+0- 7.x-1.0-alpha1 Up to date dev google_analytics 7.x-1.2 7.x-1.2 Up to date IMCE (imce) 7.x-1.5 7.x-1.5 Up to date IMCE Wysiwyg API bridge (imce_wysiwyg) 7.x-1.0 7.x-1.0 Up to date Link (link) 7.x-1.0 7.x-1.0 Up to date References (references) 7.x-2.0 7.x-2.0 Up to date Node Reference View Formatter 7.x-1.0-beta3 7.x-1.0-beta3 Up to date (node_reference_view_formatter) Nodeblock (nodeblock) 7.x-1.2 7.x-1.2 Up to date Node Connect (nodeconnect) 7.x-1.0-alpha2 7.x-1.0-alpha2 Up to date Nodequeue (nodequeue) 7.x-2.0-beta1 7.x-2.0-beta1 Up to date Panels (panels) 7.x-3.2 7.x-3.2 Up to date Password policy (password_policy) 7.x-1.0-rc2 7.x-1.0-rc2 Up to date Pathauto (pathauto) 7.x-1.0 7.x-1.0 Up to date reCAPTCHA (recaptcha) 7.x-1.7 7.x-1.7 Up to date Secure Pages (securepages) 7.x-1.x-dev 7.x-1.x-dev Up to date Strongarm (strongarm) 7.x-2.0-rc1 7.x-2.0-rc1 Up to date Token (token) 7.x-1.0 7.x-1.0 Up to date Twitter Pull (twitter_pull) 7.x-1.0-rc1 7.x-1.0-rc1 Up to date Views (views) 7.x-3.3 7.x-3.3 Up to date Views Boxes (views_boxes) 7.x-1.0-beta8 7.x-1.0-beta8 Up to date Webform (webform) 7.x-3.17 7.x-3.17 Up to date Wysiwyg (wysiwyg) 7.x-2.1 7.x-2.1 Up to date XML sitemap (xmlsitemap) 7.x-2.0-rc1 7.x-2.0-rc1 Up to date Omega (omega) 7.x-3.1 7.x-3.1 Up to date Rubik (rubik) 7.x-4.0-beta8 7.x-4.0-beta8 Up to date Tao (tao) 7.x-3.0-beta4 7.x-3.0-beta4 Up to date No code updates available. </pre></div> Sat, 28 Apr 2012 20:45:48 +0000 donmc 166 at https://www.jaxbeachtech.com Apache2 CMD to check VHOST Settings... https://www.jaxbeachtech.com/index.php/content/apache2-cmd-check-vhost-settings <span>Apache2 CMD to check VHOST Settings...</span> <span><span lang="" about="/index.php/users/donmc" typeof="schema:Person" property="schema:name" datatype="">donmc</span></span> <span>Sun, 04/08/2012 - 13:24</span> <div class="field field--name-taxonomy-vocabulary-3 field--type-entity-reference field--label-above"> <div class="field__label">Topic</div> <div class="field__items"> <div class="field__item"><a href="/index.php/taxonomy/term/3" hreflang="en">Tips &amp; Clues</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/5" hreflang="en">Open Source</a></div> <div class="field__item"><a href="/index.php/taxonomy/term/6" hreflang="en">Non sequitur</a></div> </div> </div> <section data-drupal-selector="comments" class="comments"> </section> <div class="text-content clearfix field field--name-body field--type-text-with-summary field--label-hidden field__item"><p>Well - since Apache V2 the ONLY command to use is apparently "apache2ctrl" as follows:<br /> Note this command will parse the VHOST configs and dump them to StandardOut...</p> <pre>sudo /usr/sbin/apache2ctl -t -D DUMP_VHOSTS</pre></div> Sun, 08 Apr 2012 17:24:03 +0000 donmc 164 at https://www.jaxbeachtech.com