• Welcome to WooUSEFUL by PHPVIBE . Please log in.

[ Video Sharing CMS v4 ] Fresh install problem

Started by korobert,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

korobertTopic starter

I have install the script and when i try log in administrator nothing happens.

If i open any links on site nothing happens.

tester:
http://screen.greepx.com/tester/
"Congratulations! Even if PHPVibe depends on a bit more that this test performs, you seem to have a fit hosting environment."

I use nginx dedicated server, on this server i have many wordpress site, and other html site.
My server only with this script not working.

:confused:

I sent you an email with the subject

thanks
robert


  •  

ownbond

it looks you have not updated Key in configuration file...
  •  

korobertTopic starter

#2
I check the Key, i try install 2 different domains, same problem.
  •  

Marius

Hi, do you have ioncube installed? Also, anything in the error_log?
If this helped, consider buying me a coffee.
20 years coding, tweaking, building in PHP. Still creating!
  •  

korobertTopic starter

If phpvibe tester answers: "Ioncube loader is available!" is it correct?
  •  

Marius

It tests if the loader exists, not that is the right version for your environment.
If this helped, consider buying me a coffee.
20 years coding, tweaking, building in PHP. Still creating!
  •  

Marius

Open moderator/index.php and find:

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' );
}



Temporary replace it with


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



Let me know what it prints out.
If this helped, consider buying me a coffee.
20 years coding, tweaking, building in PHP. Still creating!
  •  

korobertTopic starter

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


ioncube version problem?
  •  

korobertTopic starter

The ionCube Loader version 4.4.1 for PHP 5.4 is already installed but it is an old version. It is recommended that the Loader be upgraded to the latest version if possible.
  •  

Marius

If this helped, consider buying me a coffee.
20 years coding, tweaking, building in PHP. Still creating!
  •  

korobertTopic starter

Loader Installed
The ionCube Loader version 4.6.1 for PHP 5.4 is already installed and encoded files should run without problems.

Updated but not working.
  •  

korobertTopic starter

I have this error:

2014/10/07 22:43:00 [error] 14083#0: *450 rewrite or internal redirection cycle while internally redirecting to "/error/404.html", client: XX.X.XX.X, server: screen.greepx.com, request: "GET /embed/3/ HTTP/1.1", host: "screen.greepx.com", referrer: "http://screen.greepx.com/moderator/?sk=edit-video&vid=3"
  •  

korobertTopic starter

I cant change sub channel
I cant create sub channel
  •  

Marius

Did you upload the files in binary? Cause else the encrypted ones will fail, forgot about this.
If this helped, consider buying me a coffee.
20 years coding, tweaking, building in PHP. Still creating!
  •  

Marius

Quote from: korobert on
I cant change sub channel
I cant create sub channel

Why? Please be explicit.
If this helped, consider buying me a coffee.
20 years coding, tweaking, building in PHP. Still creating!
  •  

Similar topics (7)