Changes between Version 15 and Version 16 of GenDolFAQs
- Timestamp:
- Mar 6, 2008, 6:44:48 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GenDolFAQs
v15 v16 16 16 17 17 [http://www.boonex.com/trac/dolphin/wiki/GenDolFAQs#Mysecurityimagedoesntshowup.Sonoonecanjoinmysite. My security image doesn't show up. So no one can join my site.] 18 19 [http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#Igetthiserrormessagethroughoutmysite:Fatalerror:Calltoundefinedfunction:mb_internal_encoding I get this error message throughout my site: Fatal error: Call to undefined function: mb_internal_encoding] 18 20 19 21 == '''''How do I edit the web pages About Us, Contact Us, Privacy, Terms, FAQ?''''' == … … 94 96 ---- 95 97 96 == '''''How can I replace Free package with Ad-Free package (and vice versa) without losing my customization?''''' ==97 98 The only difference between Free and Ad-Free packages are Ray widgets. So you can just replace the Free widgets with the Ad-Free ones.98 == '''''How can I replace Free Dolphin package with Ad-Free one (and vice versa) without losing my customization?''''' == 99 100 The only difference between Free and Ad-Free Dolphin packages are Ray widgets. So you can just replace the Free widgets with the Ad-Free ones. 99 101 100 102 You can do it this way: 101 103 102 1) replace the '''ray''' folder in the Free package you currently have with that from the Ad-Free package104 1) replace the '''ray''' folder in the Free Dolphin package you currently have with that from the Ad-Free package 103 105 104 106 2) set the following permissions: … … 252 254 253 255 If all this doesn't help, you can just disable security image in '''Settings -> Advanced Settings -> Enable security image on join page'''. 256 257 == '''''I get this error message throughout my site: Fatal error: Call to undefined function: mb_internal_encoding''''' == 258 259 The default PHP installation does not always have the mb_string extension enabled, but the program requires that you run the PHP multibyte-string extension which is not enabled by default. In brief, in order to do this you will need to (in Windows): 260 * uncomment out the line 261 {{{ 262 extension=php_mbstring.dll 263 }}} 264 in the '''php.ini''' file 265 * ensure that the path to this file is set correctly, again in php.ini, for example: 266 {{{ 267 extension_dir = "./ext" 268 }}} 269 * Note that you can ensure that this file is correctly loaded by setting in php.ini: 270 {{{ 271 display_errors = on 272 }}} 273 * Restart your webserver, e.g. restart Apache 274 * You can check via phpinfo() that '''mbstring''' appears within the information page 275 * Here's how to do it in UNIX-based systems: http://php.net/mb_string