Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
69% Quality Score
Upvotes Received
7
Posts with Upvotes
7
Upvoting Members
6
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
3
4 Commented Posts
0 Endorsements
Ranked #779
~26.7K People Reached
Favorite Tags

37 Posted Topics

Member Avatar for grooming

agree with ellena980 but you can try this: install alexa toolbar, also tell your friends to install it and visit the website from time to time

Member Avatar for petrarobert002
0
244
Member Avatar for MasterHacker110

read the mail logs, you will find info there: tail -f /var/log/mail.err or tail -f /var/log/mail.log if you are on a shared hosting, it should work by default. if you have home/VPS/Dedicated server/pc try setting qualified domain name in /etc/hosts: #[ipaddress] [longname] [shortname] 127.0.0.1 yourdomainname.com yourdomain more info: http://newexception.com/unable-to-qualify-my-own-domain-name

Member Avatar for MasterHacker110
0
319
Member Avatar for dbalas

i didnt check the whole code but you can try the following: instead: Content-Type: multipart/mixed change to: Content-Type: text/html

Member Avatar for paulkd
0
499
Member Avatar for joshl_1995
Member Avatar for joshl_1995
0
444
Member Avatar for savedlema
Member Avatar for savedlema
0
477
Member Avatar for dreamcyberdci
Member Avatar for jithinjohny

yep it's deprecated in php 5.3.0 http://php.net/manual/en/function.ereg.php which php version do u have?

Member Avatar for jithinjohny
0
483
Member Avatar for arctushar

try this: RewriteRule ^([a-zA-Z0-9\-]+)/([a-zA-Z0-9\-]+)$ /?sura=$1&ayat=$2 [L] RewriteRule ^([a-zA-Z0-9\-]+)$ /?sura=$1 [L] they must be in this order, in case there is only 1 param, the second rule will be 'executed'. also you may want to limit the type of characters that params can take.

Member Avatar for dorco
0
208
Member Avatar for varunsara

probably the memory limit is bigger on your local machine. you will need to increase it using ini_set('memory_limit', '256M') more info: http://newexception.com/php-increase-memory-limit

Member Avatar for TonyG_cyprus
0
300
Member Avatar for petrarobert002

the number that shows up on google when u search something is called serp. the number in adwords tool are called searches. so, serp is the number of results for the given keyword, and adwords searches are the number of how many times that keyword was searched on google.

Member Avatar for dreamcyberdci
0
146
Member Avatar for Naga14

yep, normalization would be great, however drop the current key coz i dont see the point and create new one on 'cleaned' create index ix_cleaned on data_table_new (cleaned); also use EXPLAIN to check if the query is using one of the indexes it should be faster then 1:30

Member Avatar for masterjiraya
0
166
Member Avatar for Webville312

probably the problem is here: $connection = $input_array['connection']; check the variable type with: var_dump($connection); it should be resource, not string

Member Avatar for Webville312
0
358
Member Avatar for minitauros
Member Avatar for minitauros
0
352
Member Avatar for savedlema

you will need to bind the address. read this: http://newexception.com/mysql-remote-access

Member Avatar for savedlema
0
3K
Member Avatar for petrarobert002
Member Avatar for smithjohn1
1
226
Member Avatar for ehpratah
Member Avatar for ehpratah
0
171
Member Avatar for daniel36
Member Avatar for masterjiraya
0
173
Member Avatar for mmcdonald

are you sure that is not executing? add log msg at the top of your script: file_put_contents("/tmp/log.txt", "script executed on " . date('Y-m-d H:i:s')); then check if the file exists in /tmp

Member Avatar for CimmerianX
0
248
Member Avatar for aaloo
Member Avatar for hanan-kh

include("myclass.class.php"); check if the name of the file myclass.class.php is correct and if both files are in the same folder. also you are missing } at the end of the myclass.class.php file

Member Avatar for hanan-kh
0
370
Member Avatar for arunpawar

how do u want an output if you are not trying to do it? print? echo? var_dump()? print_r()? echo $obj->getProperty();

Member Avatar for masterjiraya
0
137
Member Avatar for joshl_1995
Member Avatar for joshl_1995
0
194
Member Avatar for beginnerpals
Member Avatar for imBaCodes
1
12K
Member Avatar for Member #921280
Member Avatar for kiLLer.zoh_1
Member Avatar for kiLLer.zoh_1
Member Avatar for skliz
0
132
Member Avatar for skliz
Member Avatar for aisha.edris1
Member Avatar for aisha.edris1
0
250
Member Avatar for joeyliew7
Member Avatar for dorco
0
2K
Member Avatar for SomSamui

coz you are trying to get from _GET, and the first form is using POST try changing to <input type="hidden" name='girl' value='<?php echo $_POST['select1'];?>' />

Member Avatar for SomSamui
0
238
Member Avatar for johndohmen1963
Member Avatar for minitauros
0
143
Member Avatar for dourvas
Member Avatar for daniel36

i dont know if you can translate a whole page through the api. probably u will need to translate word by word or sentense by sentense. Also you will need to pay for the api. You can add the google translate widget which is free.

Member Avatar for daniel36
0
165
Member Avatar for Evil Genius

you can do a simple load balancing through a php script with a number of visitors per db server. also u will need to setup a database replication.

Member Avatar for dorco
0
203
Member Avatar for dourvas

as pritaeas said, you should set short_open_tags to true: ini_set('short_open_tags', 1);

Member Avatar for dourvas
0
192
Member Avatar for Octet

try adding: error_reporting(E_ALL); ini_set('display_errors', 1); at top of you script. also add: mysqli_error($conn) to check the error msg when the query fails.

Member Avatar for Octet
0
202
Member Avatar for richosr

SELECT tbldata.* FROM tbldata WHERE (tbldata.DateAdded <= DATE_SUB(now(), INTERVAL 3 HOUR));

Member Avatar for richosr
0
387

The End.