Jump to content

dnhgeeks

Member
  • Posts

    9
  • Joined

  • Last visited

About dnhgeeks

dnhgeeks's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Thank you for your help! I will be careful next time If I do it for all tlds, this means a lot of work That would have been best for me...but unfortunately it is not so. Not sure, it is better to hide the third level tlds. I never saw a website either. Thank you for the thread link One question, should I read all 26 pages to create a full list OR can you point me to some comments with the longest list of tlds.
  2. I have found the solution. I have removed the plugin multisite enhancements which is causing problems. Thank you for your help. Now it is working.
  3. absolutely true, no one will wait for 7 minutes to check for a domain name. I have removed whmcs-bridge. The integration will not work in such a situation. I think, the server dies when working to get domain name availability as all three (wordpress, whmcs-bridge, whmcs) are working. It is working in whmcs alone. It is midnight and I am drooling through whmcs. 1 question, where can I update the setting to make .com default tld, when a user will submit domain name without selecting any tlds ? I agree. There is no reason to search for all tlds in every search. yes, I have used 10 for default search. yes, this weekend will be getting busier. I have not thought about whois lookup servers. I will check it in weekend. hmmm... more work checking each tld for its existence ? can you add this feature in whmcs ? you can make a function to ping the whois server and tell if the server is working. based on each ping result, only the active tlds will be available to users. what do you think ?
  4. whmcs and whmcs-bridge both are of latest version. it was working earlier smoothly so the settings must be correct. I have added all TLD's may be this have caused this problem. whmcs must be searching for all tlds on user input. can whmcs work with all tld's ? should I remove all TLD's from WHMCS and keep only few tld's ? where can I limit the whois search for some tld's ?
  5. Hello, I am using WHMCS-bridge plugin on my website for integrating WHMCS. The domainchecker is not working with my website. The url is When I submit a domain name it is giving following error. (Replaced cpanel username with [username]) Notice: Undefined index: main in /home/[username]/public_html/wp-content/plugins/whmcs-bridge/bridge.init.php on line 561 Please tell me, what is the problem with whmcs-bridge and how can I update it. Thank you
  6. Hello, I am using WHMCS-Bridge plugin. Recently, domainchecker page stopped working and now it does not return results through whmcs-bridge. The url for domainchecker is http://dnhgeeks.com/customers/?ccce=domainchecker I am getting the following error when I submit a domain name. (Replaced cpanel username with [username]) Notice: Undefined index: main in /home/[username]/public_html/wp-content/plugins/whmcs-bridge/bridge.init.php on line 561 Please tell me, what is the problem with whmcs-bridge plugin and how to correct it. Thank you
  7. I have found the solution for updating sidebar menu items. The sidebar menu items will be updated with the same code in previous post, only the menu items parent needs to be added. Add the parent to menu item code for Announcements RSS using the following code $primarySidebar->getChild('Announcements Months') ->getChild('RSS Feed') ->setUri('http://dnhgeeks.com/customers/?ccce=announcementsrss'); Thank You
  8. Hi Brian!, I have not changed any links in it, they are like this after installation. Thank you for your solution. It worked for the header menu links. I have updated the links of header menu but when I use the same code for sidebar menu it is not working. On this page, http://dnhgeeks.com/customers/?ccce=knowledgebase, the announcements, knowledgebase and downloads link in secondary sidebar are not correct. I have added the following code add_hook('ClientAreaSecondarySidebar', 1, function (MenuItem $secondarySidebar) { if (!is_null($secondarySidebar->getChild('Announcements'))) { $secondarySidebar->getChild('Announcements') ->setURI('http://dnhgeeks.com/customers/?ccce=announcements'); } if (!is_null($secondarySidebar->getChild('Knowledgebase'))) { $secondarySidebar->getChild('Knowledgebase') ->setURI('http://dnhgeeks.com/customers/?ccce=knowledgebase'); } if (!is_null($secondarySidebar->getChild('Downloads'))) { $secondarySidebar->getChild('Downloads') ->setURI('http://dnhgeeks.com/customers/?ccce=downloads'); } }); Similarly, on page http://dnhgeeks.com/customers/?ccce=announcements to change the link of RSS Feeds on primary sidebar, I have added the following code add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar) { if (!is_null($primarySidebar->getChild('RSS Feed'))) { $primarySidebar->getChild('RSS Feed') ->setURI('http://dnhgeeks.com/customers/?ccce=announcementsrss'); } }); None of these two codes are working. What is the problem with these two codes ? What will be the code to update the links in these menus ?
  9. I have integrated WHMCS in dnhgeeks.com Please visit this page dnhgeeks.com/customers and see the header menu links for Announcements and Knowledgebase are broken and produce 404 error. I have viewed the template header.tpl file but it is smarty code and I cannot run php inside smarty templates. How to change the url of header menu links of WHMCS in a template? Where is the php code for generating the menu code in smarty ? Thanks
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated