Postponed (maintainer needs more info)
Project:
Ad Flash
Version:
6.x-2.6
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Feb 2010 at 20:30 UTC
Updated:
14 Nov 2011 at 09:51 UTC
I am unable to properly save a flash ad. When I fill out the form with information and hit submit, I get back a white screen. Going to the ad list, I see the new ad but:
Target URL is not saved.
Flash file attachment is not saved, even though the file is uploaded.
Updating existing flash ad produces same results. If I click preview, I do see attached file and URL I enter, clicking save results in blank white screen of death.
Looking for suggestions.
Thank you in advance!
Comments
Comment #1
KingJulian commentedJust checked the tables, no data in them:
mysql> select * from ad_flash;
Empty set (0.00 sec)
mysql> select * from ad_flash_format;
Empty set (0.00 sec)
Comment #2
Alex Andrascu commentedPlease tell me your Advertisment version and the browser you use to upload ads. Also this happens only to flash ads or it happens to image ads aswell ? I doubt this issue is related with this module because we've tested it and it works :).
Comment #3
Alex Andrascu commentedComment #4
KingJulian commentedAdvertisement version 6.x-2.2
Browser: FireFox. I haven't tested it in other browsers and will do so tonight.
I am only unable to create Flash banners. Image banners work fine.
Thank you!!!
Comment #5
KingJulian commentedTried in different browsers, same result -- white page. The record gets saved in ads table, but both ad_flash and ad_flash_formats are empty. Ad list displays new items, but clicking on "Edit" link produces the same white screen.
Any ideas?
Comment #6
Alex Andrascu commentedPlease post your hosting information. I might also need host access afterwards because i can't figure out where this issue come from. It must be something with your drupal installation. Can you reproduce the same problem on a freshly drupal 6 install? If you do please post the steps.
Thanks
Alex
Comment #7
gregarios commentedThere will usually be a PHP record in the error logs if it is a WSOD event. Can you give us the error message in the server error logs?
Comment #8
KingJulian commentedThe execution stops at this line in ad_flash_validate_size:
$fid_info=$getID3->analyze($file->filepath);
Guess it's out of your jurisdiction. I'd appreciate any ideas anyway.
Thank you
Comment #9
Alex Andrascu commentedWeird issue that i can't reproduce. The only thing i can point you to do is try the thing on a fresh install with only Advertisment / getID3 and ad_flash installed. Also please post the php | getID3 and mysql version might be helpfull in case anyone else reports the same. Until then i'll keep this open but i'll think of it as a local isolated issue.
Comment #10
fushun commentedI have a same problem with ad_flash.
When I fill out the form with information and hit submit, I get back a white screen.
Comment #11
vmijin commentedyes same error
it breaks at getID3 when checking module, no error just blank screeen
$getID3 = new getID3;
$fid_info=$getID3->analyze($file->filepath);
all latest verison of drupal. getID3
Tnx
Vladimir
Comment #12
wuyang commentedI met the problem also, I figure out the reason after walk through the code.
I forget to install php extention "zilib" which will be used by getID3.
hope this helpfule.
Comment #13
Alex Andrascu commentedYou mean Zlib . Thanks alot wuyang for the info i couldn't have figured that. Can anyone else confirm this fix so i can post as dependency on the module front page ?
Comment #14
Greg Bachrach commentedI can confirm that the problem was due to zlib not being compiled into php. To fix the issue I had to install & compile zlib and then recompile php to include zlib. The following article will help -
https://answers.launchpad.net/ubuntu/+question/35921
Comment #15
Alex Andrascu commentedThanks Greg. I'll add it to the module front page. Although i'm not sure it should be there but rather on the getid3 module front page.