Jump to content
[MUST READ] Forum Rules ×

xpde

Senior Members
  • Posts

    71
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by xpde

  1. 4 years ago around this time, altervp was created. Thanks to the wonderful community, it has been revived. Kudos to @Anyx, he deserves a formal hug. Check it out here!
  2. holy moly, im back

    1. Anyx

      Anyx

      Welcome back!

       

  3. just realized this account is over a year old

  4. Nah, you're good man. I'm just trying to help another person out.
  5. That code is specifically for removing PHP. To remove the .html extension, just rewrite the code a little bit RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f RewriteRule ^(.*)$ $1.html [NC,L]
  6. It's code, what are you expecting screenshots of?
  7. Added (8c291b4) - Thanks for telling me that. I don't ever use VPThemes because I have a passion for designing. However, I don't release my panel designs.
  8. Howdy Everyone, Here's a free little tool for your cPanel/VistaPanel. It's written in JS and currently maintained under the MIT License. This didn't waste much of my time, so no need for any compliments. This script was inspired by VistaPanel Customizations. Features Change the Title Change the Protocol Change the Logo Change the Theme (Kudos to VPThemes for the CDN and Themes, obviously) Add your own Credits (#93dbba9) Organized Code Clean Setup usage Usage Apply this code anywhere const AlterVP = { title: "AlterVP - cPanel", logo: "logo.png", ssl: 1, theme: "dark", credits: { desc: "AlterCP", logo: "small-logo.png" } }; Apply this code to bottom <script src="//rawgit.com/xpde/AlterVP/master/altervp.js"></script> Source Suggestions? Reply below. Thanks, @xpde
  9. I came back on the forums just to reply to this. Thanks for your answer, and I appreciate everything you do for the forums.
  10. Tell that to the people who said otherwise
  11. If you enable cloudflare on your webhost, it will mess with the registration and make it unavailable for users to sign up.
  12. No problemo, comerade.
  13. I don't you understood my previous statement.. You can still type beyond the maxlength before submit. The JavaScript snippet prevents this.
  14. For the JS question(used in default mofh signup.php) thats so users cant type anymore than default max input. For the variable statement *$title* - No, I once again disagree and find that to be useless due to the fact that you can modify the title to whatever you want it to be, takes under 30 seconds. No need for useless variables. This is just a design. And thanks for the compliment.
  15. Basic Form Design ~ This is just a general design by yours truly. I hope you guys enjoy it ~ ~ Instructions ~ Copy the code stated below Create a PHP document (Preferably signup.php) Paste the code to the document Upload to your MOFH Website via FTP ta-da, nice looking signup page ~ Here's the code for the page ~ you're welcome
  16. No. I personally disagree with your opinion.
  17. advertise your project elsewhere Cool. That's a useless reply. https://www.byet.net/index.php?/topic/2371-remove-i-from-your-domain-php/
  18. Since people wanted to complain about this stuff, why not just remake it in a language they might understand more fluently. This code snippet will destroy of your pesky GET parameter (?i=[1-100]). Here's how to do so - Create the Document Go into your FTP and create a file (preferably ~ deleteGET.php) Copy and paste this code into the document <?php // Just simply add your own GET parameters to remove. $toRemove = array( 'i' => '', 'anotherGetParam' => '' ); $removeParam = array_intersect_key( $toRemove, $_GET ); // Stabilize website / avoid loop if(sizeof( $removeParam ) > 0 ) { $redirectUrl = $_SERVER[ 'REQUEST_URI' ]; // Server Request foreach( $removeParam as $key => $val ) $redirectUrl = preg_replace( '/([?&])' . $key . '=[^&]+(&|$)/', '$1', $redirectUrl ); // Removes every parameter set in $toRemove header( 'Location: ' . $redirectUrl ); // Redirects you to final size } ?> Include the document go into your whatever document you want (typically your index.php) Copy and paste this code to the top of the page <?php include 'deleteGET.php'; // Change to the directory and filename of your code. ?> Vwolla! Now you can use Ads, WordPress, and ETC. without having to deal with all the GET Parameters getting deleted/hidden.
  19. ERR_SSL_VERSION_OR_CIPHER_MISMATCH - This error is obtained through your Secure Socket Layer (SSL), I don't believe it has anything to do with the code inputted into your .htaccess. For more information, check this Medium Post
  20. xpde

    Tidal

    He said he was no longer gonna be active on here. Head over to our Community Discussion @ Discord
  21. @index @Merc 20 Credits to both of you - I'm glad you guys decided to join this community as well!
×
×
  • Create New...