Difference between revisions of "Horde Webmail Troubleshooting"

From Hostek.com Wiki
Jump to: navigation, search
(Created page with "On a cPanel VPS, there is a Horde log file located in: '''''/var/cpanel/horde/log/horde_0.log''''' Most issues could be resolved the by doing the following: #run <pre>/usr/lo...")
 
 
Line 9: Line 9:
 
##Create the horde database: <pre>mysql < /usr/local/cpanel/base/horde/scripts/sql/create.mysql.sql</pre>
 
##Create the horde database: <pre>mysql < /usr/local/cpanel/base/horde/scripts/sql/create.mysql.sql</pre>
 
##Then run <pre>/scripts/resethorde</pre> and <pre>/scripts/fullhordereset</pre>
 
##Then run <pre>/scripts/resethorde</pre> and <pre>/scripts/fullhordereset</pre>
 +
 +
[[Category:Linux-VPS]]

Latest revision as of 16:02, 25 March 2013

On a cPanel VPS, there is a Horde log file located in: /var/cpanel/horde/log/horde_0.log

Most issues could be resolved the by doing the following:

  1. run
    /usr/local/cpanel/bin/update-horde --force
  2. If that doesn't fix the issue then try:
    /scripts/fullhordereset
  3. If you get database errors or the issue is still not resolved you could try fully re-creating the Horde database:
    1. Backup horde database
      mysqldump horde > horde.sql
    2. Drop the horde database
      mysql -Bse "drop database horde"
    3. Create the horde database:
      mysql < /usr/local/cpanel/base/horde/scripts/sql/create.mysql.sql
    4. Then run
      /scripts/resethorde
      and
      /scripts/fullhordereset