Hello there,
I just downloaded Super Orders v. 4.0.5 and after I uploaded the files and then tried to click on a link in my admin side everything went blank. I could not access any page. I had to remove all of them and reupload another way. But the same thing happened. After I spent hours on trying to upload and remove and find where I might have mistaken I decided to go the long route and find the bug with the code. I uploaded file by file until I found the problematic one. There is a bug in this file: admin/includes/classes/fpdf/fpdf.php. I have PHP version 5.2 and for me the error is that at line 1047 and 1329 there is a '.' there that should not be.
Line 1047:
PHP Code:
ini_set('magic_quotes_runtime', .$mqr); 
should be:
PHP Code:
ini_set('magic_quotes_runtime'$mqr); 
Line 1329
PHP Code:
ini_set('magic_quotes_runtime', .$mqr); 
should be:
PHP Code:
ini_set('magic_quotes_runtime'$mqr); 
Thank you for this great program.
May God bless you