berseck
Forum Replies Created
-
Wanna know a good reason for not doing that??
Simple… the user won’t be able to login using his email if you want to… because it will save with a escape on the database and you won’t be ever able to check if that is valid or not…
And for updates in future you shouldn’t change the wordpress core files…
Forum: Fixing WordPress
In reply to: get user blog idForget about it I I was wrong I just added:
get_blogs_of_user($user->ID, true);And everything start working
Cheers,
Thiago CruzForum: Networking WordPress
In reply to: User deleteI deleted them with one query…
But Ty for the help anyway.
cheers
Forum: Networking WordPress
In reply to: User deleteYeah I know I can do that…
But my users are able to delete themselfs…
Is there anycode that I can do to able them to delete themselfs completely???Thanks
Forum: Fixing WordPress
In reply to: Allowing editor access pluginsfor those how would like to know how…
/* USERS CAN */
get_role(‘editor’)->add_cap(‘read’);
get_role(‘editor’)->add_cap(‘manage_polls’);
get_role(‘administrator’)->add_cap(‘manage_polls’);As an example
Cheers,
Thiago CruzForum: Networking WordPress
In reply to: Problems on MultiSite configurationI found the issue
Buddypress or other plugin was killing the whole update…
If someone read this… PLEASE while creating new website TURN OFF ALL PLUGINS!!! just in case.
And only enable them after creating all new websites not after finishing network.
Thanks for all your help Ipstenu and Andrea
Cheers,
Thiago CruzForum: Networking WordPress
In reply to: Problems on MultiSite configurationOk my root user for the server has all permissions.
And has all permissions for files like 777 for all files and still not working.What could possible be the problem????
Thanks,
Thiago CruzForum: Networking WordPress
In reply to: Problems on MultiSite configuration???
Listed on my wp-config???
Any extra configuration that I need to enter?Because as far as I looked into the foruns never heard anything that I need to add extra stuff else than this:
define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'dev.mysite.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 );
And this:
define('WP_ALLOW_MULTISITE', true);
Is there anything else that I should add?
Thanks,
Thiago CruzForum: Networking WordPress
In reply to: Problems on MultiSite configurationYes you were right I go this message on wp-admin:
One or more database tables are unavailable. The database may need to be repaired.
So I need to add to my subdomains permissions to change DB as well right?
I will do that and see what happens.Thanks,
ThiagoForum: Networking WordPress
In reply to: Problems on MultiSite configurationOk im back for more feedback.
I added wildcards to make it work, but when I did it now I got: Error establishing a database connection.
When it should use the same info for my website.What is going on???
Thanks,
Thiago CruzForum: Fixing WordPress
In reply to: Permalinks for pagesI solved my problem with this:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_URI} profile/ RewriteRule ^profile/([1-9]?[0-9]+)$ /profile/$1/ [R] RewriteRule profile/([1-9]?[0-9]+)$ /profile?id=$1 RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
And them, only thing that I need to do I use $_GET to get my ID on my page.
Thanks,
berseck