Changes between Version 20 and Version 21 of GenDolTShooter
- Timestamp:
- Apr 2, 2008, 5:53:15 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GenDolTShooter
v20 v21 3 3 '''[http://www.boonex.net/dolphin/wiki/GenDolTShooter#Q:IgetUploadingfileerrorwhenuploadingaudiovideofilesinRayMediaandVideoPlayers I get "Uploading file error" when uploading audio/video files in Ray Media and Video Players]''' 4 4 5 '''[http://www.boonex. com/trac/dolphin/wiki/GenDolTShooter#WhenItrytoopensomebodysprofileIgettheNotFoundpage I try to open somebody's profile, I get the "Not Found" page]'''5 '''[http://www.boonex.net/dolphin/wiki/GenDolTShooter#Q:WhenItrytoopensomebodysprofileIgetthispage:NotFound When I try to open somebody's profile, I get this page: "Not Found"]''' 6 6 7 7 '''[http://www.boonex.com/trac/dolphin/wiki/GenDolTShooter#Q: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"]''' … … 13 13 '''[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"]''' 14 14 15 ---- 16 17 == I can't remember my Admin login and/or password. How can I restore or change it? == 18 19 You should empty the Admins table and create a new admin record there. 20 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: 21 {{{ 22 <?php 23 include("inc/header.inc.php"); 24 include("inc/db.inc.php"); 25 db_res("TRUNCATE TABLE `Admins`"); 26 db_res("INSERT INTO `Admins` SET `Name`='ADMIN_NAME', `Password`=MD5('ADMIN_PASSWORD')"); 27 echo "<h2>Success</h2>"; 28 ?> 29 30 }}} 31 32 where '''ADMIN_NAME''' and '''ADMIN_PASSWORD''' should be replaced with their real values. 33 34 ---- 15 35 16 36 == 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'' == … … 46 66 ---- 47 67 48 == When I try to open somebody's profile, I get th e ''Not Found'' page==68 == When I try to open somebody's profile, I get this page: ''Not Found'' == 49 69 50 70 The problem is that your Apache server is not compiled with rewrite module or you don't have rewrite instructions in your Dolphin's root .htaccess file. These instructions should be as follows: … … 139 159 # Options -Indexes 140 160 }}} 141 and try to run installation again 161 and try to run installation again.