Jump to content

Leaderboard

  1. Skreamzja

    Skreamzja

    Community Regular


    • Points

      1

    • Posts

      579


  2. -Cookie-

    -Cookie-

    Community Regular


    • Points

      1

    • Posts

      771


  3. Phun

    Phun

    Retired Staff


    • Points

      1

    • Posts

      1,119


  4. Root™

    Root™

    Newbie


    • Points

      1

    • Posts

      3


Popular Content

Showing content with the highest reputation on 10/17/2013 in all areas

  1. So for some stupid reasons IP Board gets the max file size number from the php.ini file on your server, but some hosting providers do not allow the user to mess with the php.ini or they trouble you a lot before changing it. And plus, IP board didn't realize that some hosting plans are volume based and the admin might want to limit the file size to save the space. Anyways, below is a method of changing your Max File Size in post attachment through the source code instead of the need to change php.ini Go to adminsourcesbasecore.php Look for this: This will be somewhere near line 2865 /** * Grab max post upload * * @return integer Max post size */ static public function getMaxPostSize() { $max_file_size = 16777216; $tmp = 0; $_post = @ini_get('post_max_size'); <-- This function is grabbing the value from your server $_upload = @ini_get('upload_max_filesize'); <-- This function is grabbing the value from your serverChange: $_post = What_Ever_Size_In_Bytes; $_upload = What_Ever_Size_In_Bytes;Example: $_post = 2097152; (This is 2MB) $_upload = 1048576; (This is 1MB)1 MB = 1024 KB 1KB = 1024 bytes So 1MB = 1024 * 1024 Note: Keep $_post Greater than $_upload in bytes. Save and Upload. done! Note: Don't forget to clear your browser's cache to see the change.
    1 point
  2. 1. Go to: ACP > Looks and Feel > Skin Name > Board Index > boardIndexTemplate 2. Find: <td class='col_c_stats ipsType_small'> <ul> <li><strong>{$forum_data['topics']}</strong> {$this->lang->words['topics']}</li> <li><strong>{$forum_data['posts']}</strong> {$this->lang->words['replies']}</li> </ul> </td> 3. Replace With: <td style='width: 7%;'><span class='nstatsNumber'>{$forum_data['topics']}</span><span class='nstatsText'>{$this->lang->words['topics']}</span></td><td style='width: 7%;'><span class='nstatsNumber'>{$forum_data['posts']}</span><span class='nstatsText'>{$this->lang->words['replies']}</span></td> 4. Go to: ACP > Looks and Feel > Skin Name > CSS > ipb_styles.css 5. Add: .nstatsNumber, .nstatsText {display: block;text-align: center;color: black;line-height: 23px;text-transform: uppercase;font-size: 16px;}.nstatsText {color: black;font-size: 11px;} Before: After:
    1 point
  3. Hello, I name Hai, nicknamed root, nice to know Webflake
    1 point
  4. Make sure you set up a sitemap and submit it to google webmaster tools. Also stuff gets indexed depending on popularity, age, visits, etc.
    1 point
  5. There was no indication on the original post saying he was looking for a payed job to be done, So really you jumped the gun a little fast. If he wanted to pay someone to do the job, don't you think he would pay for it/post it in the marketplace? hmm
    1 point
This leaderboard is set to New York/GMT-05:00
×
×
  • Create New...