Adsense
Popular Posts
- jQuery autocomplete scroll bar for dropdown menu
- mod_auth_cas.so error: undefined symbol: SSL_connect
- JavaScript Arrays and Associate Arrays
- Design date and signature box in Latex
- JavaScript, remove trailing insignificant zeros after toFixed function
- Install APXS in Redhat Linux
- jQuery, toggle the display
- Difference between state and props in React
- super(props) in React
- MySQL workbench -"Could not decrypt password cache"
Friday, November 8, 2013
Bug in cesei mirror site
bug:
http://dev.cesei.org:8080/education/courses/tools/course_properties.php
blank page
add:
ini_set('display_errors', 1);
error_reporting(E_ALL);
result:
Strict Standards: Only variables should be assigned by reference in C:\LMS\cesei\education\courses\include\vitals.inc.php on line 152
change
$myLang =& $languageManager->getMyLanguage();
to
$myLang =$languageManager->getMyLanguage();
Fatal error: Cannot re-assign auto-global variable _FILES in C:\LMS\cesei\education\courses\include\classes\Backup\Backup.class.php on line 218
change
function upload($_FILES, $description) {
to
function upload($file, $description) {
New error
Strict Standards: Non-static method Language::getParentCode() should not be called statically in C:\LMS\cesei\education\courses\include\lib\output.inc.php on line 286
comment out error reporting
// ini_set('display_errors', 1);
//error_reporting(E_ALL);
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment