'''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#IcantremembermyAdminloginandorpassword.HowcanIrestoreorchangeit I can't remember my Admin login and/or password. How can I restore or change it?]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#Iseethiserroronsomeofmysitespages:Calltoundefinedfunction:mb_ereg_replaceinpath_to_dolphinincutils.inc.phponline120 I see this error on some of my site's pages: "Call to undefined function: mb_ereg_replace() in /path_to_dolphin/inc/utils.inc.php on line 120"]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#WhenItrytoopenaNavigationMenulinkorsomebodysprofileIgetthispage:NotFound When I try to open a Navigation Menu link or somebody's profile, I get this page: "Not Found"]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#IseethiserrorwhenIopenmysite:Warning:Missingargument1forTopMenuDesigncalledin...templatestmpl_...scriptsBxTemplMenu.phponline45anddefinedin...incmenu.inc.phponline250 I see this error when I open my site: "Warning: Missing argument 1 for TopMenuDesign(), called in ...templates\tmpl_...\scripts\BxTemplMenu.php on line 45 and defined in ...inc\menu.inc.php on line 250"]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#Mysecurityimagedoesntshowup.Sonoonecanjoinmysite My security image doesn't show up. So no one can join my site]''' '''[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]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#IreceivethiserrorwhenItrytoinstallDolphin:Theserverencounteredaninternalerrorormisconfigurationandwasunabletocompleteyourrequest I receive this error when I try to install Dolphin: "The server encountered an internal error or misconfiguration and was unable to complete your request"]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#Iseethiserroronmysite:FatalError:Cannotapplylocalization I see this error on my site: Fatal Error: Cannot apply localization]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#WhenItrytoaddanyfieldsintheFieldsBuilderittellsmeUnabletoaddNew_Item.CheckifNew_Itemisalreadyadded When I try to add any fields in the Fields Builder it tells me "Unable to add New_Item. Check if New_Item is already added"]''' '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#TheMemberLog-InLinkatthefarrightsideofmyhomepageheaderdoesnotwork The Member Log-In Link at the far right side of my homepage header does not work]''' ---- == I can't remember my Admin login and/or password. How can I restore or change it? == You should empty the Admins table and create a new admin record there. The following script will allow you to do that. Place the script in the main directory of your Dolphin site, name it so its name would end with .php and run it in your browser, for example http://yoursite/admin_restore.php: {{{ Success"; ?> }}} where '''ADMIN_NAME''' and '''ADMIN_PASSWORD''' should be replaced with their real values. ---- == I see this error on some of my site's pages: ''Call to undefined function: mb_ereg_replace() in /path_to_dolphin/inc/utils.inc.php on line 120'' == This error and similar errors (yielding about functions starting with '''mb_''') refer to '''mbstring''' extension being absent from your PHP compilation. You should either re-compile it with '''--with-mbstring''' directive (under Linux) or uncomment '''extension=php_mbstring.dll''' in '''php.ini''' (under Windows). Then you should restart Apache web server. ---- == When I try to open a Navigation Menu link or somebody's profile, I get this page: ''Not Found'' == The problem is that your Apache server is not compiled with '''mod_rewrite''' module or you don't have rewrite instructions in your Dolphin's root .htaccess file. These instructions should be as follows: {{{ RewriteEngine on RewriteRule ^articles/{0,1}$ articles.php [QSA,L] RewriteRule ^articles/entry/([^/.]+)/{0,1}$ articles.php?action=viewarticle&articleUri=$1 [QSA,L] RewriteRule ^articles/entry/{0,1}$ articles.php?action=viewarticle&articleUri=$1 [QSA,L] RewriteRule ^articles/category/([^/.]+)/{0,1}$ articles.php?action=viewcategory&articleCatUri=$1 [QSA,L] RewriteRule ^news/{0,1}$ news.php [QSA,L] RewriteRule ^news/([^/.]+)/{0,1}$ news.php?newsUri=$1 [QSA,L] RewriteRule ^blogs/{0,1}$ blogs.php [QSA,L] RewriteRule ^blogs/all/([0-9]+)/([0-9]+)/{0,1}$ blogs.php?page=$2&per_page=$1 [QSA,L] RewriteRule ^blogs/top/{0,1}$ blogs.php?action=top_blogs [QSA,L] RewriteRule ^blogs/top/([0-9]+)/([0-9]+)/{0,1}$ blogs.php?action=top_blogs&page=$2&per_page=$1 [QSA,L] RewriteRule ^blogs/top_posts/{0,1}$ blogs.php?action=top_posts [QSA,L] RewriteRule ^blogs/tag/([^/.]+)/{0,1}$ blogs.php?action=search_by_tag&tagKey=$1 [QSA,L] RewriteRule ^blogs/tag/{0,1}$ blogs.php?action=search_by_tag&tagKey= [QSA,L] RewriteRule ^blogs/posts/([^/.]+)/tag/([^/.]+)/{0,1}$ blogs.php?action=search_by_tag&tagKey=$2&ownerName=$1 [QSA,L] RewriteRule ^blogs/posts/([^/.]+)/category/([^/.]+)/{0,1}$ blogs.php?action=show_member_blog&ownerName=$1&categoryUri=$2 [QSA,L] RewriteRule ^blogs/entry/([^/.]+)/{0,1}$ blogs.php?action=show_member_post&postUri=$1 [QSA,L] RewriteRule ^blogs/entry/{0,1}$ blogs.php?action=show_member_post&postUri= [QSA,L] RewriteRule ^blogs/posts/([^/.]+)/{0,1}$ blogs.php?action=show_member_blog&ownerName=$1 [QSA,L] RewriteRule ^blogs/posts/{0,1}$ blogs.php?action=show_member_blog&ownerName= [QSA,L] RewriteRule ^blogs/posts/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$ blogs.php?action=show_member_blog&ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^blogs/posts/([^/.]+)/category/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$ blogs.php?action=show_member_blog&ownerName=$1&categoryUri=$2&page=$4&per_page=$3 [QSA,L] RewriteRule ^events/{0,1}$ events.php?show_events=all&action=show [QSA,L] RewriteRule ^events/all/([0-9]+)/([0-9]+)/{0,1}$ events.php?show_events=all&action=show&page=$2&per_page=$1 [QSA,L] RewriteRule ^events/part/{0,1}$ events.php?show_events=all&action=show [QSA,L] RewriteRule ^events/search/{0,1}$ events.php?action=search [QSA,L] RewriteRule ^events/search/([^/.]+)/{0,1}$ events.php?action=search_by_tag&tagKey=$1 [QSA,L] RewriteRule ^events/my/{0,1}$ events.php?action=show&show_events=my [QSA,L] RewriteRule ^events/new/{0,1}$ events.php?action=new [QSA,L] RewriteRule ^events/entry/([^/.]+)/{0,1}$ events.php?action=show_info&eventUri=$1 [QSA,L] RewriteRule ^events/part/([^/.]+)/{0,1}$ events.php?action=show_part&eventUri=$1 [QSA,L] RewriteRule ^ads/{0,1}$ classifieds.php?Browse=1 [QSA,L] RewriteRule ^ads/search/{0,1}$ classifieds.php?SearchForm=1 [QSA,L] RewriteRule ^ads/my/{0,1}$ classifiedsmy.php?MyAds=1 [QSA,L] RewriteRule ^ads/new/{0,1}$ classifiedsmy.php?PostAd=1 [QSA,L] RewriteRule ^ads/cat/([^/.]+)/{0,1}$ classifieds.php?catUri=$1 [QSA,L] RewriteRule ^ads/all/cat/([0-9]+)/([0-9]+)/([^/.]+)/{0,1}$ classifieds.php?catUri=$3&page=$2&per_page=$1 [QSA,L] RewriteRule ^ads/subcat/([^/.]+)/{0,1}$ classifieds.php?scatUri=$1 [QSA,L] RewriteRule ^ads/all/subcat/([0-9]+)/([0-9]+)/([^/.]+)/{0,1}$ classifieds.php?scatUri=$3&page=$2&per_page=$1 [QSA,L] RewriteRule ^ads/entry/([^/.]+)/{0,1}$ classifieds.php?entryUri=$1 [QSA,L] RewriteRule ^ads/tag/([^/.]+)/{0,1}$ classifieds_tags.php?tag=$1 [QSA,L] RewriteRule ^photo/all/([0-9]+)/([0-9]+)/{0,1}$ browsePhoto.php?page=$2&per_page=$1 [QSA,L] RewriteRule ^photo/gallery_top/{0,1}$ browsePhoto.php?rate=top [QSA,L] RewriteRule ^photo/gallery_top/([0-9]+)/([0-9]+)/{0,1}$ browsePhoto.php?rate=top&page=$2&per_page=$1 [QSA,L] RewriteRule ^photo/gallery_top/([0-9]+)/([0-9]+)/{0,1}$ browsePhoto.php?rate=top&page=$2&per_page=$1 [QSA,L] RewriteRule ^photo/gallery_tag/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$ browsePhoto.php?tag=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^photo/gallery_tag/([^/.]+)/([0-9]+)/([0-9]+)/$ browsePhoto.php?tag=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^photo/gallery_tag/([^/.]+)/{0,1}$ browsePhoto.php?tag=$1 [QSA,L] RewriteRule ^photo/gallery/all/([^/.]+)/([0-9]+)/([0-9]+)$ browsePhoto.php?ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^photo/gallery/all/([^/.]+)/([0-9]+)/([0-9]+)/$ browsePhoto.php?ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^photo/gallery/all/([^/.]+)/{0,1}$ browsePhoto.php?ownerName=$1 [QSA,L] RewriteRule ^photo/gallery/([^/.]+)/{0,1}$ viewPhoto.php?fileUri=$1 [QSA,L] RewriteRule ^photo/gallery/{0,1}$ viewPhoto.php?fileUri=$1 [QSA,L] RewriteRule ^music/all/([0-9]+)/([0-9]+)/{0,1}$ browseMusic.php?page=$2&per_page=$1 [QSA,L] RewriteRule ^music/gallery_top/{0,1}$ browseMusic.php?rate=top [QSA,L] RewriteRule ^music/gallery_top/([0-9]+)/([0-9]+)/{0,1}$ browseMusic.php?rate=top&page=$2&per_page=$1 [QSA,L] RewriteRule ^music/gallery_top/([0-9]+)/([0-9]+)/{0,1}$ browseMusic.php?rate=top&page=$2&per_page=$1 [QSA,L] RewriteRule ^music/gallery_tag/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$ browseMusic.php?tag=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^music/gallery_tag/([^/.]+)/([0-9]+)/([0-9]+)/$ browseMusic.php?tag=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^music/gallery_tag/([^/.]+)/{0,1}$ browseMusic.php?tag=$1 [QSA,L] RewriteRule ^music/gallery/all/([^/.]+)/([0-9]+)/([0-9]+)$ browseMusic.php?ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^music/gallery/all/([^/.]+)/([0-9]+)/([0-9]+)/$ browseMusic.php?ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^music/gallery/all/([^/.]+)/{0,1}$ browseMusic.php?ownerName=$1 [QSA,L] RewriteRule ^music/gallery/([^/.]+)/{0,1}$ viewMusic.php?fileUri=$1 [QSA,L] RewriteRule ^music/gallery/{0,1}$ viewMusic.php?fileUri=$1 [QSA,L] RewriteRule ^video/all/([0-9]+)/([0-9]+)/{0,1}$ browseVideo.php?page=$2&per_page=$1 [QSA,L] RewriteRule ^video/gallery_top/{0,1}$ browseVideo.php?rate=top [QSA,L] RewriteRule ^video/gallery_top/([0-9]+)/([0-9]+)/{0,1}$ browseVideo.php?rate=top&page=$2&per_page=$1 [QSA,L] RewriteRule ^video/gallery_top/([0-9]+)/([0-9]+)/{0,1}$ browseVideo.php?rate=top&page=$2&per_page=$1 [QSA,L] RewriteRule ^video/gallery_tag/([^/.]+)/([0-9]+)/([0-9]+)/{0,1}$ browseVideo.php?tag=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^video/gallery_tag/([^/.]+)/([0-9]+)/([0-9]+)/$ browseVideo.php?tag=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^video/gallery_tag/([^/.]+)/{0,1}$ browseVideo.php?tag=$1 [QSA,L] RewriteRule ^video/gallery/all/([^/.]+)/([0-9]+)/([0-9]+)$ browseVideo.php?ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^video/gallery/all/([^/.]+)/([0-9]+)/([0-9]+)/$ browseVideo.php?ownerName=$1&page=$3&per_page=$2 [QSA,L] RewriteRule ^video/gallery/all/([^/.]+)/{0,1}$ browseVideo.php?ownerName=$1 [QSA,L] RewriteRule ^video/gallery/([^/.]+)/{0,1}$ viewVideo.php?fileUri=$1 [QSA,L] RewriteRule ^video/gallery/{0,1}$ viewVideo.php?fileUri=$1 [QSA,L] RewriteRule ^groups/all/{0,1}$ grp.php [QSA,L] RewriteRule ^groups/entry/([^/.]+)/{0,1}$ grp.php?action=group&groupUri=$1 [QSA,L] RewriteRule ^groups/category/([^/.]+)/{0,1}$ grp.php?action=categ&categUri=$1 [QSA,L] RewriteRule ^groups/keyword/([^/.]+)/{0,1}$ grp.php?action=categ&keyword=$1 [QSA,L] RewriteRule ^search/tag/([^/.]+)/{0,1}$ search.php?Tags=$1 [QSA,L] RewriteRule ^New\sPage$ viewPage.php?ID=New+Page [QSA,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule .+ - [L] RewriteRule ^([A-Za-z0-9_-]+)$ profile.php?ID=$1 [QSA,L] }}} If you can't solve these problems, you can disable '''Friendly profile permalinks''' in '''Settings -> Permalinks'''. After disabling permalinks you need to recompile Navigation Menu Builder in '''Admin Panel -> Builders -> Navigation Menu Builder''' by moving any block here. ---- == I see this error when I open my site: ''Warning: Missing argument 1 for !TopMenuDesign(), called in ...templates\tmpl_...\scripts\!BxTemplMenu.php on line 45 and defined in ...inc\menu.inc.php on line 250'' == Templates created for versions under 6.0.0004 will generate this error. But it can be fixed the following way: '''1)''' open '''templates/tmpl_TEMPLATE-NAME/scripts/BxTemplMenu.php''' '''2)''' replace {{{ $ret .= TopMenuDesign( ... ); }}} with {{{ $ret .= TopMenuDesign( (int)getParam('topmenu_items_perline'), '' ); }}} This should solve the problem. ---- == My security image doesn't show up. So no one can join my site == This may be caused by a few reasons: 1) You either don't have '''GD library''' or '''!ImageMagick''' installed. 2) If you still have GD library installed it may be not compiled with !TrueType fonts. 3) Another reason for this problem may be unchecked '''Use GD library for image processing''' in '''Settings -> Advanced Settings'''. 4) And at last, if you're using !ImageMagick, not GD library, you may have incorrect paths to its applications in '''inc/header.inc.php'''. In this case you should check the paths to '''$MOGRIFY''', '''$CONVERT''' and '''$COMPOSITE'''. If all this doesn't help, you can just disable security image in '''Settings -> Advanced Settings -> Enable security image on join page'''. ---- == I get this error message throughout my site: ''Fatal error: Call to undefined function: mb_internal_encoding'' == 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): * uncomment out the line {{{ extension=php_mbstring.dll }}} in the '''php.ini''' file * ensure that the path to this file is set correctly, again in php.ini, for example: {{{ extension_dir = "./ext" }}} * Note that you can ensure that this file is correctly loaded by setting in php.ini: {{{ display_errors = on }}} * Restart your webserver, e.g. restart Apache * You can check via phpinfo() that '''mbstring''' appears within the information page * Here's how to do it in UNIX-based systems: http://php.net/mb_string ---- == I receive this error when I try to install Dolphin: ''The server encountered an internal error or misconfiguration and was unable to complete your request'' == 1) This is most probably caused by some '''.htaccess''' instructions which your server refuses to handle. These instructions usually are {{{ php_flag register_globals Off }}} in the .htaccess file of the main Dolphin folder and {{{ Options -Indexes }}} in the .htaccess files of the subfolders Comment out these statements, for example: {{{ # Options -Indexes }}} and try to run installation again. 2) This problem can also be caused by inappropriate permissions if your PHP is installed as CGI (common gateway interface). To check the mode your PHP is running in, create the file '''phpinfo.php''' with the following contents: {{{ }}} and upload it to the Dolphin installation directory. Then open this file in a browser. When you're sure that your PHP is running in CGI mode, you should set the permissions of all folders to 755 and files to 644; the file '''ray/modules/global/app/ffmpeg.exe''' should be set to 755 as well. To do this quickly, you can run the following commands when you're in the Dolphin installation folder under your SSH account: {{{ find ./ -type d -exec chmod 755 {} \; find ./ -type f -exec chmod 644 {} \; chmod 755 ray/modules/global/app/ffmpeg.exe; }}} Now you need to let Ray determine your new permissions properly. To do so, open the file '''ray/modules/global/inc/function.inc.php''' and insert these lines of code: {{{ $sResult = ""; $bDir = is_dir($sFilePath); if(is_readable($sFilePath)) $sResult = $bDir ? "755" : "644"; if(is_writable($sFilePath)) $sResult = $bDir ? "777" : "666"; if(!$bDir && is_executable($sFilePath)) $sResult = "777"; }}} before the line {{{ return $sResult; }}} in the function '''checkPermissions($sFileName)'''. ---- == I see this error on my site: Fatal Error: Cannot apply localization == * Check that the '''langs''' folder have 777 permissions. * If your default language is not English, run thw following query in phpMyAdmin: {{{ UPDATE `GlParams` SET `Value` = 'your_lang_name' WHERE `Name` = 'lang_default' }}} where ''your_lang_name'' is the name of your default language as it is stated in the '''Name''' field of the '''!LocalizationLanguages''' table. ---- == When I try to add any fields in the Fields Builder it tells me "Unable to add New_Item. Check if New_Item is already added" == Enter phpMyAdmin (or a different database manager), open the structure of the table '''Profiles''' and remove the column '''NEW_ITEM''' (it is usually the last column in this table). Try to create a new field again. ---- == The Member Log-In Link at the far right side of my homepage header does not work == This is connected with some relocation settings on your server. To fix it, open the file '''templates/tmpl_uni/scripts/functions.php''' and replace {{{ }}} with {{{ }}}