Hi,
The plugin works fine for Default posts, i was wondering if it is possible to use this plugin for custom post types?
Due to rewrite slug in Custom Post typeit’s not working, i have even installed Advanced Permalink for Custom Post type and made it /category/postname but still no hope.
Any Suggestions?
]]>This is what I get when I try to activate the plugin.
It tries to jump to https://www.mydomain.com/wordpress and get the notfound page.
I must say that in my site, wordpress is not in the root, but as a folder.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>I’d like to show permalinks https://subject-about-anything.sitename.com for all post.
How can I do this?
Please help me thanks.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>Warning: readfile(https://xxx.xxx.net/category/xxx.xxx.net) [function.readfile]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/infinitedreams/xxx.xxx.net/index.php on line 9
This is what happens when I access the subdomain, permission of folder and index.php for the subdomain is 755, permalink structure is set correctly, index.php in the subdomain folder contains the code of the readme for categories, which is
<?php
$foldername=basename(getcwd());
$SubdomainName=basename(getcwd()) . ‘.’;
$HomepageLink= ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/’;
$HomepageLinkWithoutSubdomainName=str_replace($SubdomainName, ”, $HomepageLink);
$HomepageLinkFULL=$HomepageLinkWithoutSubdomainName . ‘category/’ . $foldername;
readfile($HomepageLinkFULL); ?>
….
Is there anything I am missing?
Love and light
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>I am having an issue with this redirecting. I have set up what I thought were the correct settings in my apache configuration files but it is not working.
Reloaded Apache and everything with 0 errors. but I am stuck. Please let me know if you can help me out here.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>hello.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
the available version for download is 0.6.9,
but the plugin has been updated,but for some reasons author cant fill out form to send it to wordpress, so update the plugin from 0.6.9 to 0.7 on www.ads-software.com too!
here is file
https://www.lontongcorp.com/wp-content/uploads/2012/03/wordpress-subdomains-0.7.0.zip
I setup this plugin and it work well with Category and Author but not work for Page. Is there anyone who can help me figure out the problem?
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>Can anyone say, how to change themes for several categories? I have posted one post to categories that I want to change and changed post custom field name to wps_page_theme and value to responsive (theme name). But it’s not working. Can You help me?
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>Just edited to satisfy my 3.3.1 and got it working.
Took a whole day so not fully tested, just for category I need.
Please let me know if anyone interested, I don’t know how to upload the file here ??
Note.:
Add simple subdomain URL Redirection function too.
So in your virtual host web server you can set *.domain.com in the same directory. Will redirect to homepage bloginfo(‘url’) if it’s invalid subdomain.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>I think it is broken for 3.3 and 3.3.1 but works fine for 3.2.1. ??
Really a nice plugin!
Looking for update.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>I reliased plugin has a issue with sub domains. The subdomain page the title does not same as with the category name.
any advice? How can i put correct category name at subdomains.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>Catchable fatal error: Object of class stdClass could not be converted to string in /[path]/wp-content/plugins/wordpress-subdomains/plugin/classes.php on line 37
]]>I follow the installation & configuration guide, subdomain doesn’t pull its category’s article, but pull all.
One note that in admin/wp-subdomain/categories page, click on any category, page not found returned
The plug-in simply doesn’t work. When a click a category link it opens the subdomain URL, but it says there is nothing there, Page not found.
Is there an alternative plugin to WP Subdomains?
Thanks
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>In an effort to simplify the Dave’s WordPress Live Search plugin and curb the recent growth in regression issues, I am making a drastic change to how Javascript and CSS files are loaded. This change will greatly improve compatibility with supported alternate WordPress configurations, like WPMU. But it will break compatibiliy with WP Subdomains and other plugins which do not interface with WordPress core correctly.
As WP Subdomains appears abandoned and people are reporting compatibility issues with WordPress 3.1, I think this is a safe time to make this improvement.
Apologies to anyone still using Dave’s WordPress Live Search with WP Subdomains on an older version of WordPress, but this change is needed for my plugin’s stability.
For the technically-inclined, I’m replacing my code for building URLs with a call to WordPress’s plugin_dir_url() function. This is a function in WordPress core. Plugins which want to change how this function builds URLs (say, to force a different subdomain) need to implement the plugins_url filter and alter the string it passes.
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>I want a few categories. One is Atlanta, another for Events, and the other is for Miami. I noticed that if I have a post that corresponds to more than one category wp-subdomains seems to pick a default permalink to publish.
The problem isn’t that all subdomains don’t work. The issue is I can’t decide what the natural permalink is. I want my posts to have permalinks corresponding to the city (categories i want) and not events.incrowdusa.net ??
Please help! Any ideas?
]]>because of changes in categories editor
]]>Pretty much had to follow detailed steps from someone else and the plugin is still not working. I have HostGator and cpanel. I made my page, activated the plugin, added the code to the pages, made my subdomain and it will not work.
In cpanel what are the settings supposed to be for the subdomain I create? Also how come his documentation sucks so bad or am I looking at the wrong place?
]]>Everything works well with WP subdomains with one exception. When I’m at https://blog.lanevatile.com/ and click “Home” I stay on the subdomain https://blog.lanevatile.com/ Rather than being routed to the main index domain https://lanevatile.com/ We’re using categories subdomains. This can’t possibly be as difficult as I’m making it.
Thanks for any help.
Brad
]]>I found a bug in the changePostPath() function inside plugin/classes.php.
If you use a post name containing the category name, an invalid permalink is produced in certain cases.
My permalink structure is: /%category%/%postname%/%postid%
Supposing the category is “chicago” if I publish a post with a slug like “places-where-to-eat-in-chicago/1823/” the plugin will produce
“places-where-to-eat-in1823” thus breaking the link integrity.
The patch is:
// replace
$path = str_replace( $original_path, $new_path, $path );
// with
$path = preg_replace( “@$original_path@”, $new_path, $path, 1);
limiting the replacement of the category name to 1 occurrence only.
Hope it may help.
]]>Hi there,
can we expect an update soon, or should we wait a little bit,
casualgenius can you pls shed some light on this ?
regards
Joe
https://www.ads-software.com/extend/plugins/wordpress-subdomains/
]]>Hi guys. Major upgrades to site and now my https://www.bike.hastie.id.au (cat=bike) looks like https://www.hastie.id.au! Categories are ignored.
I’ve turn old URL redirect off so i can get to my category page by using https://www.hastie.id.au/bike but that’s not how it should be!
I have:
– set subdomain root folder to WP root folder
– activated all main categories as subdomains.
what now??
]]>Hey Alex,
Been trying to figure out how to get the edit button to work. Seems that it is redirecting me to a url that doesn’t work.
Can you help? I’m unable to edit each category individualy and so I’ve had to tell WordPress to make all top level categories subdomains.
However I really do not want that. I need to be selective.
The site is https://incrowdusa.net
]]>Please help… Can’t seem to get the plugin to work with my wordpress site on https://Incrowdusa.net. I just installed the site from scratch and that was the first plugin I added.
It seems to try to point to the subdomain but everything errors out. I have a few questions becuase i’m not sure of the next step to take.
Last night when I installed it… things seemed to work fine. I created my first category, Atlanta: and saw the redirection working. https://atlanta.incrowdusa.net worked awesomely.
Now this morning I notice that the subdomain atlanta and all posts under it are not resolving.
Do new subdomains take time to propogate? Do I need to create a true DNS entry first before making the category a subdomain?
PLEASE HELP! THIS PLUGIN IS THE KEYSTONE FOR MY SITE ??
Is there a new version for 3.01?