Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
20% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for livtar
Member Avatar for James_28
0
651
Member Avatar for agriz

I have some similar problem problem on a running machine. So i didn't try this solution. ( http://www.daniweb.com/hardware-and-software/networking/threads/196468/bind-is-denying-queries-even-with-allow-query-set ) options { listen-on port 53 { 127.0.0.1; }; listen-on-v6 port 53 { ::1; }; allow-query { localhost; }; recursion yes; ... ... }; client 66.249.71.203#39409: query (cache) 'cakestandpunchbowl.handbagssalet.com/A/IN' denied client 66.249.71.250#62577: …

Member Avatar for agriz
0
166
Member Avatar for agriz

Hi There are two tables. Cities and Countries Countries have Id, Country name and Short Code (Id is primary key) Cities have Country_Short_Code, City and Populations. (city is indexed) There are 5000 records maximum to be processed. PHP will give 5000 city name and its country. What is the best …

Member Avatar for agriz
0
190
Member Avatar for agriz

[code] session_start(); $facebook = new Facebook(array( 'appId' => 'keys', 'secret' => 'keys', 'cookie' => true, 'domain' => 'domainname.com' )); [/code] //What is cookie => true here? Does it gives session to only one folder? I want to have that session in the overall website. [code] $session = $facebook->getSession(); if ($session) …

0
83
Member Avatar for agriz

Hi, I was just browsing Paypal page. I am really confused. I want to have two options in my website. Recurring and Non-recurring payments. For recurring payment, It seems i need to create "CreateRecurringPaymentsProfile" with the following options. token, amount, currency, date, billing period, billing frequency I don't have a …

Member Avatar for chrishea
0
89
Member Avatar for agriz

Hi, I am trying fsockopen in localhost. I am trying to access live server file. I have created two files in live server. 1) Dynamic PHP file which produce XML 2) Static XML file Now, Once the fsockopen connection is success and i am trying to get the dynamic xml …

0
55
Member Avatar for agriz

Hi, I have a table with 2 laksh records. If i use rand() in mysql query it takes approximately 1.5 seconds to run So i use mt_rand(1, 200000) It returns most of the times results in 1,000,00s The query is like this. $query = "SELECT * FROM tbl WHERE Length(word) …

Member Avatar for smantscheff
0
103
Member Avatar for agriz

Hi, There are three tables involved here. A kind of quiz localhost site, i did for me. Table 1 contains questions. ========================== question_id (autoincrement) questions (varchar 250) category_id Table 2 contains choices ======================== Choice_id (autoincrement) Choice_value (varchar) question_id Table 3 contains answers ======================== question_id choice_id I am displaying 10 questions …

Member Avatar for smantscheff
0
312