MCLMarcos
Forum Replies Created
-
Hello Michael!
Thanks by the plugin!
A problem is occurring: After the last update it stopped working.
What could have happened?
I did a test with a fictitious user and noticed that he no longer sends email activation and the User is sent to pending.
Thank you for your attention.
Cheers
Forum: Plugins
In reply to: [BuddyPress Docs] BP Docs doesn't support WordPress 3.7 nowBoone
Thanks for the effort in adjusting
Now updated the plugin and the error continues
In my site the URL is http:/exemplo.com.br/members in all Docs
On the other hand, if http:/exemplo.com.br/docs/DocName digit, as before, the error occurs 404
Thanks
Forum: Plugins
In reply to: [BuddyPress Docs] BP Docs doesn't support WordPress 3.7 nowBoone Gorges Hello!
I understand what you said.
I had everything working normally in BP Docs on WP 3.6 with various plugins installed.
After upgrading to WP 3.71, access to documents lead to 404.
It is as if the page does not exist.It can edit and view the historic but it is when you read the error happens 404
Now updated to version 1.5.3 BP Docs and try to access the documents he is redirecting to / members /.
It’s really weird.
I understand the difficulty.
I hope I helped you
cheers
Forum: Plugins
In reply to: [BuddyPress Docs] BP Docs doesn't support WordPress 3.7 nowI also have problems! After updating the worpress 3.7 and BuddyPress update docs I have received in all 404 pages of documents. How can I fix this?
Forum: Plugins
In reply to: [BuddyPress Docs] Getting an ErrorHello all!
Apparently $uri is coming to NULL and is thus sent the warning message.
For those who have PHP version 5.2 can try this alternative for now in / public_html / wp-includes / functions.php:
Go to the line 658 and enter the following codeif (gettype ($uri) == “NULL”)
??????????? $uri = “”;The end result will be as follows:
/* code added */
if (gettype ($uri) == “NULL”)
??????????? $uri = “”;
/* end code added */if (0 === stripos (‘https://’, $ uri)) {
$ protocol = ‘https://’;
$ uri = substr ($ uri, 7);
} elseif (0 === stripos (‘https://’, $ uri)) {
$ protocol = ‘https://’;
$ uri = substr ($ uri, 8);
} else {
$ protocol =”;
}
.
.
.I think that helps for now.
I hope to have cooperated.
cheers to all