General
New ad graphics not showing
Started January 15, 2011 by Robert Peterson
Ryan, I've spoken with you about increasing the number of pixels I offer on a site. I've got the site up and running here:http://www.billionpost.com/Here's my problem:I can upload ads.I can process the pixels fine with no errors.But when I go to approve the new pixels, I get the option to preview the pixels, but the resultant preview image "has errors." (See attached image.)So everything seems to work right, but the new pixels aren't appearing on the grid. The mouseover text is appearing -- you can test it yourself -- but no ads.My site is running in PHP 5.2 with FastCGI.Thanks!Attachments:
3 replies
hey ryan:did you get it to work? If so, can you email me? thanks... ~Rich
What does your servers error log show?
Hmm, I wonder if your script is quitting because of the missing files its finding. Are you able to lower your error reporting on your server?It seems like your host is possibly not setup properly, because the files it looks like it should be redirecting to in order to tell you the errors is also missing, including the file that says the files are missing. I don't know why. Maybe it isn't a very good host.Anyway, you could also try adding this into a .htaccess file in the root of your installation.# to stop php startup errorsphp_flag display_startup_errors off# to stop all php errors and warningphp_flag display_errors off# shut error reporting offphp_value error_reporting 0It might cause a 500 error or something though if it doesn't work. If it does that just try the first two without the 3rd one or the 3rd one without the first two and see if it works. It might not work though either.