Jump to content
  • 0

Regarding FluxCP


joven15

Question


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   3
  • Joined:  03/03/14
  • Last Seen:  

Hi Good Day,

 

I got the Free FluxCP From - EADev on FB which is Integrated FluxCP. After he gave me the file he ask me what Emulator i used.  Since im using HERCULES Emulator. He told me.

 

Yes, i know. We don't have hercules version available but rAthena should work on hercules. Regards.

 

Can someone help me to convert the FluxCP into Hercules.

 

BTW Let me know if you need the files. I know this FluxCP is free. but u need first to share there page to get it. i will not upload and posted on public. ill send it you privately

 

Thank you in advanced.

 

 

Regards,

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.01
  • Content Count:  41
  • Reputation:   1
  • Joined:  01/29/16
  • Last Seen:  

modules/main/download have same erors

 

 

<?php
if (!defined('FLUX_ROOT')) exit;
$pages = Flux::config('FluxTables.CMSPagesTable');
$path = trim($params->get('path'));

$sql = "SELECT title, body, modified FROM {$server->loginDatabase}.$pages WHERE path = ?";
$sth = $server->connection->getStatement($sql);
$sth->execute(array($path));

$pages = $sth->fetchAll();

if($pages) {
    foreach($pages as $prow) {
        $title        = $prow->title;
        $body        = $prow->body;
        $modified    = $prow->modified;
    }   
}
else {
    $this->redirect($this->url('main','index'));
}
?>

Page Not Found

The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.

/?module=main&action=downloads

Edited by Lunohod
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.01
  • Content Count:  41
  • Reputation:   1
  • Joined:  01/29/16
  • Last Seen:  

Page Not Found

The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.

/?module=main&action=downloads

 

modules/main/download

 

<?php
if (!defined('FLUX_ROOT')) exit;
$pages = Flux::config('FluxTables.CMSPagesTable');
$path = trim($params->get('path'));

$sql = "SELECT title, body, modified FROM {$server->loginDatabase}.$pages WHERE path = ?";
$sth = $server->connection->getStatement($sql);
$sth->execute(array($path));

$pages = $sth->fetchAll();

if($pages) {
    foreach($pages as $prow) {
        $title        = $prow->title;
        $body        = $prow->body;
        $modified    = $prow->modified;
    }   
}
else {
    $this->redirect($this->url('main','index'));
}
?>

themes/default/main/downloads.php

 

<?php if (!defined('FLUX_ROOT')) exit; ?>
<div class="heading">Downloads</div>

....

......

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

Yes the problem there is the missing modules. EADev has luck of support regarding this issue.he doesn't even know that the files he was sending is incomplete.but it should work once you have the missing modules.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  118
  • Topics Per Day:  0.03
  • Content Count:  1942
  • Reputation:   197
  • Joined:  01/08/12
  • Last Seen:  

Hi Good Day,

 

I got the Free FluxCP From - EADev on FB which is Integrated FluxCP. After he gave me the file he ask me what Emulator i used.  Since im using HERCULES Emulator. He told me.

 

Yes, i know. We don't have hercules version available but rAthena should work on hercules. Regards.

 

Can someone help me to convert the FluxCP into Hercules.

 

BTW Let me know if you need the files. I know this FluxCP is free. but u need first to share there page to get it. i will not upload and posted on public. ill send it you privately

 

Thank you in advanced.

 

 

Regards,

is that the green one?

1231172_458157520950019_630524693_n.jpg

Edited by Brynner
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   3
  • Joined:  03/03/14
  • Last Seen:  

 

Hi Good Day,

 

I got the Free FluxCP From - EADev on FB which is Integrated FluxCP. After he gave me the file he ask me what Emulator i used.  Since im using HERCULES Emulator. He told me.

 

Yes, i know. We don't have hercules version available but rAthena should work on hercules. Regards.

 

Can someone help me to convert the FluxCP into Hercules.

 

BTW Let me know if you need the files. I know this FluxCP is free. but u need first to share there page to get it. i will not upload and posted on public. ill send it you privately

 

Thank you in advanced.

 

 

Regards,

is that the green one?

