Mian Shahzeb
Forum Replies Created
-
Have a deep look at the link
Hi [username],
Thanks for registering on [www.example.com] Your account is now active.
To login please fill out your credentials on:
https://www.example.com/login/Your Username: [username]
Have a nice day!
Wordpress send the link when you visit that link, there you can set up the password.
What I got in demo:
Username: xxx
To set your password, visit the following address:
<https://example.com/wp-login.php?action=rp&key=xxxxxxxxxx&login=xxx>
Alternatively, while adding new user form. Hit the button Show Password button and you can set the password or after adding you use editing option to override any password.
Forum: Plugins
In reply to: [Seo 301 Meta] Wildcard redirects aren’t workingYou should try this:
/pages/news-and-events/*
go to
https://example.com/events/*
This is the correct format for wildcard redirects.Forum: Plugins
In reply to: [Seo 301 Meta] Wildcard redirects aren’t workingHi wpclee,
Please try this format to use wildcard redirects for only subpages.
Request:
/*
Destination:
your-domain-name.com/*
Try this format to use wildcard redirects for whole website.
Request:
*
Destination:
your-domain-name.com/*
It will redirect all requests from old-name.com/hello to new-name.com/hello
Forum: Plugins
In reply to: [Yoast SEO] Can’t find Focus Keyword Fieldping…
Forum: Reviews
In reply to: [Seo 301 Meta] Works fineThank you for rating 5/5 ??
Forum: Fixing WordPress
In reply to: Fresh installation, WP-ADMIN redirectionWell i am confuse, if I can’t login into admin panel than how can i save permalinks?
When i open dashboard receive error which i just mentioned below up.
anyhow, the latest wordpress version 4.5.3 package’s .htaccess copy paste method can help to get rid of this issue.
thanks for your informational reply.Forum: Fixing WordPress
In reply to: Fresh installation, WP-ADMIN redirectionThere was missing .htaccess in wordpress.zip
I copied from old dir and paste into new domain. It’s working now.Forum: Fixing WordPress
In reply to: Fresh installation, WP-ADMIN redirectionhere is screenshot for wp-admin https://yadi.sk/i/WOQJlAStuQDE4
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack Connectivity ErrorError received while Approving to WordPress -> Jetpack
It should redirect to homepage of Admin panel but i stuck at 403/Forbidden.
This is a Multisite Network, somewhere maybe it happening from last update of wordpress.
Well yes, let me ask from host if they have any issue with Jetpack connectivity but i don’t think so..Forum: Networking WordPress
In reply to: multisiteWelcome to WordPress community and congrats that you just install your first site.
Yes, it is possible with Multisite. You must have good server with separate ip and good knowledge of configurations.Forum: Fixing WordPress
In reply to: Remote Media or CDN for Media[UPDATE]
I found a plugin on github and it’s working fine. Successfully upload on remote ftp host, but couldn’t able to fetch media through Wp-admin media library.
https://i.stack.imgur.com/CK8Ri.pngForum: Fixing WordPress
In reply to: URL Redirect php or .htaccess in WordPressThanks nisha, i will take give a try too.
Anyhow .htaccess solution is working perfect for this problem.Forum: Fixing WordPress
In reply to: Delete comments from WordPressthanks.
You just saved my day.Forum: Fixing WordPress
In reply to: URL Redirect php or .htaccess in WordPressthanks this one works..
another solution i got for this.Redirecting pages below /blog/
It should be as simple as a .htaccess in your domain root directory (where index.php lives) with the following contents:RewriteEngine on
RewriteRule ^blog/(.*)$ /$1 [L,R=301]
Note that RewriteEngine on is required only once per .htaccess file, so skip this if it is present already.The RewriteRule itself matches all URL beginning (^) with blog/ and catches everything following until the end ($). The caught part is stored in the reference $1.
This reference is thereafter used in the redirection target, as /$1.
L means that no further rules in the .htaccess are evaluated.
R=301 redirects using a HTTP/1.1 301 Permanent redirect, which is desirable for SEO and redirects all visitors to the new URL.
Redirecting /blog itself
In addition to the above insertRewriteRule ^blog(/?)$ / [L,R=301]
Forum: Fixing WordPress
In reply to: How do you created a page with "/robots.txt" URL at the end?You can’t add robot.txt as WordPress page you must have to create this page from your FTP.
As we can see .txt is a extension and permalink won’t allow.
Before creating Robot.txt you must have a good knowledge of it’s usage.