Jump to content
  • Sign Up

Cookie Monster

Moderator
  • Posts

    1,420
  • Joined

  • Last visited

  • Days Won

    76

Everything posted by Cookie Monster

  1. PM me your forum and a Temp admin account so i can take a quick look and i can report back in PM and here
  2. So you will need to enable PHP SSH2 extention for PHP. http://php.net/manual/en/ssh2.installation.php This guide should explain that with Apache Let me know if it worked @Softer PS its bad practice security for a network setup to have a root user setup for this Some quick reads i would suggest (If i setup VPS etc i always follow this great guides! Ubuntu 16.04
  3. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  4. Glad it worked Will mark this as solved then
  5. This should fix your SSL problem possible. Mixed content makes it be broken. But if you changed it i would suggest do a clear bad chage from support in AdminCP to fix broken icons
  6. Welcome to Webflake André! Enjoy your stay here and remember to take a peak at the Community Guidelines!
  7. Hello @deehmoraes This can be achived with a simple CSS trick. Paste this code in your custom.css. #elLicenseKey { display: none; } It should be located here AdminCP > Customization > Themes > Your Theme > Edit HTML & CSS > CSS (2nd tab) > custom.css Remeber to add it to all themes if you have more the one
  8. Well if you add www. to the config_global what error do you get when you try reach the site ?
  9. Then you need to setup a cname in their site and point it to your server.
  10. Is it your own server etc? Where did you buy the domain from.
  11. Hi there @polkovnika2 Remove the edit you did in global_config (so restore it to how it was) Open .htaccess (if its not there create it) just remember the dot first. Fill it with this code. <IfModule mod_rewrite.c> Options -MultiViews RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteRule \.(js|css|jpeg|jpg|gif|png|ico|map)(\?|$) /404error.php [L,NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> Next step. This depends on your host, but you need to make sure you have a CNAME that has www into it, without that then it wont work. After that try add www.yoururl.com in the config_global.php Please note that if you are unsure about the Cname and want help i would need to know what host you have and if you are using Cpanel or Plesk
  12. IPS 4.1.x Do not use HOOKS they use Plugins and the reason why they are not working is because they are not compatible Hooks = IPB 3.4 Plugins / Applications (Normally XML or TAR files) = IPS 4.X Plugins & Applications that are tagged with 4.0 can cause problems on 4.1 and vise versa.
  13. After the PM i have done the following. Upgraded from 4.1.4 > 4.1.19.2 Updated the plugin Setup SEO with .httaccess (this fixes the issues with 404 Make sure that you update plugins that matching 4.1.x and not 4.x as this will cause errors.
  14. Or just create an account for me and PM me the details i can have a look
  15. The PM you sent me with the forums seemed to work for me try clear your cache first, could you send me a link here that is not working for you so i can test
  16. AdminCP > System > Support >Something is not working What does this tell you ?
  17. Hi there @diez1010 check in your root folder and delete the .htaccess file Or you will need to go AdminCP > Search Engine Optimization > Rewrite URL > Enable (Download htaccess) rename it to .htaccess once uploaded and then save Will this fix the issue you are having ?
  18. Well its not complicated its informal Consider them rule of thumb or guidelines for maximum protection.
  19. This sounds to me like a cat and mouse game. If people want to find the IP they can simple. The IP of a person or a computer will always be resolved as that is the communication principle. BUT as you are trying your best to hide it i understand. But to what you are asking, the reason you can only add the Nameservers is that, I would think that it's what that is controlling the DNS and the IP's So when you have set the NS (NameServers) to CloudFlare then its CloudFlarethat is controlling all your domains and DNS settings. So when someone request to visit your domain they have to go through CloudFlare and that is where their security kicks in. @Seduction This video is 1 year old but worth a try ?
  20. That's fine and i see why he gave the answer All i did was add additional information to it If this is solved then i will mark it as solved
  21. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  22. @GoodYouMad I belive i sorted it. So hang with me Open AdminCP > Customization > Your Theme > Edit HTML & CSS Under HTML in templates find the following Core > Front > Global > customFieldsDisplay The code below should look like this {{foreach $author->contentProfileFields() as $group => $fields}} {{foreach $fields as $field => $value}} <li class='ipsResponsive_hidePhone ipsType_break'> {$value|raw} </li> {{endforeach}} {{endforeach}} Replace it with THIS {{foreach $author->contentProfileFields() as $group => $fields}} {{foreach $fields as $field => $value}} {{if member.inGroup('X,X,X')}} <li class='ipsResponsive_hidePhone ipsType_break'> {$value|raw} </li> {{endif}} {{endforeach}} {{endforeach}} Replace X,X,X with the usergroups that CAN SEE THE FIELDS. To find a usergroup its the following AdminCP > Members > Groups > Click on Edit At the top url you will see it ends with a number like this An example: Admin are usergroup 4 Soe the code would then be {{if member.inGroup('4')}} <li class='ipsResponsive_hidePhone ipsType_break'> {$value|raw} </li> {{endif}} The code above will then do that all "custom fields" that are on display on the forums like the ones you showed me here. Please note this will not remove the RANK itself as this is not part of custom fields Hope that was what you wanted, if it was wrong let me know Oh and if you liked it just remember i accept in any form and shape
×
×
  • Create New...