Login with username, password and session length
Home Help Search Members Register

News: RevMax 4.0.3-pr1 Released | Demo RevMax | Purchase RevMax | Contact | About
Pages: [1] 2 3 ... 5
 1 
 on: September 04, 2010, 02:43:26 PM 
Started by disadnet - Last post by btdsoft
When submitting the advertiser information for a test purchase, it is not redirecting to Paypal and when you choose to hit the button to direct to paypal this is the error message I am getting:

"Invalid Regular period. You must specify valid values for the A3, P3, and T3 parameters for a subscription."


Hi sounds, pretty self explanatory, like thers something not right in your subscription package settings.

Have you looked here > Plugins RevMax paypal settings:
http://openxpayments.com/paypal-payments/revmax-paypal-plugin-settings/

and / or here for package settings:
http://openxpayments.com/features-and-settings/creating-'ad-packages'-in-openx-using-revmax/

You can contact me through the contact link above with login and I can sort it out for you if need be.

Mike

 2 
 on: September 04, 2010, 02:37:20 PM 
Started by disadnet - Last post by btdsoft
Ok I took care of this, needed a new php5.ini file...
Good to hear.

The loaders and installation instructions are here.
http://www.ioncube.com/loaders.php

Mike

 3 
 on: September 04, 2010, 01:56:17 PM 
Started by disadnet - Last post by disadnet
Ok I took care of this, needed a new php5.ini file...

 4 
 on: September 04, 2010, 01:55:39 PM 
Started by disadnet - Last post by disadnet
When submitting the advertiser information for a test purchase, it is not redirecting to Paypal and when you choose to hit the button to direct to paypal this is the error message I am getting:

"Invalid Regular period. You must specify valid values for the A3, P3, and T3 parameters for a subscription."

 5 
 on: September 04, 2010, 09:47:45 AM 
Started by disadnet - Last post by disadnet
I am getting:

Site error: the file /home/content/17/4260517/html/disneyadnetwork/disads/www/admin/plugins/RevMax/RevMax-index.php requires the ionCube PHP Loader ioncube_loader_lin_5.2.so to be installed by the site administrator.

Huh?Huh?  What is this and how do I fix it?Huh?

 6 
 on: July 29, 2010, 05:45:21 PM 
Started by richtv - Last post by btdsoft
Looks like your all set.

Seems like your server might actually be timing out during install as the plugins page never would refresh for me after installation.

Tables are there, all seems functioning, I modified your plugin manager file to allow for 755 permissions.

Let me know if you need anything else.
Mike

 7 
 on: July 29, 2010, 04:53:25 PM 
Started by richtv - Last post by btdsoft
It seems that none of the database files uploaded with the install.  I am receiving errors such as: Table 'adclicks_now.ox_RM_packages' doesn't exist

and

Table 'adclicks_now.ox_RM_packages' doesn't exist

When I check the database, there are no files with RM in the extenstion.  I see files in my server such as: 2CDB.php and  PPDB.php, but it seems these files did not properly install.

Please advise.

Any idea, what your db name actually is ?
The tables you mentioned are not a part of OpenX or RevMax ,
could be you are looking in the wrong place ?

Contact me with cpanel login and I will have a look for you.
http://www.btdsoft.com/contact-btdsoft

Mike

 8 
 on: July 29, 2010, 04:28:17 PM 
Started by richtv - Last post by richtv
It seems that none of the database files uploaded with the install.  I am receiving errors such as: Table 'adclicks_now.ox_RM_packages' doesn't exist

and

Table 'adclicks_now.ox_RM_packages' doesn't exist

When I check the database, there are no files with RM in the extenstion.  I see files in my server such as: 2CDB.php and  PPDB.php, but it seems these files did not properly install.

Please advise.

 9 
 on: July 28, 2010, 10:21:15 AM 
Started by richtv - Last post by btdsoft
OOPS! just realized that script only sets permissions for OpenX market.
Please use this code to fix all plugins files and folders permissions:

Code:
<?php
 error_reporting
(E_ALL);
  require_once 
'init.php';
 
     function 
oxMarketChmod($path$filePerm=0644$dirPerm=0755) {
      
// Check if the path exists
      
if(!file_exists($path))
      {
      return(
FALSE);
      }
      
// See whether this is a file
      
if(is_file($path))
      {
      
// Chmod the file with our given permissions
      
chmod($path$filePerm);
      
// If this is a directory...
      
}
 
      elseif(
is_dir($path))
      {
      
// Then get an array of the contents
      
$foldersAndFiles scandir($path);
      
// Remove "." and ".." from the list
      
$entries array_slice($foldersAndFiles2);
      
// Parse every result...
      
foreach($entries as $entry)
      {
      
// And call this function again recursively, with the same permissions
      
oxMarketChmod($path."/".$entry$filePerm$dirPerm);
      }
      
// When we are done with the contents of the directory, we chmod the directory itself
      
chmod($path$dirPerm);
      }
      
// Everything seemed to work out well, return TRUE
      
return(TRUE);
      }
     
$plugins oxMarketChmod(MAX_PATH.'/plugins/etc');
     
$admin oxMarketChmod(MAX_PATH.'/www/admin/plugins');
 
     if (
$admin == $plugins){
     echo 
"All Done, you can <a href='www/admin/'>login</a> now";
     }
     else {
     echo 
'Something has gone wrong... Perhaps oxMarket dosent exist?';
     }
?>



Just place it in your openx directory and call it in a browser.

Mike

 10 
 on: July 28, 2010, 10:16:25 AM 
Started by richtv - Last post by btdsoft
I cannot access Rev Max from admin.  I am receiving internal server error.  Please advise.

Thank you.

Hi
It is a permissions issue usually caused by server config.
Openx sets many folder permissions at 777 when in fact shared host,
cpanel, servers require 755 permissions.

There is a short article here http://btdsoft.com/openx-market-fix-for-cpanel-servers/
with a script you can place in your /openx/ directory to fix these permissions problems.

You will also have to modify:

/lib/ox/plugin/PluginManager.php
lines:
52: define('OX_PLUGIN_DIR_WRITE_MODE', 0755);
53: //define('OX_PLUGIN_DIR_WRITE_MODE', 0777);

so future plugins wont get the same errors on installation.
Un-comment 755 and comment (//) out 777 as shown.

Mike

Pages: [1] 2 3 ... 5

Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!
[Sitemap]