Jump to content

Lock Down

Rising Star
  • Posts

    1,035
  • Joined

  • Last visited

  • Days Won

    71

Everything posted by Lock Down

  1. in the admin panel > Look & Feel > Manage Skin Sets & Templates > Manage Templates Css > ipshoutbox.css find #shoutbox-shouts-table .row2 td { border-bottom: 1px solid #d5dde5; vertical-align: middle; } change to #shoutbox-shouts-table .row2 td { border-bottom: 1px solid #d5dde5; vertical-align: middle; color: white; } You can change the white to any color you like.
  2. That is because your host is too slow. in admin panel > System Settings > System > General Configuration Set minify css and js to no ...
  3. You could run a mysql command manually to change the profile pic to the banned.gif or whatever the name.. But you would have to run it every night or in a cron task.
  4. admin panel > System Settings > System > General Configuration Path to 'upload' directory & Upload URL
  5. There is no hook set to do it. So the easiest way to do it would be to check if group is banned and use your image in th profile templates or userinfo template.
  6. And if that doesn't work in acp > Manage Languages > English (USA) > Edit word pack search for per day then clear the words and save it. If it doesn't want to save go to support > SQL Management > SQL Toolbox and at the bottom enter the sql code below into the Manual Query Advanced Users Only box and hit run query. Then try to save the word changes again. update core_sys_lang set lang_protected = 0 If you have an prefix like ibf_ it must be put in front of the core_sys_lang like ibf_core_sys_lang before running the command.
  7. If the users are yahoo or google it may be that they have flagged you as a spammer. If the mail is not in the spam folder of their email you will have to contact yahoo and goggle about making them know that these are your members and you are emailing them with their ok and you are not a spammer.
  8. Yes it is.. Send it to him in your support ticket.. Glad you got him to fix it..
  9. In admin Support > Diagnostics > Overview Then find ( PHP INFO ) click it and search for memory_limit
  10. Tell your host to increase the php max memory size to 128MB. Looks like yours is set to 32MB.
  11. Looks like your new server is not as good as the old one. System Settings > System > General Configuration Set Minify CSS and JS to no..
  12. That hook is way too complicated for someone without php skills to make changes that would allow running duplicates. But it can be done by changing all class and hook names and the settings names in all the files.. (of which there are many)
  13. if you filled in the information when you signed up at mandrill it should be working. Mandrill Settings Your Mandrill Account Username API Key Once you have signed up for a Mandrill account, you can create an API key in the Mandrill Web Application. Use Mandrill for all emails? Yes If enabled, all emails sent from your community will use Mandrill's SMTP server. Otherwise, only bulk mails will be sent using Mandrill. Create a test account with a test email address like yahoo or google and see if yo get it.
  14. I will guess and say it is coming from this line in the global template (I think) <script type="text/javascript" src="/adminbidou/js.php" charset="utf-8"></script> Try either removing it or commenting out like this <!-- <script type="text/javascript" src="/adminbidou/js.php" charset="utf-8"></script> -->
  15. That is the favicon.ico image that your browser uses. Create your own and upload it to the public_html and forum folders. Then clear cache and refresh your screen.
  16. 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 );
  17. admin panel System Settings > Members > Reputation System Change to both positive and negative points if you want to keep reputation or click no on Enable reputation system if you do not want anything.
  18. You are welcome. in the globaltemplate look for <div align="center"> <a rel="nofollow" href='#top' id='backtotop' title='{$this->lang->words['go_to_top']}'><img src='{$this->settings['img_url']}/shadowtop.png' alt='' /></a> </div> change to this <!-- <div align="center"> <a rel="nofollow" href='#top' id='backtotop' title='{$this->lang->words['go_to_top']}'><img src='{$this->settings['img_url']}/shadowtop.png' alt='' /></a> </div> --> or you can delete it.
  19. Look & Feel > Manage Skin Sets & Templates > Manage Replacements in Spark - Light 1 look for webkolo near the bottom of the page and click the pencil to edit the words to what you want or leave it empty for nothing.
×
×
  • Create New...