1231172_458157520950019_630524693_n.jpg

 

yup that one

bump?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

If you goto the hercules forums you will find links to there version of flux cp install that

 

once that is installed and working upload that theme to your themes folder in flux cp then edit this file

root/config/application.php

'ThemeName'            => 'default', /// Change this line to your theme folders name

then edit error.php in the same folder

 

it should look like this

<?php
// Configuration information for critical error handling.
// Critical errors are exposed due to an exception in the program.

// Setting $showExceptions to true will cause not only exceptions to be displayed
// but also the backtrace, which can result in security issues such as exposing
// your MySQL user and password when unable to connect. Please keep it at false
// in a production environment.

$adminEmail      = 'admin@localhost'; // Administrator e-mail address.
$errorFile       = 'error.php';       // Error file to render.
$showExceptions  = false;              // Whether or not to show exceptions (only applies to error.php) /// Change this line to True
?>

Then work though the errors and report back if you have any problems

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   3
  • Joined:  03/03/14
  • Last Seen:  

If you goto the hercules forums you will find links to there version of flux cp install that

 

once that is installed and working upload that theme to your themes folder in flux cp then edit this file

root/config/application.php

'ThemeName'            => 'default', /// Change this line to your theme folders name

then edit error.php in the same folder

 

it should look like this

<?php
// Configuration information for critical error handling.
// Critical errors are exposed due to an exception in the program.

// Setting $showExceptions to true will cause not only exceptions to be displayed
// but also the backtrace, which can result in security issues such as exposing
// your MySQL user and password when unable to connect. Please keep it at false
// in a production environment.

$adminEmail      = 'admin@localhost'; // Administrator e-mail address.
$errorFile       = 'error.php';       // Error file to render.
$showExceptions  = false;              // Whether or not to show exceptions (only applies to error.php) /// Change this line to True
?>

Then work though the errors and report back if you have any problems

its now working but 1 problem.

 

 when i click on the  menu at the above. download server info etc.

 

Page Not Found

The page you have requested was not found on our server. Please check the address and make sure it is correct, and try again.

/?module=main&action=info

 

 

something like that but i already put information on the theme/main/download,staff etc....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  107
  • Reputation:   6
  • Joined:  12/09/11
  • Last Seen:  

the problem there is the links in the theme aren't correct or missing, so you need to figure out the correct links and add them to the header.php or a config file i(f applicable)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  35
  • Reputation:   3
  • Joined:  03/03/14
  • Last Seen:  

the problem there is the links in the theme aren't correct or missing, so you need to figure out the correct links and add them to the header.php or a config file i(f applicable)

can anyone help me?

If you goto the hercules forums you will find links to there version of flux cp install that

 

once that is installed and working upload that theme to your themes folder in flux cp then edit this file

root/config/application.php

'ThemeName'            => 'default', /// Change this line to your theme folders name

then edit error.php in the same folder

 

it should look like this

<?php
// Configuration information for critical error handling.
// Critical errors are exposed due to an exception in the program.

// Setting $showExceptions to true will cause not only exceptions to be displayed
// but also the backtrace, which can result in security issues such as exposing
// your MySQL user and password when unable to connect. Please keep it at false
// in a production environment.

$adminEmail      = 'admin@localhost'; // Administrator e-mail address.
$errorFile       = 'error.php';       // Error file to render.
$showExceptions  = false;              // Whether or not to show exceptions (only applies to error.php) /// Change this line to True
?>

Then work though the errors and report back if you have any problems

Missing Action!

Module: main, Action: download

Request URI: /main/?module=main&action=download

File system location: /home/tirvalro/public_html/main/modules/main/download.php

 

 

i got this error

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  70
  • Reputation:   18
  • Joined:  01/28/12
  • Last Seen:  

make sure download.php exist on modules and themes folders.

 

modules/main/download.php

<?php
if (!defined('FLUX_ROOT')) exit; 

themes/default/main/download.php

<?php if (!defined('FLUX_ROOT')) exit; ?>

<h2>Downloads</h2>
<p>This is the downloads page.</p>
...
...
...
Edited by Choko Designoper
Link to comment
Share on other sites

×
×
  • Create New...