Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorlattices2
    • CommentTimeApr 13th 2007
     
    Hi, After i go past the login screen to plogger i see this first. The actual html page is at the bottom of 4 pages of code like below
    Any ideas. I have apache 2.2, mysql 5.0 php 5 and all seem to be working fine
    Thanks

    2147483647) $top = $top - 4294967296; //this makes the number signed instead of unsigned if($bottom!=0) $data=$top/$bottom; else if($top==0) $data = 0; else $data=$top."/".$bottom; if(($tag=="011a" || $tag=="011b") && $bottom==1) { //XResolution YResolution $data=$top." dots per ResolutionUnit"; } else if($tag=="829a") { //Exposure Time if($top/10 == 1) $data="1/".round($bottom/10, 0)." sec"; else $data=$top."/".$bottom." sec"; } else if($tag=="829d") { //FNumber $data="f ".$data; } else if($tag=="9204") { //ExposureBiasValue $data=$data." EV"; } else if($tag=="9205" || $tag=="9202") { //ApertureValue and MaxApertureValue //ApertureValue is given in the APEX Mode. Many thanks to Matthieu Froment for this code //The formula is : Aperture = 2*log2(FNumber) <=> FNumber = e((Aperture.ln(2))/2) $data = exp(($data*log(2))/2); $data = round($data, 1);//Focal is given with a precision of 1 digit. $data="f "
    • CommentAuthorlattices2
    • CommentTimeApr 13th 2007
     
    I just read a post 3 posts down and think i can solve the same problem. Ill read next time before posting.
    Thanks
    •  
      CommentAuthorTony
    • CommentTimeJun 28th 2007
     
    Server setup may have PHP shorttags off. The EXIF library we utilize uses Shorttags (<? instead of <?php) to indicate the beginning of PHP code blocks.

    Open up the files in your /lib/exifixer/ directory and replace <? with <?php at the beginning of each file. Re-upload them and it should work, and you will also need to do this to all the main files within the plogger gallery.