Important BulletShare Board Fix


Here is an important fix for BulletShare. This patch fixes functions for administration and quick editing

For the administration, we cannot create a subforum without MYQL and php errors

For a quick revision, an error occurs with the DataLife 13.3 engine. This error concerns the file engine/modules/sitelogin.php .

To fix this, open engine/modules/sitelogin.php and in line 158 , find

for($i = 0; $i < 9; $i ++) {
                $hash .= $salt{mt_rand( 0, 39 )};
            }

Replace with

for($i = 0; $i < 9; $i ++) {
                $hash .= $salt[mt_rand( 0, 39 )];
            }

If you don't want to edit the file, you can use the datalife engine 14.0 file.

Install the patch, download the archive and upload the engine folder to the root of your ftp






Go back
26-12-2022, 11:17