Jump to content

Gm Prodigy

Frost
  • Posts

    25
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by Gm Prodigy

  1. mysqld.sock file doesn't exist in \temp\. I'm assuming it's created when the mysql server is running and since the file isn't there then something isn't setup properly. You'll need to read your mysql logs to see why it's not starting up.
  2. You shouldn't manually edit the origin php files, changes will be lost when you update the forums. It's better to create a hook or just edit the template in ACP if you're lazy.
  3. {{if \IPS\Member::loggedIn()->member_id}} {expression="\IPS\Output::i()->redirect(\IPS\Http\Url::internal('app=forums&module=forums&controller=index'))"} {{endif}} Edit the code of the template you want this code to run on, and search loginForm then add the code at the bottom of the page and save. It will redirect users to the forums if they are logged in
  4. you might need to enable mod_remoteip but being that it's shared hosting they probably won't do it for you. contact your host to see if they might ¯\_(ツ)_/¯
  5. In your IPS ACP head over to System->Setting->Advanced Configuration Click the first tab that says Server Environment then look for something that says "Trust IP addresses provided by proxies?" and toggle it on. You could also search proxy in the search bar.
  6. When the cheat gets detected you can insert the data into a MySQL table, then get the forums to read the data or get the data from an API. you can then create a html block on the forums and add some code to check if the cheat is detected or not {$status = SELECT * FROM table_name} {{if $status == 1}} HTML to output if true {{elseif $status == 2}} HTML to output if expression is true {{else}} HTML to output if others were not true {{endif}}
  7. Gm Prodigy

    Responsive

    because the theme you're using isn't supported for 4.5
  8. Well you can use this guide https://invisioncommunity.com/news/product-updates/43-sign-in-from-other-sites-using-oauth-r1058/ or add a plugin on your forums that generates a new key, when the user is signed in he sees this key and uses it to login on the application. You'd also make sure the user can click a button to regenerate the key. To help with brute force attacks you could generate 2 matching keys to login. There are many ways of doing it.
  9. Yeah, he's not hard to find. He's in the official discord. I spoke to him about the application and I also spoke to the owners. They seems cool with it.
  10. You're wasting your money if you buy that. You can easily set it up for free in about 10mins or less. https://widgetbot.io/
  11. You can change roles using the rest api, but to change titles you'll need to do some modifications to an app. probably a better way to do this but this can get you started. namespace IPS\app name goes here\api; /* To prevent PHP errors (extending class does not exist) revealing path */ if (!\defined('\IPS\SUITE_UNIQUE_KEY')) { header((isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0') . ' 403 Forbidden'); exit; } class _settings extends \IPS\Api\Controller { /** * GET /app name goes here/settings/{id} * Get information about a specific member * * @param string $member_id m * @throws 1C292/2 INVALID_MEMBER_ID The member id does not exist * @return array specifc core_member info */ public function GETitem($member_id) { try { $results = \IPS\Db::i()->select('*', 'core_members', array('member_id=?', $member_id)); $info = array(); foreach ($results as $k => $v) { $info[$k] = $v; } if (empty($info)) { throw new \IPS\Api\Exception('INVALID', '1XBH292/2', 404); } return new \IPS\Api\Response(200, $info[0]); } catch (\OutOfRangeException $e) { throw new \IPS\Api\Exception('INVALID_MEMBER_ID', '1XBH292/2', 404); } } /** * POST /app name goes here/settings/{member_id} * Get information about a specific member * * @param string $member_id members id * @apiparam string Member_Title changes member title * @throws 1C292/2 INVALID_MEMBER_ID * @return void */ public function POSTitem($member_id) { $results = \IPS\Db::i()->select('*', 'core_members', array('member_id=?', $member_id)); $info = array(); foreach ($results as $k => $v) { $info[$k] = $v; } if (empty($info)) { throw new \IPS\Api\Exception('INVALID_MEMBER_ID', '1XBH292/2', 404); } $worked = true; if (isset($_GET['rank'])) { try { $query = \IPS\Db::i()->query("UPDATE core_members SET member_title='" . $_GET['rank'] . "' WHERE member_id='$member_id'"); if ($query == false) { $worked = false; } } catch (\InvalidArgumentException $e) { throw new \IPS\Api\Exception('Rank may not have been updated', '2F295/7', 400); } } return new \IPS\Api\Response(200, $worked ? "OK" : "Failed"); }
  12. head over to Cpanel and and edit your php.ini file Find these lines: upload_max_filesize = 2M post_max_size = 8M Change to (Example) upload_max_filesize = 16M post_max_size = 32M
  13. Gm Prodigy

    Help!

    An offshore VPS is the best option in the case, there are even a few services which offers anonymous meaning just a valid email is enough. If you don't brag about your forums been nulled or being linked to any IPS nulling community then you're probably going to be fine. Even when reporting forums, IPS takes months if they ever do something about it... unless for whatever reason IPS has their sites on you you're probably fine. I've helped may forums and hearing someone been taken down in 4 days is a first for me. "HostBlast" is a pretty cheap host and I'm just assuming they've had DMCA request from IPS before. I really don't think IPS even knows about your forums may be "HostBlast" removed it because they saw something like the name of a folder containing the word nulled which is on the installation folder if you uploaded the whole thing. Edit: If you can afford an IPS licence but can't afford a host I'd probably think your forums is nulled.
    Had a little issue with this theme but maybe that's just a problem with my installation. Seems to work with most people but not me?
  14. Version 1.0.5

    49 downloads

    Plugin that creating automatic tags for topics in selected forums
  15. Version 1.2.0

    213 downloads

    About This File (1.)2.0 is here, no idea why we jumped to far but why not! http://area-games.ro/demo Demo account: Username: test, password: test Please pay attention to the ACP instruction while working with the slider! For the slider we chose let your work with JSON to allow you to add as many slides as you want! This is a example of JSON for your slider: { "Crankchips": { "text": "This is v1.0", "button": { "text": "Check this out!", "link": "https:\/\/www.puffysticks.com\/" } }, "Crankchips v2.0": { "text": "This is v2.0" } } This is a example of JSON code for a slider with 2 slides. The objects inside the first (main) json ( defined by an opened curly bracket => { ) must have this specific form: "Crankchips": { "text": "This is v1.0", "button": { "text": "Check this out!", "link": "https:\/\/www.puffysticks.com\/" } } "Crankchips": { "text": "This is v1.0", "button": { "text": "Check this out!", "link": "https:\/\/www.puffysticks.com\/" } } Where "Crankychips" is the title of the slide, and the object after the colon ( : ) are the properties of the slide, the first property is "text" which represents the content of your slide, the second property ( which is also an object ) is "button" which has properties too, those being "text" ( again but as property of the "button" object ) which represents the button text on which users will click to read more about your slide and the "link" property which represents the link where the users will be sent to when clicking the button. The title and property of every slide should be passed through an online JSON escape tool like this one! If you are one of the first 10 buyers contact us about a freebie. It's free!
  16. Version 1.0.6

    36 downloads

    Couldn't get better pictures because the won't load on the site https://invisioncommunity.com/files/file/8750-black-friday-sale-xpaider/ Works with the latest versions of these applications: IP.Board 4.3.x Admin Control Panel IP.Commerce IP.Pages IP.Downloads IP.Gallery IP.Blog IP.Calendar Included in the download: Theme XML file for installation All fonts used throughout the theme logo.psd team-icon.psd IBTheme copyright and license agreement Admin CP is themed to match forums
  17. Version 1.3.0

    38 downloads

    Pages SuperDocs is a set of responsive Pages templates. It is loosely based on the design of the IPS Developer Documentation section, but the concept has been extended into a turnkey solution for all sorts of category-based Pages databases. Live Demo What’s needed: IPS 4.2 or 4.3 in its most recent version with the Pages application A pages database that uses Categories. (Up to 4 levels can be shown in the Record View navigation) What’s recommended: Pages SuperDocs is compatible with the Pages Category Images plugin. Upload images for your database categories with it and Pages SuperDocs will make your database look even more appealing (See screenshots for a comparison). Without this plugin, you will only be able to change the header image of the SuperDocs templates. Which templates are included: A category listing template to be used as the homepage for your database. It features a header box with the database title and description on a user-defined color gradient and background image. A Listing template replacing the dull forum listing design that is used by default. Both your categories and records are shown in a simplistic and beautiful grid layout. If you have the Pages Category Images plugin, your category images will be shown here as well. A unique Record View template. It supports all the stock features (Ratings, reactions, comments, reviews …), but adds a useful navigation tree at the side. With it, users can easily jump between individual records. The main level is always shown. All categories and records within a main level entry will be shown automatically, once you open records within that category. For database with many records per category, the output of records in the navigation can be suppressed. Note: You can use the templates for any number of databases, but the settings will always apply to all SuperDocs templates. Detailed Feature Description and Notes: The templates are fully responsive but work best on pages without a sidebar, since the included navigation in the record view adds a column to the layout. The templates come with several options you can easily adjust through the included settings plugin. Base color—Used for the category boxes and the gradient Gradient color—When different from base color, creates a gradient for the header area Category image aspect ratio—Only used if you have the category image plugin installed. Box font color—The font color in the header area sitting over the box and gradient colors Active color—Link color of the active record in the SuperDocs navigation Use custom header image—Link a file to be shown in the header area Author in Record View—show/hide author in record view Levels of Records—How many levels of records are shown in the navigation? Category box text alignment—left/center/right alignment of text in category boxes
  18. Version 1.1.2

    58 downloads

    Pages SuperDocs is a set of responsive Pages templates. It is loosely based on the design of the IPS Developer Documentation section, but the concept has been extended into a turnkey solution for all sorts of category-based Pages databases. Live Demo What’s needed: IPS 4.2 or 4.3 in its most recent version with the Pages application A pages database that uses Categories. (Up to 4 levels can be shown in the Record View navigation) What’s recommended: Pages SuperDocs is compatible with the Pages Category Images plugin. Upload images for your database categories with it and Pages SuperDocs will make your database look even more appealing (See screenshots for a comparison). Without this plugin, you will only be able to change the header image of the SuperDocs templates. Which templates are included: A category listing template to be used as the homepage for your database. It features a header box with the database title and description on a user-defined color gradient and background image. A Listing template replacing the dull forum listing design that is used by default. Both your categories and records are shown in a simplistic and beautiful grid layout. If you have the Pages Category Images plugin, your category images will be shown here as well. A unique Record View template. It supports all the stock features (Ratings, reactions, comments, reviews …), but adds a useful navigation tree at the side. With it, users can easily jump between individual records. The main level is always shown. All categories and records within a main level entry will be shown automatically, once you open records within that category. For database with many records per category, the output of records in the navigation can be suppressed. Note: You can use the templates for any number of databases, but the settings will always apply to all SuperDocs templates. Detailed Feature Description and Notes: The templates are fully responsive but work best on pages without a sidebar, since the included navigation in the record view adds a column to the layout. The templates come with several options you can easily adjust through the included settings plugin. Base color—Used for the category boxes and the gradient Gradient color—When different from base color, creates a gradient for the header area Category image aspect ratio—Only used if you have the category image plugin installed. Box font color—The font color in the header area sitting over the box and gradient colors Active color—Link color of the active record in the SuperDocs navigation Use custom header image—Link a file to be shown in the header area Author in Record View—show/hide author in record view Levels of Records—How many levels of records are shown in the navigation? Category box text alignment—left/center/right alignment of text in category boxes
  19. Well I know you can make php blocks and add them to your pages but I'm not really sure how to use them. is there any way to not use the blocks and add php or is there someone who could help me to get a block working like connecting to another database and performing simple sql queries. I'd rather make a custom page an integrate it into IPS but it seems that only HTML pages work like that or maybe I'm doing something wrong. <?php include 'includes/database.php'; include 'includes/settings.php'; if(!isset($_SESSION)) { session_start(); } if(!isset($_SESSION['username'])) { echo' <script language="javascript"> window.location.href="index.php" </script> '; } if(isset($_POST['deletetoken'])) { if(isset($_GET['id'])) { $id = $_GET['id']; $delete_token = mysqli_query($con, "DELETE FROM `tokens` WHERE `id` = '".$id."'"); if($delete_token) { echo '<meta http-equiv="refresh" content="0.00001;url=tokens.php">'; } } } $tokens = mysqli_query($con, "SELECT COUNT(1) FROM `tokens`"); $tokens_row = mysqli_fetch_array($tokens); $tokens_total = $tokens_row[0]; $today = time("Y-m-d"); ?>
  20. Its made using WidgetBot.io
  21. I've been thinking of upgrading my main forum and I was wondering if it's worth the upgrade. I know it hasn't got much plugins but is it more safe than 4.2 interms of security?
×
×
  • Create New...