Flux Control Panel for Hercules

i dont want to use the default theme , i want to permanently change it because i only want one theme

any guide ?

Thanks in advance
config/application.php

'ThemeName' => array('default', 'emphaino'), 
change this to whichever themes you want. if want more themes, just put "," and proceed with name in inverted comma. If want less themes, just remove the name from here.

 
I suggest changing changeemail.php's line 50:
 
A confirmation email will be sent to your NEW email address.

$sent = $mail->send($email, 'Change E-mail', 'changemail', array(

to
 
A confirmation email will be sent to your OLD email address.

$sent = $mail->send($session->account->email, 'Change E-mail', 'changemail', array(

I think its a way to prevent hackers from changing hacked account's email easily.

@ps

I cant pull request. I dont have git ;D

 
Last edited by a moderator:
I suggest changing changeemail.php's line 50:

A confirmation email will be sent to your NEW email address.

$sent = $mail->send($email, 'Change E-mail', 'changemail', array(

to

A confirmation email will be sent to your OLD email address.

$sent = $mail->send($session->account->email, 'Change E-mail', 'changemail', array(

I think its a way to prevent hackers from changing hacked account's email easily.

@ps

I cant pull request. I dont have git ;D
What if you lost your old e-mail account, in whatever way plausible, can't remember password or it's been disabled/deactivated.

I do understand the point you're trying to make but it's a double edged sword.

 
Last edited by a moderator:
I guess that's a bad idea.
default_smile.png


 
Last edited by a moderator:
need help to this error

Parse error: syntax error, unexpected ';', expecting ')' in /home/allianc1/public_html/config/equip_location_combinations.php on line 4

 
What if you lost your old e-mail account, in whatever way plausible, can't remember password or it's been disabled/deactivated.

I do understand the point you're trying to make but it's a double edged sword.
then it should send a warning to old email address, in case this request was not from them.
 
What if you lost your old e-mail account, in whatever way plausible, can't remember password or it's been disabled/deactivated.

I do understand the point you're trying to make but it's a double edged sword.
then it should send a warning to old email address, in case this request was not from them.
that is nice to have, maybe they should implement it
default_smile.png


 
bumb to this problem:

Because of the new structur?!

Code:
Error: Flux_ErrorMessage: Failed to import/replace rows from table 'hercules.item_db2'File: /usr/www/users/oldschne/flux/lib/Flux/TemporaryTable.php:230
 
ALTER TABLE item_db ADD COLUMN `bindonequip` tinyint(1) unsigned DEFAULT NULL AFTER `view`;ALTER TABLE item_db_re ADD COLUMN `bindonequip` tinyint(1) unsigned DEFAULT NULL AFTER `view`;
default_tongue.png


 
ALTER TABLE item_db ADD COLUMN `bindonequip` tinyint(1) unsigned DEFAULT NULL AFTER `view`;ALTER TABLE item_db_re ADD COLUMN `bindonequip` tinyint(1) unsigned DEFAULT NULL AFTER `view`;
default_tongue.png
MySQL-ERROR MySQL meldet:

Duplicate column name 'bindonequip' ALTER TABLE item_db ADD COLUMN `bindonequip` tinyint(1) unsigned DEFAULT NULL AFTER `view`;

Duplicate column name 'bindonequip' ALTER TABLE item_db2 ADD COLUMN `bindonequip` tinyint(1) unsigned DEFAULT NULL AFTER `view`;

I had used lastest hercules sql files and this allready there. But the error came also up....

 
Last edited by a moderator:
Same problem, I had the problem because of Hercules' new item_db structure

 
Back
Top