[geeklog-cvs] geeklog-1.3/docs history,1.109,1.110 install.html,1.13,1.14 knownbugs,1.5,1.6 support.html,1.8,1.9

geeklog-cvs-admin at lists.geeklog.net geeklog-cvs-admin at lists.geeklog.net
Sat Jul 5 09:08:28 EDT 2003


Update of /usr/cvs/geeklog/geeklog-1.3/docs
In directory internal.geeklog.net:/tmp/cvs-serv27435

Modified Files:
	history install.html knownbugs support.html 
Log Message:
Updated documentation


Index: history
===================================================================
RCS file: /usr/cvs/geeklog/geeklog-1.3/docs/history,v
retrieving revision 1.109
retrieving revision 1.110
diff -C2 -d -r1.109 -r1.110
*** history	3 Jul 2003 22:20:20 -0000	1.109
--- history	5 Jul 2003 13:08:26 -0000	1.110
***************
*** 1,4 ****
--- 1,9 ----
  GeekLog History/Changes:
  
+ - Upcoming events (in the block of the same name) are now sorted by start date
+   and start time, which makes more sense than the old start date, end date
+   sort order (reported by Peter Sieradzki).
+ - Fixed description of function DB_count() in lib-database.php (reported by
+   jose on IRC).
  - Changed the "getBent" block to test the real admin directory in case it has
    been renamed (bug #762881).
***************
*** 6,9 ****
--- 11,15 ----
    part of the user's preferences and would be set to "off" that way ...
    (reported by Dwight Trumbower).
+ - Check the topic permissions when doing a search on stories and comments.
  - Check the topic permissions when displaying the new stories and comments in
    the What's New block.
***************
*** 24,30 ****
  - Updated Japanese language file, provided by Yusuke Sakata.
  - Updated Italian language file, provided by quess65.
- - New Italian language file for the Static Pages plugin, provided by quess65.
  - New language file for formal German (addressing the user as "Sie" instead of
    "Du"), provided by Philip Sack.
  
  
--- 30,39 ----
  - Updated Japanese language file, provided by Yusuke Sakata.
  - Updated Italian language file, provided by quess65.
  - New language file for formal German (addressing the user as "Sie" instead of
    "Du"), provided by Philip Sack.
+ 
+ - New Japanese language file for the Static Pages plugin, provided by Yusuke
+   Sakata.
+ - New Italian language file for the Static Pages plugin, provided by quess65.
  
  

Index: install.html
===================================================================
RCS file: /usr/cvs/geeklog/geeklog-1.3/docs/install.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** install.html	27 Jun 2003 19:18:39 -0000	1.13
--- install.html	5 Jul 2003 13:08:26 -0000	1.14
***************
*** 188,192 ****
  			
  		</ol>
! <p>If you run into problems or keep getting error messages, please see the section on <a href="#installprob">common installation problems<a/> below.</p>
  	</td>
  </tr>
--- 188,192 ----
  			
  		</ol>
! <p>If you run into problems or keep getting error messages, please see the section on <a href="#installprob">common installation problems</a> below.</p>
  	</td>
  </tr>
***************
*** 288,291 ****
--- 288,356 ----
                  <br>
                  <br>
+ <div align="center">
+ <table width="95%" border="0" cellspacing="0" cellpadding="4"><tr><td>
+ <p>When you get an error message, please read it carefully. Even if you're not
+ familiar with PHP, it will give you a hint about what is wrong. Pay special
+ attention at the paths contained in the error message. Wrong paths are the
+ most common cause for problems.</p>
+ <p>If you get more than one error message, always start with the very first
+ error - the others will often go away automatically once you've fixed the first
+ one.</p>
+ </td></tr></table>
+ </div>
+                 <br>
+                 <br>
+ <div align="center">
+ <table width="95%" border="0" cellspacing="0" cellpadding="4"><tr>
+ <td bgcolor="#ffedf2">
+ <p><b>I get the following error:</b></p>
+ <p><code>Parse error: parse error in /path/to/your/config.php on line 76</code></p>
+ </td></tr><tr><td>
+ <p><small>(line number may vary)</small></p>
+ <p><strong>Answer:</strong></p>
+ <p>A parse error usually hints at a typo you've made. Check the file at the
+ given line (the actual error may be in the line preceding the one mentioned
+ in the error message).</p>
+ <p>Common problems are:</p>
+ <ul>
+ <li>not enclosing paths in single quotes properly</li>
+ <li>missing semicolon at the end of the line</li>
+ <li>using single quotes within a string (you need to write <b>Joe's Site</b> as
+     <b>Joe\'s Site</b>, escaping the extra quote)
+ </ul>
+ </td></tr></table>
+ </div>
+                 <br>
+                 <br>
+ <div align="center">
+ <table width="95%" border="0" cellspacing="0" cellpadding="4"><tr>
+ <td bgcolor="#ffedf2">
+ <p><b>I get the following error:</b></p>
+ <p><code>Warning: main(some/path/to/system/databases/mysql.class.php): failed to open stream: No such file or directory in /path/to/your/system/lib-database.php on line 110</code></p>
+ </td></tr><tr><td>
+ <p><small>(line number may vary)</small></p>
+ <p><strong>Answer:</strong></p>
+ <p>The path that you've entered for the <b>$_CONF['path']</b> variable in config.php is not correct. Make sure you typed it correctly. Also make sure it uses
+ an <em>absolute</em> path, i.e. one that starts at the root of your file
+ system (and that it starts with a / under Unix/Linux or a drive letter under
+ Windows).</p>
+ </td></tr></table>
+ </div>
+                 <br>
+                 <br>
+ <div align="center">
+ <table width="95%" border="0" cellspacing="0" cellpadding="4"><tr>
+ <td bgcolor="#ffedf2">
+ <p><b>I get the following error:</b></p>
+ <p><code>1050: Table 'gl_access' already exists</code></p>
+ </td></tr><tr><td>
+ <p><strong>Answer:</strong></p>
+ <p>You must have run the install script before (possibly unsuccessfully). To
+ be on the save side, drop the database and create a  new, empty database
+ before trying to run the install script again.</p>
+ </td></tr></table>
+ </div>
+                 <br>
+                 <br>
  		<div align="center">
  			<table width="95%" border="0" cellspacing="0" cellpadding="4">
***************
*** 308,311 ****
--- 373,391 ----
  			<br>
  		</div>
+                 <br>
+                 <br>
+ <div align="center">
+ <table width="95%" border="0" cellspacing="0" cellpadding="4"><tr>
+ <td bgcolor="#ffedf2">
+ <p><b>I get the following error:</b></p>
+ <p><code>Template Error: set_root: /some/path/to/public_html/layout/XSilver is not a directory.
+ Halted.</code></p>
+ </td></tr><tr><td>
+ <p><strong>Answer:</strong></p>
+ <p>This is a path problem again. Check the setting for <b>$_CONF['path_html']</b>. If you did not change or rename Geeklog's <tt>public_html</tt> directory, then there's no need to change that setting at all (restore the line to its
+ original content). Otherwise, please read the comments above that line in
+ config.php again carefully to understand how to change that line properly.</p>
+ </td></tr></table>
+ </div>
  	</td>
  </tr>

Index: knownbugs
===================================================================
RCS file: /usr/cvs/geeklog/geeklog-1.3/docs/knownbugs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** knownbugs	11 Aug 2002 18:56:35 -0000	1.5
--- knownbugs	5 Jul 2003 13:08:26 -0000	1.6
***************
*** 5,7 ****
  
  For other bugs and known issues, please consult the Geeklog bug tracking system
! at http://sourceforge.net/tracker/?group_id=7371&atid=107371
--- 5,7 ----
  
  For other bugs and known issues, please consult the Geeklog bug tracking system
! at http://project.geeklog.net/tracker/?group_id=6&atid=105

Index: support.html
===================================================================
RCS file: /usr/cvs/geeklog/geeklog-1.3/docs/support.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** support.html	27 Jun 2003 10:45:53 -0000	1.8
--- support.html	5 Jul 2003 13:08:26 -0000	1.9
***************
*** 21,26 ****
    <li><a href="http://www.geeklog.net/">Webpage</a>
      - The Geeklog website is the best place for the latest news and updates</li>
!   <li><a href="http://sourceforge.net/bugs/?func=addbug&group_id=7371">Bug reports</a>
!     - Submit bug reports at SourceForge. Please remember to search the bugs so you don't post a duplicate.</li>
    <li><a href="http://lists.geeklog.net/listinfo/">Mailing lists</a>
      - Join the <b>geeklog-users</b> mailing list, and join in the discussion.
--- 21,26 ----
    <li><a href="http://www.geeklog.net/">Webpage</a>
      - The Geeklog website is the best place for the latest news and updates</li>
!   <li><a href="http://project.geeklog.net/tracker/?group_id=6&atid=105">Bug reports</a>
!     - Submit bug reports on our project site. Please remember to search the bugs so you don't post a duplicate.</li>
    <li><a href="http://lists.geeklog.net/listinfo/">Mailing lists</a>
      - Join the <b>geeklog-users</b> mailing list, and join in the discussion.
***************
*** 29,34 ****
      - Meet the developers and other Geeklog users on IRC (server: 
        irc.freenode.net, channel #geeklog)
!   <li><a href="http://sourceforge.net/patch/?group_id=7371">Patches</a>
!     - Please submit patches at SourceForge. </li>
    <li>General Help - A better place for general "I can't do it!" help is the <a 
      href="http://lists.geeklog.net/listinfo/geeklog-users">mailing list</a>. Stuff 
--- 29,34 ----
      - Meet the developers and other Geeklog users on IRC (server: 
        irc.freenode.net, channel #geeklog)
!   <li><a href="http://project.geeklog.net/tracker/?group_id&atid=107">Patches</a>
!     - Please submit patches on the project site. </li>
    <li>General Help - A better place for general "I can't do it!" help is the <a 
      href="http://lists.geeklog.net/listinfo/geeklog-users">mailing list</a>. Stuff 
***************
*** 37,52 ****
    <li><a href="http://www.geeklog.net/submit.php?type=link">Link submissions</a>
      - Use "<a href="http://www.geeklog.net/submit.php?type=link">Add A Link</a>" to tell us about your new site running GeekLog.</li>
!   <li><a href="http://www.geeklog.net/submit.php?type=story">Story submissions</a>
!     - Use the "<a href="http://www.geeklog.net/submit.php">Get published</a>" link to tell us your ideas for the GeekLog site 
!       and questions. <b>DO NOT</b> use this for bug reports. Use SourceForge for 
!       bug reports. Also try not to use it for general "I can't do this!" help; 
!       you'll get a much better response for those on the <a 
!       href="http://lists.geeklog.net/listinfo/geeklog-users">mailing list</a>.</li>
!   <li><a href="http://sourceforge.net/bugs/?func=addbug&group_id=7371">Feature requests</a>
      - Where to send feature requests depends a bit on what the request is. In 
        general, the mailing list is a decent place, and if it is something 
!       significant, you may want to send it in as a story submission. You may 
!       also want to go over to SourceForge and submit it as a bug report (make 
!       sure you select "Feature Request" for the "Group"), so we can have it 
        filed and we can track it easily.</li>
    <li><strong>Security issues:</strong> Should you need to report any security
--- 37,51 ----
    <li><a href="http://www.geeklog.net/submit.php?type=link">Link submissions</a>
      - Use "<a href="http://www.geeklog.net/submit.php?type=link">Add A Link</a>" to tell us about your new site running GeekLog.</li>
!   <li><a href="http://www.geeklog.net/forum/">Story submissions</a>
!     - Use the <a href="http://www.geeklog.net/forum/">Forum</a> to tell us your
!       ideas for the GeekLog site and questions.<br>
!       <strong>DO NOT</strong> use this for bug reports. Use <a
!       href="http://project.geeklog.net/">our project site</a> for bug
!       reports.</li>
!   <li><a href="http://project.geeklog.net/tracker/?group_id=6&atid=108">Feature requests</a>
      - Where to send feature requests depends a bit on what the request is. In 
        general, the mailing list is a decent place, and if it is something 
!       significant, you may want to post it in the <a href="http://www.geeklog.net/forum/">Forum</a> or send it in as a <a href="http://www.geeklog.net/submit.php">story submission</a>. You may 
!       also want to go over to our <a href="http://project.geeklog.net/">project site</a> and submit it as a <a href="http://project.geeklog.net/tracker/?group_id=6&atid=108">Feature Request</a>, so we can have it 
        filed and we can track it easily.</li>
    <li><strong>Security issues:</strong> Should you need to report any security
***************
*** 54,62 ****
  </ul>
  
! <p><strong>Please note:</strong> The above links for bug reports and feature
! requests point to the bug and feature trackers on Sourceforge. The Geeklog
! project is in the process of moving away from Sourceforge, so these links may
! not be valid any more by the time you read this. In that case, please search
! the <a href="http://www.geeklog.net/">Geeklog site</a> for updated information.
  
  
--- 53,61 ----
  </ul>
  
! <p><strong>Please note:</strong> We've recently changed over from SourceForge
! to our own project website and some of the bug reports and feature requests
! have not been carried over yet. Please submit new bug reports and feature
! requests <em>only</em> on the <a href="http://project.geeklog.net/">Geeklog
! Project Website</a>. Thank you.</p>
  
  
***************
*** 69,80 ****
  
  <p>Geeklog also has a built-in feature to check for updates. Simply click on
! the <strong>GL Version Test</strong> (last entry in your Admin menu) to see if
! your install is up to date.</p>
  
  
  <h2>International Support</h2>
  
! <p><img src="images/germany.gif" width="16" height="12" align="middle" alt=""> <a 
! href="http://geeklog.info/">geeklog.info</a> - Geeklog-Support in 
  Deutsch</p>
  
--- 68,79 ----
  
  <p>Geeklog also has a built-in feature to check for updates. Simply click on
! the <strong>GL Version Test</strong> link (last entry in your Admin menu) to
! see if your install is up to date.</p>
  
  
  <h2>International Support</h2>
  
! <p><img src="images/germany.gif" width="16" height="12" align="middle"
! alt=""> <a href="http://geeklog.info/">geeklog.info</a> - Geeklog-Support in 
  Deutsch</p>
  





More information about the geeklog-cvs mailing list