DS
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot Un-redirect WordPressHave you changed the Site Address (URL) and WordPress Address (URL) in the general settings of WordPress?
Have you used WiziApp plugin?
Try it and take a look at other plugins too..Forum: Themes and Templates
In reply to: Web site themes problemWhat is your problem with the header and footer?
Forum: Plugins
In reply to: Installed a plugin and website broke!You are welcome.
Don’t forget to reset your password.Forum: Plugins
In reply to: Installed a plugin and website broke!As far as now,I don’t know whether it’s the only solution but it may help.
Forum: Plugins
In reply to: Installed a plugin and website broke!So all the other themes are working.The only theme affected is Community theme.Am I right?
There was a similar problem that arised with contact form plugin @ https://www.ads-software.com/support/topic/sudden-fault-in-themephp-site-gone?replies=26
They solved it by re-installing wordpress but trust me – it’s dangerous if you don’t have a back up.
Forum: Plugins
In reply to: Installed a plugin and website broke!Can you name the plugin that caused the error?
Is that the only error you’re getting or are there more errors?
Check out the config.php file if there’s some tweak in it.
Forum: Plugins
In reply to: Installed a plugin and website broke!You are Welcome..
Try this and tell me if it worked.
1.Re-name you plugins directory to plugins-kk and create a new plugins directory.Then install all your plugins again because doing this means all your previous plugins won’t be there and you have to start from scratch.
2.Do the same thing to your themes directory too.(i mean change the name of the current themes directory to themes-kk and crate a new themes directory.
3.Now install custom community theme normally using wordpress.Forum: Plugins
In reply to: Installed a plugin and website broke!Did you completely delete the theme from the server?(i mean manually using FTP)
If not,delete the custom community theme using your FTP client from the server.
This should take away the modifications done by the plugin assuming the plugin you installed is now not there in your server’s wp-content directory which has the plugin directory.
Re-install the theme manually using the FTP client again.
It should work.
Check This Out-It may help:
COMMON WP ERRORS
Forum: Plugins
In reply to: Create website pluginThere is no plugin but this code should help you create a new sub-domain.
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
function create_subdomain($subDomain,$cPanelUser,$cPanelPass,$rootDomain) { // $buildRequest = "/frontend/x3/subdomain/doadddomain.html?rootdomain=" . $rootDomain . "&domain=" . $subDomain; $buildRequest = "/frontend/x3/subdomain/doadddomain.html?rootdomain=" . $rootDomain . "&domain=" . $subDomain . "&dir=public_html/subdomains/" . $subDomain; $openSocket = fsockopen('localhost',2082); if(!$openSocket) { return "Socket error"; exit(); } $authString = $cPanelUser . ":" . $cPanelPass; $authPass = base64_encode($authString); $buildHeaders = "GET " . $buildRequest ."\r\n"; $buildHeaders .= "HTTP/1.0\r\n"; $buildHeaders .= "Host:localhost\r\n"; $buildHeaders .= "Authorization: Basic " . $authPass . "\r\n"; $buildHeaders .= "\r\n"; fputs($openSocket, $buildHeaders); while(!feof($openSocket)) { fgets($openSocket,128); } fclose($openSocket); $newDomain = "https://" . $subDomain . "." . $rootDomain . "/"; // return "Created subdomain $newDomain"; }
Forum: Plugins
In reply to: Installed a plugin and website broke!You said you just de-activated it.
Delete the plugin.
It may help you.
Do it from your server manually.
Common WordPress Errors
Can you tell me what kind of forum plugin you are looking for?
I’ll see if can help.Forum: Plugins
In reply to: [Contact Form 7] Text area widthWell,I am sorry if i am disturbing the growth of this plugin but I would like to invite you to take a look at How to create a contact form if you really wanna know how a simple contact form works in php.CSS excluded.
Sure you can…Irrespective of the theme you use, you can do this..
Just install the plugin BP Profile as Homepage and activate it..
https://www.ads-software.com/extend/plugins/bp-profile-as-homepage/Are you working on this?If you need any help i would gladly do it.Hoping to get a response from you.
Hi Yozz…
I am also looking for such a feature in buddypress.It would be great.
I think the following links may help you.
https://code.google.com/p/bp-labs/source/browse/trunk/beakers/class-bplabs-autosuggest.php?r=41
This is the autosuggest coding that Mr.Paul used in bp labs plugin to autosuggest friends following the @ symbol.
Also take a look at this file in your file manager.
/buddypress/bp-messages/js/autocomplete/
This is what buddypress uses to autosuggest friends in messages.
Hope you get the plugin tweaked and post it to the wordpress repostory.
************************ ALL THE BEST ***************************