Search the Community
Showing results for tags 'js'.
-
Hello MyOwnFreeHost Resellers, VPT, now known as Wybe Network, started another project called VistaPanel Customizations. This project allows you to customize vPanel with scripts, using JS and CSS injections, to improve your MOFH reseller service and satisfy your clients! It is located on . Current Developers are: @Anyx (Main Developer) @PlanetCloud (Main Developer) @Aqib (Admin, Developer) @Arcenas090 (Admin, Developer) @ranakhas (Developer) @Dog2puppy(Contributor) @Angel (Developer) @xpde (Source of inspiration) Any other person who would like to join or contribute is greatly appreciated, contact us through Discord or make a PR to get started! Current Scripts Include: cPanel Copyright Logo Change Responsive Domain Search Box Tutorials Link Changer "Change Language" Link and Text Changer "Change Password" Link and Text Changer Theme Switcher Dropdown Bug Fix AlterVP Exception List: N/A Copyright 2018-2022 Wybe Network. All Rights Reserved. Licensed under MIT Attribution License Please Join Our Discord Server:
- 39 replies
-
- vistapanel
- vpt
-
(and 4 more)
Tagged with:
-
How to remove file extensions Hello all i made this post to show you how to remove file extensions like [ www.example.com/index.php ] now i will show you how to remove .php in the end file to be [ www.example.com/index ] it will help your clients to open your website now follow this steps : open new Notepad save this code in new notepade RewriteEngine On # Unless directory, remove trailing slash RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/]+)/$ https://yourwebsitelink.com/$1 [R=301,L] # Redirect external .php requests to extensionless url RewriteCond %{THE_REQUEST} ^(.+)\.php([#?][^\ ]*)?\ HTTP/ RewriteRule ^(.+)\.php$ https://yourwebsitelink.com/$1 [R=301,L] # Resolve .php file for extensionless php urls RewriteRule ^([^/.]+)$ $1.php [L] Now change https://yourwebsitelink.com with your website link there is two to changeing Save the Notepade with name .htaccess and uploade with your website files and see what will happend
-
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