- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 7
- Upvoting Members
- 6
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 3
37 Posted Topics
Re: 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 | |
Re: 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 | |
Re: i didnt check the whole code but you can try the following: instead: Content-Type: multipart/mixed change to: Content-Type: text/html | |
Re: nope, you cant do that, php is executed before js and they dont share memory | |
Re: go to the folder where mysql.exe exists and execute the command there | |
Re: yep it's deprecated in php 5.3.0 http://php.net/manual/en/function.ereg.php which php version do u have? | |
Re: 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. | |
Re: 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 | |
Re: 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. | |
Re: 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 | |
Re: probably the problem is here: $connection = $input_array['connection']; check the variable type with: var_dump($connection); it should be resource, not string | |
Re: give and example text and then explain what u want to do... | |
Re: you will need to bind the address. read this: http://newexception.com/mysql-remote-access | |
Re: the first i can think of is: "your tech blog has links on porn site" | |
Re: cast it to integer: $var = "09"; echo (int)$var; or number_format($var) | |
Re: 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 | |
Re: 80 and 443 are reserved. use some scanner to check which ports are already taken. | |
Re: 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 | |
Re: how do u want an output if you are not trying to do it? print? echo? var_dump()? print_r()? echo $obj->getProperty(); | |
Re: add this to .htaccess RewriteRule ^sub/page\.php$ page.php [L] | |
| |
![]() | |
![]() | |
Re: try chaning the ip address to server2.websitehostserver.net | |
Re: try adding header("Content-disposition: inline; filename=file.pdf"); | |
Re: 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'];?>' /> | |
Re: also check str_split() which will turn a word into array. | |
Re: 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. | |
Re: 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. | |
Re: as pritaeas said, you should set short_open_tags to true: ini_set('short_open_tags', 1); | |
Re: 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. | |
Re: SELECT tbldata.* FROM tbldata WHERE (tbldata.DateAdded <= DATE_SUB(now(), INTERVAL 3 HOUR)); |
The End.