rusty_dog Posted December 19, 2013 Report Share Posted December 19, 2013 Hi, I just downloaded revive and when i try and install it, all i get is a blank page. What would be causing this? My server specs should be fine to run this. Thanks Rusty Quote Link to comment Share on other sites More sharing options...
tinytim Posted December 19, 2013 Report Share Posted December 19, 2013 Hi, I have experienced exactly the same problem. Any ideas Tim Quote Link to comment Share on other sites More sharing options...
Matteo Beccati Posted December 19, 2013 Report Share Posted December 19, 2013 Please ensure that the PHP version you run is compatible with Revive Adserver. And check your error log for clues Quote Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2013 Report Share Posted December 19, 2013 Also check your directory permission if 500 internal server error , you can see blank Quote Link to comment Share on other sites More sharing options...
andrewatfornax Posted December 19, 2013 Report Share Posted December 19, 2013 Yeah, if the page is blank, I would expect to see some kind of error in your webserver log that will help diagnose what's wrong. Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 Hi everyone, Thanks for the feedback. I have checked and my server config should support this software just fine, and there is nothing in the error log So i don't really get why this is occuring. If you visit http://goo.gl/uTdL5B you will see it sits on the install page however it's blank. If it is a directory permission issue, i can't find any docs on what the permissions should be pre-install. Does anyone know? Thanks Quote Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2013 Report Share Posted December 19, 2013 Hi rusty_dog, I have checked , Exactly it is "500 Internal Server Error" chinnu@chinnu-Inspiron-N4010:~$ curl -i http://yourdomain.com.au/ads/www/admin/install.php HTTP/1.1 500 Internal Server Error Date: Thu, 19 Dec 2013 23:16:45 GMT Server: Apache X-Powered-By: PHP/5.3.27 Cache-Control: max-age=0 Expires: Thu, 19 Dec 2013 23:16:45 GMT Content-Length: 0 Connection: close Content-Type: text/html chinnu@chinnu-Inspiron-N4010:~$ check permission for your /ads/ directory (root directory which is contains all revive ad server codes) Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 HI, Thanks for the response, the permissions on the ads folder is 755, is that correct? Thanks Quote Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2013 Report Share Posted December 19, 2013 yes , /ads/ should have write permission Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 I think it could be the domains .htaccess file. It's affecting 'ads' somehow. Now on install i get an error page which is the error page from the domain software, and not the ads directory. Why would that be happening? Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 Could it be a memory or execution time issue? Quote Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2013 Report Share Posted December 19, 2013 what about your .htaccess settings ? Now it shows as "404 - File Not Found" Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 Hi, The ads directory doesn't appear to have one but this is the one from my main domain: RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .* ./index.php # Enable gzip compression <ifModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text/.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image/.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* </ifModule> #Ban Malicious IPs order allow,deny deny from 1.1.1.1 allow from all ## EXPIRES CACHING ## <IfModule mod_expires.c> ExpiresActive On # Your document html ExpiresByType text/html "access plus 0 seconds" # Media: images, video, audio ExpiresByType audio/ogg "access plus 1 month" ExpiresByType image/gif "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType video/mp4 "access plus 1 month" ExpiresByType video/ogg "access plus 1 month" ExpiresByType video/webm "access plus 1 month" # CSS and JavaScript ExpiresByType application/javascript "access plus 1 year" ExpiresByType text/css "access plus 1 year" </IfModule> ## EXPIRES CACHING ## #Prevent Hot Linking RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?domain.com.au [NC] RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L] <IfModule mod_headers.c> <FilesMatch "\.(js|css|xml|gz)$"> Header append Vary: Accept-Encoding </FilesMatch> </IfModule> I have replaced my domain up there with 'domain'. Can you see any potential conflicts? Thanks again! Quote Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2013 Report Share Posted December 19, 2013 change RewriteRule .* ./index.php to RewriteRule (.*) index.php Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 I have, still the same issue Quote Link to comment Share on other sites More sharing options...
Guest Posted December 19, 2013 Report Share Posted December 19, 2013 oh , remove RewriteRule (.*) index.php , check again Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 19, 2013 Author Report Share Posted December 19, 2013 The fact is i just deleted all the contents from the .htaccess file and i was still getting the blank install page, so clearly that file is not the issue then? Quote Link to comment Share on other sites More sharing options...
Guest Posted December 20, 2013 Report Share Posted December 20, 2013 check the error log /usr/local/apache/logs/error_log To change directory & file permission cd public_html find . -type d -exec chmod 755 {} \; find . -type f -exec chmod 644 {} \; Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 20, 2013 Author Report Share Posted December 20, 2013 Nothing showing up about it in the error log Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 20, 2013 Author Report Share Posted December 20, 2013 I have installed it on it's own domain now too and i still get blanks. http://goo.gl/KTNzlm Quote Link to comment Share on other sites More sharing options...
Guest Posted December 20, 2013 Report Share Posted December 20, 2013 Yes , still 500 Internal Server Error Quote Link to comment Share on other sites More sharing options...
tinytim Posted December 20, 2013 Report Share Posted December 20, 2013 Mine did turn out to be a PHP version issue - teach me to believe what I was told instead of checking myself! Changed version within Plesk and welcome page now appears although a very strange problem within the configuration check: safe_mode The safe_mode option must be OFF Current value is OFF!!! Will raise a new topic rather than highjacking this one. Good luck rusty_dog Quote Link to comment Share on other sites More sharing options...
rusty_dog Posted December 20, 2013 Author Report Share Posted December 20, 2013 Mine did turn out to be a PHP version issue - teach me to believe what I was told instead of checking myself! Changed version within Plesk and welcome page now appears although a very strange problem within the configuration check: safe_mode The safe_mode option must be OFF Current value is OFF!!! Will raise a new topic rather than highjacking this one. Good luck rusty_dog Hi, What version did you put it to? Mine is 5.3.27 Thanks Quote Link to comment Share on other sites More sharing options...
ugrdual Posted December 20, 2013 Report Share Posted December 20, 2013 Whats up with: Call to a member function quoteIdentifier() on a non-object in /lib/OA/Upgrade/VersionController.php line: quoteIdentifier($GLOBALS['_MAX']['CONF']['table']['prefix'].'application_variable', true); ? This is the cause of blank pages upon install for me. Quote Link to comment Share on other sites More sharing options...
tinytim Posted December 20, 2013 Report Share Posted December 20, 2013 Hi 5.3.25 was already installed on Plesk so I just changed it to that from 5.2.x Rgds Tim Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.