wpfranner
Forum Replies Created
-
Forum: Networking WordPress
In reply to: MultiSite–>All Admins cannot login (normal users can)Ha! Ipstenu works at Dreamhost… maybe she did a bit’o magic for you 🙂 Nice to hear you are up and running!
Forum: Networking WordPress
In reply to: MultiSite–>All Admins cannot login (normal users can)Just trying something…
Try increasing the memory_limit in php.ini to something BIG – like 512M – remember to restart the Apache after.Take a look at this: http://hakre.wordpress.com/2010/08/17/mysteries-about-the-wordpress-memory-limit/
Forum: Networking WordPress
In reply to: MultiSite–>All Admins cannot login (normal users can)sorry – double post….
Forum: Networking WordPress
In reply to: MultiSite–>All Admins cannot login (normal users can)So my guess is that there is a memory issue… Did you recently make any changes ie. installing new plugins or add more sites?
I´m thinking that loading the admin user takes up to much PHP memory and therefore times out…
Can you get to the PHP.ini and increasing the memory limit?
Forum: Alpha/Beta/RC
In reply to: Add text after inserting an image into postTY Dominik!
Forum: Alpha/Beta/RC
In reply to: Add text after inserting an image into post+1
I have detected the same problem. After testing different browsers, this is the results:Chrome v22: After inserting pic/gallery it is only possible to ad text if you convert from visual editor to text editor.
Firefox v16: After inserting pic/gallery the curser is placed in the middle of the editing frame but when typing, the text comes up in the right place.
IE v9: No problems detected.
Forum: Networking WordPress
In reply to: Multisite 301 questionGive the plugin a testrun on a development site. There are different settings and it should do what you ask of it, but I would test it first.
I have not had any negative effects on my main site when using this plugin but I can’t guarantee anything. If you have specific questions you could ask them in the plugin support forum here on wordpress.org:
Forum: Networking WordPress
In reply to: Images /wp-content/blogs.dir/[id]/files/image.jpg not displayingThe link /wp-content/blogs.dir/3/files/2012/03/image.jpg is the file path as seen from a file system (like via FTP). After it passes through the .htaccess mod rewrite it becomes /files/2012/03/image.jpg.
WordPress can (at least in sub folder installs) display images that are linked via the file path even on mapped domains. I have never seen this work on sub domain installs like yours when a site is mapped with a domain. I could be wrong though…
In any case – the correct way to link images is with this syntax /files/2012/03/image.jpg.
Forum: Networking WordPress
In reply to: Multisite 301 questionFirst of all: Is your client aware that you can just point a new domain to your Multisite install and have this plugin http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/ do the directing to the right blog?
Secound: IF you really need to migrate to another wordpress install, you can just export the site from the current install, import it to the new install and direct the domain there. Your permalink structure should be intact.
Redirecting can then be made with this plugin: http://wordpress.org/extend/plugins/redirection/
Read this:
http://wordpress.org/support/topic/redirect-one-multisite-blog-to-new-domainForum: Networking WordPress
In reply to: Multisite with different languageYou don’t really need multisite for that.
http://wpml.org/ is a simple way to do it.
Forum: Networking WordPress
In reply to: Sub-domain to Sub-directory setupYou should put this in as your .htaccess file.
RewriteEngine On RewriteBase / 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]Remember to remove the old wordpress settings from the file.
For reference http://codex.wordpress.org/Multisite_Network_Administration#.htaccess_and_Mod_Rewrite
Forum: Networking WordPress
In reply to: Admin search in multisiteThat was (kinda) what i wanted.
Thanks for the Helf!
Forum: Networking WordPress
In reply to: Editing activation emailThere is a plugin for that.
http://wordpress.org/extend/plugins/welcome-email-editor/Forum: Networking WordPress
In reply to: Version ControlWhen we do this on our Multisite installation (Dev/prod servers with 450+ sites) we export the sql file, run it thru a “search and replace” function to change domain and replace the production server sql.
Don’t know if this the best way but It works.
Forum: Networking WordPress
In reply to: Is multisite required for my site?You do not need multisite functionality for a regular site.
Multisite is manly used for a network of different sites.
This video might help a bit: http://wordpress.tv/2010/05/31/boone-gorges-wordpress-3-multisite/