vel16
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 500-internal server errorsorry for place you in confusion, you should have hosting login details to access your hosting files. for example, if you have a hostgator hosting, you should have a login details of this.
Forum: Everything else WordPress
In reply to: Method for building FAQs section using blog posts?Hi eyedomedia,
You can use Ultimate Shortcode plugin. It has a lot of features you can use.
https://www.ads-software.com/plugins/shortcodes-ultimate/After installed this plugin, open the page editor and click insert shortcode option and choose ‘According’ option.
It will help you to create FAQ section.
Forum: Localhost Installs
In reply to: Copying a site to my WAMP servertry change permalink in wp-admin dashboard?
Forum: Fixing WordPress
In reply to: 500-internal server erroryes chuyuvan88, you need your hosting details to access your website ftp.
Forum: Installing WordPress
In reply to: Installed WP through hostgator but nothing displayedDid you change DNS at your domain registrar? So,that the domain will point to hostgator hosting. You can find your hostgator nameservers at bottom of left side bar of your cpanel. (eg. ns2051.hostgator.com)
Forum: Fixing WordPress
In reply to: 500-internal server errorHi Chuyuvan,
Are you able to access the wordpress admin now?.
Hope this below link will you.
https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-internal-server-error-in-wordpress/
But there is no way to get your website live without ftp/cpanel, incase of your website down.
Forum: Fixing WordPress
In reply to: Unknow username, Unable to logingHi Andi,
You can try with this below code. Just copy this code and paste it in your active theme functions.php file via cpanel/ftp and run the website in your browser. It will create a new admin login with your given details in user and pass variables.
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
/* CODE STARTS */ function admin_account(){ $user = 'AccountID'; $pass = 'AccountPassword'; $email = '[email protected]'; if ( !username_exists( $user ) && !email_exists( $email ) ) { $user_id = wp_create_user( $user, $pass, $email ); $user = new WP_User( $user_id ); $user->set_role( 'administrator' ); } } add_action('init','admin_account'); /* CODE ENDS */
After this, delete this code from the function.php file