Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. Ok he has already went through mandrill testing his mail and so forth. That is where he came up with blacklisted.. Get a new host.. I hope you didn't pay by the year for this host..
  2. You did or forgot something. Try rebooting your VPS..
  3. To show the reputation points of the current member it is {$this->memberData['pp_reputation_points']}
  4. Since you didn't show us which blacklist you are on , google the blacklist site name and find the contact information..
  5. Contact the blacklist and ask them why. If it is the host ip make them change your ip..
  6. On which side bar? A picture would be nice of what you want to see.
  7. You would have to us an if statement in possibly 3 templates. In board index > boardindextemplate if you don't want them to know they exist. In forum view > forumindextemplate if you don't want them to see the topic listings In topic view > topicviewtemplate if you don't want them to see the actual topic posts use something like this if <if test="enoughPoints :|:$this->memberData['pp_reputation_points'] > 49"> at the top of topicviewtemplate and </if> at the very bottom. Look at the other templates and if you need help on where to put the if. You can also add an else at the bottom to give them a message like this adding any styles you would like.. <else /> <h4> you need 50 reputation points to view this forum..</h4></if> The above if is for all forums for certain forums you can use this in the topicviewtemplate Below is for your selected forums by forum id number. <if test="enoughPoints :|:!in_array($forum['id'],array(47,54,75)) || $this->memberData['pp_reputation_points'] > 49"> The numbers represent the forum id numbers. <else /> <h1> 50 Reputation points required to view forum {$forum['id']} </h1> </if>
  8. That is not 2 columns?? That is single rows. You need to remove the part with Number of topics , replies and latest post. Then check that table layout from the tutotrial..
  9. If you want it shown in the profile part including post area acp > System Settings > Members > Reputation System Display user reputation Yes Set to yes to show a users reputation on their profile
  10. Start with this then you can change the rest to look like above.
  11. Are you running this form the acp > scheduler?? Try taking that class Otinfo { //class that works } out.. See if it tries to run then.. Also did set define( 'IPS_LOG_ALL', TRUE ); in your initdata.php file to get the debug messages .
  12. Since I don't know what os you use you can google "how to add german locale to linux" If you installed a minimal version of the os that is why you are having problems..
  13. Happens a lot. Bad programming so you can use ftp and edit the initdata.php file changing this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_WARNING | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING ); to this //-------------------------------------------------------------------------- // ADVANCED CONFIGURATION: ERROR REPORTING //-------------------------------------------------------------------------- error_reporting( E_STRICT | E_ERROR | E_PARSE | E_RECOVERABLE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_USER_WARNING );
  14. I suggest you contact your host and ask them if they set up the german locale. If not tell them to set it up.
  15. ok use ftp and create this file datetest.php in your forum folder .. <?php /* try different possible locale names for german */ $loc=setlocale(LC_ALL, 'de_DE'); echo "Preferred locale for german on this system is '$loc' <br>"; echo strftime("%A %d %B %Y", mktime(0, 0, 0, 12, 22, 1978))."<br><br>"; $loc=setlocale(LC_ALL, 'de_DE@euro'); echo "Preferred locale for german on this system is '$loc' <br>"; echo strftime("%A %d %B %Y", mktime(0, 0, 0, 12, 22, 1978))."<br><br>"; $loc=setlocale(LC_ALL, 'de_DE.utf8'); echo "Preferred locale for german on this system is '$loc' <br>"; echo strftime("%A %d %B %Y", mktime(0, 0, 0, 12, 22, 1978))."<br><br>"; ?> Then run it from your browser window like www.yoursite.com/yourforum/datetest.php . Post the results here.
  16. And the day is shown correctly. Right?
  17. And did you use this de_DE for locale? If yes then add this line in the file conf_global.php right after the <?php line. setlocale(LC_TIME, 'de_DE');
  18. What is your country or language??
  19. acp > Manage Languages > your language edit language info Language Locale google the language for your country and enter it there...
  20. acp > Member Groups > Manage Member Groups> Display Name Display Name Changes Must have o posts in order to change display name. Leave blank for no restriction. Can change display name 0 times per days Enter 0 for the number of times to never allow name changes or enter -1 to allow unlimited changes. also acp > System Settings > Members > Username Restrictions Display Name Restrictions Allow display names Yes If enabled, the member can choose a "Display Name" that is separate from their "Log in UserName". This is REQUIRED when using non-internal authentication methods. Maximum display name length The maximum number of characters that a display name can be. Revert Prohibit display names from selecting log in names Yes If "yes", one is not able to choose a display name that is the same as another's display name OR another's log in name. If "no" one is not able to choose a display name that is the same as another's display name only.
  21. Seems like a lot of time used but to fix this you must again ask host to increase max_execution_time php.ini file . Something like this max_execution_time = 300
×
×
  • Create New...