Changes between Version 46 and Version 47 of GenDolTShooter
- Timestamp:
- Aug 20, 2009, 8:16:06 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GenDolTShooter
v46 v47 650 650 == Some or all of my widgets keep on loading and do not work == 651 651 652 This problem usually happens when there are writable permissions on folders and files when PHP is running in CGI mode.652 1) This problem usually happens when there are writable permissions on folders and files when PHP is running in CGI mode. 653 653 654 654 To check the mode your PHP is running in, log into your Dolphin's Admin Panel and then open the page '''admin/phpinfo.php'''. … … 671 671 }}} 672 672 in the function '''checkPermissions($sFileName)'''. 673 674 2) This problem can also be caused by script's inability to open widgets' default skins. You can try the following tweak which will be harmless for the rest of the script functionality: 675 676 open the file '''ray/modules/MODULE_NAME/skins/index.php and replace the line 677 {{{ 678 $sFile = $aResult['current'] . "." . $aResult['extension']; 679 }}} 680 with 681 {{{ 682 $sFile = "default.swf"; 683 }}} 684 685 '''''MODULE_NAME''''' stands for '''board''', '''chart''', '''im''', '''movie''', '''mp3''', '''music''', '''presence''', '''shoutbox''' or '''video'''. 686 673 687 674 688 ----