Changes between Version 4 and Version 5 of GenDolFAQs
- Timestamp:
- Jan 24, 2008, 10:15:14 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GenDolFAQs
v4 v5 1 1 == General Dolphin FAQ == 2 3 '''Q''': '''''How do I edit the web pages About Us, Contact Us, Privacy, Terms, FAQ?''''' 4 5 '''A''': The titles and the contents of these pages can be edited in the language file: 6 '''Admin Panel -> Settings -> Language Settings -> Search for strings -> Look for''' 7 here you should search for the corresponding language '''key''' and change its value: 8 * '''About Us:''' [[BR]] 9 '''_ABOUT_US_H''': ''About Us Page Title'' [[BR]] 10 '''_ABOUT_US_H1''': ''About Us Box Title'' [[BR]] 11 '''_ABOUT_US''': ''About Us Box Contents'' [[BR]] 12 13 * '''Contact Us:''' [[BR]] 14 '''_CONTACT_H''': ''Contact Us Page Title'' [[BR]] 15 '''_CONTACT_H1''': ''Contact Us Box Title'' [[BR]] 16 ''Note'': ''Contact Us Box Contents'' can be changed in the file ''contact.php'': 17 {{{ 18 function PageCompPageMainCodeWithForm() 19 }}} 20 21 * '''Privacy:''' [[BR]] 22 '''_PRIVACY_H''': ''Privacy Page Title'' [[BR]] 23 '''_PRIVACY_H1''': ''Privacy Box Title'' [[BR]] 24 '''_PRIVACY''': ''Privacy Box Contents'' [[BR]] 25 26 * '''Terms:''' [[BR]] 27 '''_TERMS_OF_USE_H''': ''Terms Page Title'' [[BR]] 28 '''_TERMS_OF_USE_H1''': ''Terms Box Title'' [[BR]] 29 '''_TERMS_OF_USE''': ''Terms Box Contents'' [[BR]] 30 31 * '''FAQ:''' [[BR]] 32 '''_FAQ_H''': ''FAQ Page Title'' [[BR]] 33 '''_FAQ_H1''': ''FAQ Box Title'' [[BR]] 34 '''_FAQ_INFO''': ''FAQ Box COntents'' [[BR]] 35 36 ---- 37 38 '''Q''': '''''How do I edit the Copyright © 2008 Your Company wording at the bottom?''''' 39 40 '''A''': This wording can also be edited in the language file: 41 '''Admin Panel -> Settings -> Language Settings -> Search for strings -> Look for''' 42 here you should search for the corresponding language '''key''' ''_copyright'' and change its value 43 2 44 3 45 '''Q''': '''''I need to transfer my site to another folder/server. What do I need to do?''''' … … 10 52 change the values of the following variables according to your current settings: 11 53 12 '' {{{$site['url']}}}'' and ''{{{$dir['root']}}}''54 '''{{{$site['url']}}}''' and '''{{{$dir['root']}}}''' 13 55 14 and all the elements of '' {{{$db}}}'' array (it's not usually needed if you just move your site to another folder on the same server)56 and all the elements of '''{{{$db}}}''' array (it's not usually needed if you just move your site to another folder on the same server) 15 57 16 * '' cmd.php'', ''notifies.php'', ''tags.php'' files in ''periodic'' folder. All of them have lines as follows:58 * '''cmd.php''', '''notifies.php''', '''tags.php''' files in '''periodic''' folder. All of them have lines as follows: 17 59 {{{ 18 60 require_once( '[path_to]/inc/header.inc.php' ); 19 61 }}} 20 62 21 where '' [path_to]'' must be changed according to the current path to Dolphin folder63 where '''[path_to]''' must be changed according to the current path to Dolphin folder 22 64 23 * '' ray/modules/global/inc/header.inc.php''65 * '''ray/modules/global/inc/header.inc.php''' 24 66 25 67 edit the line … … 29 71 the same way as described above 30 72 31 * '' ray/modules/global/js/integration.js''73 * '''ray/modules/global/js/integration.js''' 32 74 33 change the value of the variable '' sRayUrl'' according to your current URL.75 change the value of the variable '''sRayUrl''' according to your current URL. 34 76 35 77 ----