Deryck
Forum Replies Created
-
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Page not found after cloningI’m getting crazy with this. Almost everything clones fine except two things:
- The ID blog.dir folder does not create (I fixed duplicating and renaming with the new site ID manually)
- NextGen Gallery directory setting does not get auto populated. Remains with value “/” when the normal behaviour is they assign “wp-content/blogs.dir/%BLOG_ID%/files/”
I attach and example: https://dl.dropbox.com/u/814218/nextgen.png
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Page not found after cloningI solve this too. Was a conflict with another premium duplication plugin. How can we make a more direct contact?
I can give you and address and a username to check the development site. I want to buy the pro plugin but now I’m afraid of the effectiveness of the plugin. Perhaps something in my blog is making the plugin work sluggish.
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Page not found after cloningI have fixed that but now I have another issue. I’m planning to buy the premium plugin because I need serialized settings export between sites. Now I’m getting the following error when try to clone:
string(124) “cp -r /Users/me/Sites/website.com/wp-content/uploads/sites/2/* /Users/me/Sites/website.coms/wp-content/uploads/sites/17”
exec() is enabled in case you think this is the issue. It’s not.
How can I fix that? Thanks in advance.
Thanks a lot Tobias.
The page is https://localhost:8888/the_project/wp-admin/themes.php?page=options-framework.
Should be then load-options-framework the $editor_page value?
Forum: Fixing WordPress
In reply to: WordPress 3.1.2 -alpha after updating to 3.1.1I have the same issue. Please let me know about any response. I will follow this thread.
Forum: Themes and Templates
In reply to: Custom menus does not show in Twenty TenSolved! There was a custom hook giving problems.
Forum: Plugins
In reply to: I need some extra classes in my wp_page_menu() outputGiving some details
I have this:
<div class="menu"> <ul> <li><a href="">Home</a></li> <li class="page_item page-item-1"><a href="" title="About">About</a> <ul> <li class="page_item page-item-3"><a href="" title="Our Business">Our Business</a></li> <li class="page_item page-item-4"><a href="" title="Our Staff">Our Staff</a></li> </ul></li> <li class="page_item page-item-2"><a href="" title="Contact Us">Contact Us</a></li> </ul> </div>
And I need this: (Changes in CAPS)
<div class="menu"> <ul> <li><a href="">Home</a></li> <li class="page_item page-item-1 HAS_CHILD_PAGES"><a href="" title="About">About</a> <ul> <li class="page_item page-item-3"><a href="" title="Our Business">Our Business</a></li> <li class="page_item page-item-4"><a href="" title="Our Staff">Our Staff</a></li> </ul></li> <li class="page_item page-item-2"><a href="" title="Contact Us">Contact Us</a></li> </ul> </div>
Help, please!