Jump to content

DavidPolak

Explorer
  • Posts

    106
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by DavidPolak

  1. Yeah, but some panels or even some softwares (like navicat) can actually change that charset when exporting, it's just a quick tip to convert that to normal.
  2. CHARSET WHAT IS THIS To be fast, it's a character encoding that helps you use different language on a page. Why would I change it I've had that problem few hours ago, when, my sql database was in a general UTF-8 Format, BUT my backup and all my database was in Latin1. So of course Ipboard didn't liked that a lot and made my databse not run (showing an IP.Board Error). But there's the little savior, put this code on root of your IPB installation, and run it on a browser.It will convert all your database (based on your conf_global accesses) to a most used format (utf8). Of course you can do the reverse by changing the formats. <?php // Database info include("conf_global.php"); $dbhost = $INFO['sql_host']; $dbuser = $INFO['sql_user']; $dbpass = $INFO['sql_pass']; $dbname = $INFO['sql_database']; //--------------- header('Content-type: text/plain'); $dbconn = mysql_connect($dbhost, $dbuser, $dbpass) or die( mysql_error() ); $db = mysql_select_db($dbname) or die( mysql_error() ); $sql = "ALTER DATABASE `".$dbname."` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci"; $result = mysql_query($sql) or die( mysql_error() ); print "Database changed to UTF-8.\n"; $sql = 'SHOW TABLES'; $result = mysql_query($sql) or die( mysql_error() ); while ( $row = mysql_fetch_row($result) ) { $table = mysql_real_escape_string($row[0]); $sql = "ALTER TABLE $table DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci, CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci"; mysql_query($sql) or die( mysql_error() ); print "$table changed to UTF-8.\n"; } mysql_close($dbconn); ?>
  3. Well in that case you could use IP.content en create a custom php page with that
  4. Change the load order of your siderbar hooks (the upper it will be the firster it will load)
  5. I don't know how the css is loading in 4.X but the earlier you get it into a page (<script linkbla bla bla>) it will be prioritized
  6. Isn't there already an uploader on every post you make? If that's what you not looking for, why not use IP.Downloads?
  7. That's part of a css design, the image is probably z-indexed on the back and the ad image is in front. Can't help, have adblock :D
  8. That's because your CSS isn't loading. Check all your URL paths. You can change upload path in your configurations, and forum path in conf_global
  9. Oh dang, no surprises his website is getting ddosed :( :( :(
  10. No like I mean, some tables can be characters limited
  11. Have you tried looking if the sql table for the nickname is character limited?
  12. Well it's pretty self explanatory, does your host have any limits (Bandwith, hard drive etc) and are they reached?
  13. ​If you use an official IP.Board (with a valid license key), do no use nulled applications. on the other hand if you have a nulled IP.Board, use only nulleds applications, especially when you're talking about IP apps (content, chat, etc)
  14. Wow, ugh, chill. http://codepen.io/anon/pen/MwOPaJ
  15. ​No the free version has most of the features you'll ever need, the paid version doesn't really have enough features to be worth it unless you're a larger company. ​Yeah but like the thing where people can have live support and stuff, you need to pay for it cause you're limited in tickets
  16. If you're like me, using a lot of apps and hooks, i'd advice you to wait few weeks until every app is up to date
  17. ​When the callbacks to IPB are nulled, no, they have no control over what you're doing
  18. Even tho you have to pay for it !
  19. For the line it's basically css and for the other one its a complete design of the <li> in css
  20. Do not use <strong> as a div. It's a text modifier and shouldn't be used as root of divs (<strong><div></div></strong>) Delete all your <strong style="color:#1c4c56"> (you have a lot of them that are empty, wtf?) located in <div id="ipsLayout_contentWrapper">.Did you put those in a foreach xD? And your forum works just fine
  21. ​I didn't knew that one sounds pretty cool.
×
×
  • Create New...