felgcastro
Forum Replies Created
-
Forum: Plugins
In reply to: [Membership 2] Registration formYes. Plugin WP-SpamShield is the culprit. Do you know of another anti-spam plugin that does not come in conflict with Membership 2?
Thank you very much for your help.
Forum: Plugins
In reply to: [Search & Replace] SettingsJust to have this clear. Once I change strings inside the database (Save changes to the Database) I still can come back to my backup ?
Forum: Localhost Installs
In reply to: Call to undefined FunctionI am a bit new in this topic.
How do I turn “magic_quotes_gpc” off and where is the php.ini file ?
Thank you
Forum: Networking WordPress
In reply to: Network problemsHello Mika
Yes. The AllowOverride All did the trick.
Thank you very much
Felipe
Forum: Networking WordPress
In reply to: Network problemsI found the “AllowOverride” directive in several places.
Should it be set to “All” in all the places ?Forum: Networking WordPress
In reply to: Network problemsYes allowoverride is set to “All”
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride AllForum: Networking WordPress
In reply to: Network problemsYes, pretty permalinks currently work in the main site.
Forum: Networking WordPress
In reply to: Network problemshttps://localhost/wordpress/wp-admin
takes me to the dashboard of my main site.
There is no problem here. From my main site I should be able to
access the other sites.Forum: Networking WordPress
In reply to: Network problemsIf I go:
https://localhost/wordpress/calidanceI get : Oops! This page appears broken. HTTP 404 – File not found.
Forum: Networking WordPress
In reply to: Network problemsYes. This how access my network control panel
https://localhost/wordpress/wp-adminThis is how I try to access a site within the network
https://localhost/wordpress/calidance/wp-admin/Forum: Networking WordPress
In reply to: Network problemsI have WordPress installed in a local server.
.htaccess file :#BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] </IfModule> # END WordPress