lohray
Forum Replies Created
-
Forum: Plugins
In reply to: [Shortcode Exec PHP] Including a PHP pageI am wondering the same thing. How do I include an existing php file? What path do I use? Should I use an absolute path? What folder should
myFile.php
be in to runinclude("myFolder.php");
?Forum: Plugins
In reply to: [Track Everything] Tracking the more tag??
It seems to be working now – I changed a lot of things and do not remember what triggered it to register the event – I have just one event from today.
Forum: Plugins
In reply to: [WP-reCAPTCHA] wordpress recaptcha BrokenHow did you get an older version? GitHub?
Forum: Plugins
In reply to: [WP-reCAPTCHA] Don't save Public Key and Private KeyEven with version 3.1.3, it is not saving my keys.
Forum: Plugins
In reply to: [WP-reCAPTCHA] Don't save Public Key and Private KeyI am facing the same problem out of the box.
Forum: Fixing WordPress
In reply to: Multiple Blogs without wildcard DNSI got it!
The main installation is at https://domain.com/weblog
I do not follow the codex to the letter and create a virtual directory section without a wildcard. Now I have a subdomain https://user1.domain.com/ that does not hare the document root with the main WP installation.
To get WP working:
1. Create a symbolic link in the DocumentRoot of user1.domain.com to the installation directory.
Place the following .htaccess file in the document root of user1.domain.com
RewriteEngine On RewriteBase / RewriteRule ^wp-admin(.*)$ weblog/wp-admin$1 [R=301,L] RewriteRule ^(.+)$ /weblog/$1 [L] RewriteRule ^(.?)$ /weblog/$1 [L]
Things seem to be working so far without any problems logging in.
Forum: Networking WordPress
In reply to: Another Database ProblemI might have missed that line :-O from Step5 part2 ??
Yes. It is one at a time. I tried both of them. And they work fine.
Thank you ??
Forum: Networking WordPress
In reply to: Another Database ProblemI was following https://codex.www.ads-software.com/Create_A_Network, and it mentions the ‘define(‘WP_ALLOW_MULTISITE’, true);’ in step 3 but there is no mention of ‘define( ‘MULTISITE’, true );’ maybe I was referring to the the wrong documentation?
Anyway, it worked! Adding ‘define( ‘MULTISITE’, true );’ fixed things. I have been able to use both subdomains as well as subdirectories to access WP.
Thank you ??
Forum: Networking WordPress
In reply to: Another Database Problem