View Single Post
Old October 27th, 2008, 05:40 AM   #9 (permalink)
Luciano
Registered User
 
Join Date: Aug 2005
Posts: 1,229
Just installed and works as a charm.. i checked your error code and the line is beyond the end of file in my vbgallery.php... actually its 2 lines after the closing ?> sign.. some servers dont like whitespace and carriage return outside of php and interpret them as html.. but once html is sent.. you cannot send a header (with cookies)

so try the following..
open vbgallery.php in your editor and delete the whitespace.. the 2 or 3 extra lines after the end of the php part.. ( after the ?> )
make sure your cursor is right after the ?> sign and nothing after it!!!!

then add a @ in front of the unset command.. (if a variable doesnt exist .. unset can throw a warning - this is suppressed by the @)

so in brief.. open vbgallery.php and go to the end of the file..
replace:
Code:
Content visible to verified customers only.
with:
Code:
Content visible to verified customers only.
so that the ?> is REALLY the last sign in the file..!!!!
I think this could solve your problem...
Luc
Luciano is offline   Reply With Quote