Search results

  1. Heaplink

    [Rev 1.9.9] Global.php error

    Should be good. You said you changed the config. Check if you have a typo there.
  2. Heaplink

    [Rev 1.9.9] Global.php error

    If you use PHP 5, no. But I can't see where the error should come from. Try to look all files you have changed in the past for typos etc.
  3. Heaplink

    [Rev 1.9.9] Global.php error

    If the global.php is unchanged it might be somewhere else the error is from. I also hate that the errors dosen't come from the right files with Rev :/
  4. Heaplink

    [CMS] Staff page by Hejula

    Remember to edit your posts instead of double post :-)
  5. Heaplink

    Revolution Emulator [C#, R63B, Encryption Cracked, DAO, Fluent NHibernate, Lua Plugin, Mono]

    Find you a layout? I design them myself, no need to copy paste stuff. I think I have a template that I was making for something else lying around. EDIT: What do you think of this one: http://cl.ly/2q242g2L3a2C0g2I2a0P I can implement navigation. Originally I made this for another emulator...
  6. Heaplink

    [REL] Phoenix Bot Maker v1 [REL]

    Include some screenshots so we can see the sexy in action ;)
  7. Heaplink

    One Question,

    Or you could use Mono if you trust that, it is not a guaranteed solution, but o well.
  8. Heaplink

    Need help with Phoenix client error

    Don't just create a new thread. It is the same error so just post inside that thread instead of creating a new one.
  9. Heaplink

    RevCMS Register Error

    Go to app/management There is Documentation (Readme) - by anyways Open config.php Find the line $_CONFIG['template']['style'] = 'Priv'; Priv is the default theme. Change this to the theme you wan't (themes folder) e.g. change to Mango. Done.
  10. Heaplink

    RevCMS Register Error

    kyrpted, read the readme for more information. config file are located inside app/management/
  11. Heaplink

    [PHP]Would this work?

    Allright, but look at the Template class changes - I removed the $this-> since you don't need the functions in your class, they're already predefined in PHP 5. And also, use hash('sha512', '<value>') since sha512 is not a function in PHP 5.
  12. Heaplink

    [PHP]Would this work?

    Try with this <?php class Template { public $salt = "tVaCYSAqNu6yjlIXWmcotT2SXL2Zrrl"; public function secure($var) { return $this->mysql_real_escape($var); return trim($var); return stripslashes($var); return...
  13. Heaplink

    [PHP]Would this work?

    To be honest, you don't need to encrypt username with an SHA512 hash. Also a good idea is to run speed tests :-) But yeah, it would work.
  14. Heaplink

    [HELP] Template System

    I found the solution. Inside class.template.php of RevCMS this function does the magic: final public function filterParams($str) { foreach($this->params as $key => $value) { $str = str_ireplace('{' . $key . '}', $value, $str); } return $str; }
  15. Heaplink

    RevCMS Register Error

    Yes
  16. Heaplink

    RevCMS Register Error

    You need to add 'seckey' into the users table. name: seckey type: VARCHAR(10) NOT NULL
  17. Heaplink

    All Seeing Eye Layout

    Thank you, zJobo :-)
  18. Heaplink

    All Seeing Eye Layout

    Link is broken. Reupload or change URL please :-)
  19. Heaplink

    Client Black Screen - Help please

    Make sure everything is right inside external_variables and also make sure that you get a connection to the emulator. Example, when client fails it should say that you disconnected on the emulator as well. If this is not the case, then you need to see trough your configurations again. Remember...
  20. Heaplink

    Client Black Screen - Help please

    %www% Does this change in source code, when you look in source? If not, you'll have to change this to your hostname.
Top