[ Video Sharing CMS v4 ] Blank page in admin panel

Started by tassonfl,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

tassonflTopic starter

Hello everyone, I purchased the script. I installed it, but if I go into the s panel control http://mysite.com/moderator I have a blank page. What can I do? Thank You
  •  

PHPVibe A.

Quote from: tassonfl on
Hello everyone, I purchased the script. I installed it, but if I go into the s panel control http://mysite.com/moderator I have a blank page. What can I do? Thank You

Hi, please use the search, you'll find faster answers than posting http://www.phpvibe.com/forum/troubleshooting-issues/showing-blank-page-for-moderator/

tassonflTopic starter

Thank you, you've read but I have ionCube PHP Loader v4.0.12 with PHP5.3. I have already asked the provider if they can update it, they told me that now they can not. Before buying PHPvibe, I took the test and everything was ok. Now what can I do?
  •  

PHPVibe A.

Try this, maybe the wrong file is included, there are 3 versions of the encoded file for different versions of ioncube.

Open moderator/index.php and remove:

if (function_exists('version_compare')){
if(version_compare(PHP_VERSION, '5.4.0') >= 0) {
/* Ioncube for PHP 4+ */
include_once( ADM.'/main4.php' );
} elseif(version_compare(PHP_VERSION, '5.4.0') >= 0) {
/* Ioncube for PHP 4.3 */
include_once( ADM.'/main3.php' );
} else {
/* Falback to ioncube for PHP < 4.3 */
include_once( ADM.'/main.php' );
} 
} else {
/* Falback to ioncube for PHP < 4.3 */
include_once( ADM.'/main.php' );
}


Try replacing it with

include_once( ADM.'/main4.php' );


If it doesn't work, use

include_once( ADM.'/main3.php' );

and if still doesn't work try

include_once( ADM.'/main.php' );



Let me know!

tassonflTopic starter

Thanks a lot, but none of the three options works. This is my moderator / index.php with the last option:

<?php  error_reporting(E_ALL); 
//Vital file include
require_once("../load.php");
ob_start();
// physical path of admin
if( !defined( 'ADM' ) )
	define( 'ADM', ABSPATH.'/'.ADMINCP);
define( 'in_admin', 'true' );
require_once( ADM.'/adm-functions.php' );
require_once( ADM.'/adm-hooks.php' );
$phpenversion = false;
include_once( ADM.'/main.php' );
ob_end_flush();
//That's all folks!
?>
  •  

PHPVibe A.

I see the version you have is reported to be working fine and tested.

You say the tester works? I was asuming it may be that your server cannot connect to labs.phpvibe.com
Can you test again with the tester?

tassonflTopic starter

  •  

PHPVibe A.

Quote from: tassonfl on
I loaded the tester, all seems ok

Send me a message with your email so I can send you a file or reply and let me know the one listed here in your profile is fine to send.

tassonflTopic starter

I sent you a message. Thank you very much!!
  •  

tassonflTopic starter

  •  

PHPVibe A.

Quote from: tassonfl on
I'm sorry, but does not work.

Should work, it has no encryption.

Did you edit the index to include only main.php ?

tassonflTopic starter

#11
Is this right?

<?php  error_reporting(E_ALL); 
//Vital file include
require_once("../load.php");
ob_start();
// physical path of admin
if( !defined( 'ADM' ) )
	define( 'ADM', ABSPATH.'/'.ADMINCP);
define( 'in_admin', 'true' );
require_once( ADM.'/adm-functions.php' );
require_once( ADM.'/adm-hooks.php' );
$phpenversion = false;
include_once( ADM.'/main.php' );
ob_end_flush();
//That's all folks!
?>
  •  

PHPVibe A.

Yes, are you use the error is ioncube related? What does it print now?



tassonflTopic starter

Now from server I have this error:

[Mon Mar 16 16:13:44 2015] [warn] [client 79.30.217.14] mod_fcgid: stderr: PHP Fatal error: require_once(): Failed opening required '/var/www/vhosts/mysite.com/mysite.com/moerator/adm-functions.php' (include_path='.:') in /var/www/vhosts/mysite.com/mysite.com/moderator/index.php on line 9
  •  

tassonflTopic starter

  •  

tassonflTopic starter

I changed the name ADMIN in "admin". After I put the original "moerator" instead of "moderator". Excuse me, now works perfectly "Thank you so much for your time!
  •  

PHPVibe A.

Glad you got it solved :)
If you change moderator in config, you should also rename the moderator folder to the same exact name.

Similar topics (7)

Replies: 3
Views: 2199

Replies: 1
Views: 1193

Replies: 6
Views: 4524

Replies: 3
Views: 6322

Replies: 3
Views: 8616