When I go to the video page on the main site or the video module in admin I just get a blank page. I think it has something to do with my cron job but not sure. My site has to have a php.ini file in each directory, so it may be the part that has the php command. |
So would the Cron being set up wrong cause the video page to just go blank? All I get is a completely white page with no headers. I am really pulling my hair out on this. |
No. A white page would not have anything to do with cron.
A white page indicates a error condition, but your php is configured to not show errors. You need to either turn error reporting on in php.ini, or look for error.log files on your server that will contain the errors.
https://www.deanbassett.com |
Well here is the error in my error log. There seem to be quite a few all pointing to this line 39:
PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening '/home1/gailscu1/public_html/graphxlounge/modules/boonex/sounds/request.php' for inclusion (include_path='.:/usr/lib64/php:/usr/lib/php:/usr/share/pear') in /home1/gailscu1/public_html/graphxlounge/modules/index.php on line 39
|
Well that one is pointing to the sounds module, not the video module.
But it would appear you have some files missing from your site.
You will need to obtain a fill zip file of dolphin. One that matches your current dolphin version and reupload the modules/boonex/sounds folder. There are some files missing there.
Look very carefully through that error log. Errors may look the same, but in many case can contain a difference of even one word.
That one says this.
PHP Warning: include() [<a href='function.include'>function.include</a>]: Failed opening '/home1/gailscu1/public_html/graphxlounge/modules/boonex/sounds/request.php' for inclusion (include_path='.:/usr/lib64/php:/usr/lib/php:/usr/share/pear') in /home1/gailscu1/public_html/graphxlounge/modules/index.php on line 39
I do not care about the line number here. /home1/gailscu1/public_html/graphxlounge/modules/index.php on line 39
That may tell you where the error is occurring, but does not tell you what the cause of that error is.
This section does. Failed opening '/home1/gailscu1/public_html/graphxlounge/modules/boonex/sounds/request.php' for inclusion
And that points directly to exactly what is causing that paticuler error. Missing file. modules/boonex/sounds/request.php
https://www.deanbassett.com |
Thank you very much that worked. This was definitely a case of blinders not allowing me to see the real problem. I was so stuck on the Cron being the problem, I did not see the tree I was walking into. |