No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
23 Posted Topics
In http://www.alexa.com/toolbar currently there is only an alexa button like this http://freakimage.com/images/449alexa_only_button.png i need alexa toolbar like this, no need to click the button first to see country rank, have hot searches, hot pages, etc http://freakimage.com/images/488alexa_toolbar_complete.png anyone know how to get this? i am using firefox latest version please help … | |
I am using centos Please help what is SSH commands to do this: run a command 20 times, break 2 seconds, and repeated again so like this // run 20 times wget http://test.com wget http://test.com wget http://test.com wget http://test.com wget http://test.com wget http://test.com wget http://test.com wget http://test.com wget http://test.com wget … | |
There are some tutorials below, will it working for parked domain, or only for addon & subdomain? http://www.ndimensionz.com/kb/dedicated-ip-to-parked-addon-domain-in-cpanel/ http://www.prajith.in/how-to-assign-a-dedicated-ip-to-a-sub-domain-or-add-onpark-domain/ http://thelinuxfaq.com/183-assign-dedicated-ip-to-subdomain-parked-domain-addon-domain-in-whm there is also a thread asking this in 2008 https://forums.cpanel.net/threads/parked-domain-on-different-ip-address.93537/#post-424165 : The main domain does have its own IP Address, but I need the domain that is parked on the … | |
Hi guys, In WHM > Easyapache, there is this PHP extension : Safe PHP CGI - prevents users from overriding system php.ini my question, can i exclude a user from this, so the user can increase like memory_limit in they account? if not, is there alternative for this that allowed … | |
Hi guys, below are simple replacing script a word in to another word, or censorship $word = array( 'google', 'yahoo' ); $link = array( 'go*gle', 'yah*o' ); $this->post['message'] = str_ireplace($word, $link, $this->post['message']); the problem its currently also replacing another words like googler yahoos into go*gler yah*os please help how to … | |
Hi, guys this is phpmyadmin search page, for example i want to search keyword1 in few tables that already selected http://freakimage.com/images/525phpmyadmin_search_page.jpg then its go to the result page http://freakimage.com/images/248phpmyadmin_result_page.jpg now how to get back to search page again, that already have the few tables selected? i try push Back button … | |
Hi guys, like you might already know, domain renewal fee in enomcentral is $39 per year, so i wanted to transfer out my domain from enomcentral to namecheap or godaddy i already tried ordering transfer in namecheap 2 times, but still failed, its says > Reason for Cancellation : > … ![]() | |
Hi guys, i have a reseller account, i want to change my email i already change the email in WHM > List accounts > the primary domain > Change Contact Email also in the hosting company WHMCS (the place that i bought this reseller account) > Client Area > My … | |
Hi guys, I want to put some subdomain.mydomain.com in another server i understand in current server, in WHM > Edit DNS Zone > mydomain.com > i just need to add A record like subdomain A 222.222.222.222(another server IP) before that, i need to set the another server first, so i … | |
Hi guys, i have about 11.000 Delivery Queue (Outgoing Emails) in WHM > ConfigServer Mail Queues its about announcement email my server rebooted, and now there is no one Outgoing Emails left, in WHM > ConfigServer Mail Queues > Delivery Queue can i get it back? or some log where … | |
Hi guys, i have standart WHM backup, that set daily now i need to get/restore a mysql table only, how to do that, or where is the path to get this mysql table in ssh, its ok if i need to download the entire mysql file, not a table only | |
I have a php file lets say file1.php, that printing a variable, its dynamic numbers output that already always increasing, like private message numbers that coming or others : <?php echo $variable ?> i want to put that variable output, in another files page title, lets say file2.php or file3.html, … ![]() | |
Here are a simple script, for populating a text field from drop down, for example how it works : user clicking on option 1, then the textfield showValue1 will filled/fired with 1a <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled</title> </head> <body> <form name="theform" onsubmit="CheckForm()"> <select name="myOptions" onchange="document.theform.showValue1.value=this.value"> … | |
I can showing month and day in php, from this documentation http://php.net/manual/en/function.date.php for example Wednesday, 03 March 2012 i want to change it into my language Rabu, 03 Maret 2012 or it is best if can like this Rabu, 3 Maret 2012 i am using whm and cpanel, cant found … | |
Each time our site got error messages, is stored in a home/username/public_html/error_log file, in ftp right? i wonder can i get notification to email each time new error message added/increased? the response or notification is the most important, so can fixing the problem asap, and since some of us not … | |
I followed this tutorial [url=http://www.thecpaneladmin.com/change-ftp-port/]How to Change Your FTP Port :: The cPanel Admin[/url] and other similar tutorial, to change ftp port, but still cant make it the problem is, [b]/etc/chkserv.d/ftpd[/b] file always back using the original file, before i edit the file, that still using port 21, after i … | |
Hi guys, i have a content in one of phpmyadmin field [SIZE=2]screenshot[/SIZE] [IMG]http://i291.photobucket.com/albums/ll284/basketmen/phpmyadminfield.jpg[/IMG] the content is like this, its have two lines : [QUOTE]text1 text2[/QUOTE] usually its called from a php file, using a variable, like this [PHP]$xxx = explode("\r\n", $text);[/PHP] now i want to put the content, directly in … | |
For a website, sometime we used more than a script that [B]separated[/B], yes separated and dont have connection at all each other for example domain.com is a forum, using vbulletin domain.com/blog is a blog, using wordpress domain.com/store is ecommerce, using oscommerce domain.com/article is article cms, using joomla etc so for … | |
Hi guys, I have a table, the table name is account, its have 2 fields : membersid, and categoryid i want to change the categoryid field content, i run this in phpmyadmin : [QUOTE]update `account` set categoryid = replace (categoryid, '1' , '2');[/QUOTE] but get this error message [QUOTE]#1062 - … | |
Hi guys, i have a drop down code below [QUOTE]<select class="input" name="mod[cpu]"> <option value=""> </option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select>[/QUOTE] the output are like this [QUOTE]$html .= ($content[cpu] ? '<div class="' . $this->switch_bg() . '"><strong>CPU:</strong> ' . @htmlspecialchars($content[cpu]) . '</div>' : '');[/QUOTE] i want after the drop down … | |
Hi guys, I already know basic Redirect www to non-www, using htaccess: [QUOTE]RewriteEngine On RewriteCond %{HTTP_HOST} ^[url]www.yourdomain.com[/url] [NC] RewriteRule ^(.*)$ http://yourdomain.com/$1 [L,R=301] [/QUOTE] but how if we have parked domain too? I already tried this but its not works, its says "The page isn't redirecting properly" [QUOTE]RewriteEngine On RewriteCond %{HTTP_HOST} … | |
Hi guys, i am using unmanaged dedicated server, my host says to increase slot httpd limit, because daemon httpd function stopped so max slot limit already received before where is this part actually in WHM or SSH, or how to do that? the server already rebooted by the host, and … | |
Hi guys, below are custom code to replacing text into link, for example [B]Google[/B] text, will be like this [URL="http://www.google.com"][B]Google[/B][/URL] [B]Yahoo[/B] text, will be like this [URL="http://www.yahoo.com"][B]Yahoo[/B][/URL] the replacement mod below are working well until now now i just need a little fix again, to make it better again i … ![]() |
The End.