Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
Ranked #2K
~23.3K People Reached
About Me

:)

Interests
I am interested in everything which is healthy, reduce the stress, or make me smarted.
Favorite Tags

71 Posted Topics

Member Avatar for LiBOC

One solution could be: create a temp file called lock.txt. The file will be created only after a successful login. The file will be deleted after logout. Before login you check if the file exists and if it does the script stops. Note: if for some reason the temp file …

Member Avatar for AARTI SHRIVAS
0
1K
Member Avatar for Sahil_Ar
Member Avatar for LiTos456

Hi, It is always a good idea to give technical details of the laptop. You can try these: - Contact only support e.g. Dell or may be other companies could assist you remotely - Use system restore. On my Dell Inspiron one of Windows Vista's updates caused the laptop to …

Member Avatar for imranb_001
-1
194
Member Avatar for Dani
Member Avatar for mt2009

why don't you let php handle the session IDs for you? you could have xyz.domain.com CNAME to xyz.com (but then redirect all traffic from xyz.com to xyz.domain.com) Then use a cookie with this domain ".domain.com".

Member Avatar for tolinho
0
749
Member Avatar for Arizona Web

hi, if you setup a goal to write your own CMS soon you will end up the same problems as other CMS's encountered. You may not foresee some problems that will require minor or major code rewrite and it may took some time - 1-2 month(s). you will have to …

Member Avatar for ckant_kol2006
0
411
Member Avatar for hughesadam_87
Member Avatar for arctushar

I'd use preg_replace. I believe there was an option not to break the UTF strings. I think the option was "u" .e.g preg_replace('#A#siu', 'আ', $str);

Member Avatar for metalix
0
88
Member Avatar for ahsan1

maybe the type is audio/mpeg or application/octet-stream you've got to try with different browsers to see how each one of them is sending the content. another option is to check the first 2-3 bytes of the uploaded file if it is "ID3" I checked a few mp3s I have and …

Member Avatar for lordspace
0
174
Member Avatar for sickpuppy18

Do you need an auto increment field ? [url]http://www.techonthenet.com/access/tables/autoinc.php[/url]

Member Avatar for sickpuppy18
0
89
Member Avatar for -==Zero==-

in the table with the sites put a status field. then when listing the sites check for status=1 (e.g. approved) when inserting you will use status=0 by default

Member Avatar for -==Zero==-
0
103
Member Avatar for hicman

Sometimes the warning is caused by a space before the opening php tag.

Member Avatar for hicman
0
306
Member Avatar for rumahsolusi
Member Avatar for owaka

Good idea but you'll have to learn some programming stuff. also there will have to be some payment processing. you also need to avoid doublebookings etc.

Member Avatar for ecmcircle
0
119
Member Avatar for cristi08
Member Avatar for prem2
0
121
Member Avatar for ello

I'd replace getJSON with .post()... but you may need to update the input params. getJSON breaks when the called script doesn't return a properly formatted JSON object.... so Firebug Addon is your best friend.

Member Avatar for lordspace
0
58
Member Avatar for Joe34

imho, you should check whether the link exists in the db before inserting it.

Member Avatar for lordspace
0
247
Member Avatar for brown23

You need something like this. [CODE]SELECT * FROM my_table WHERE activity_date BETWEEN DATE_SUB(NOW(), INTERVAL 30 MINUTE) AND NOW()[/CODE]

Member Avatar for lordspace
0
145
Member Avatar for Sorcher

if you have php 5 you could use mkdir with the 3rd parameter so it can create the subdirectories if necessary. mkdir($userdir,0777, 1);

Member Avatar for lordspace
0
2K
Member Avatar for eesti44

I would check also if [B]x+y[/B] equals zero because you're not allowed to divide to 0.

Member Avatar for Freude
0
469
Member Avatar for Agita

Can you try this bat file before Windows is loaded, i.e. put in autoexec.bat "call YOUR.bat"

Member Avatar for Scotty22
0
259
Member Avatar for lightningrod66

Hi, certainly will not an email in case of failed db insert because you have this [CODE]if (!mysql_query($sql,$con)) { [B]die[/B]('Error: ' . mysql_error()); }[/CODE] Your code dies in case of an error.

Member Avatar for lightningrod66
0
133
Member Avatar for rajeesh_rsn

I think the upload_max_filesize should be increased in the php.ini or in the .htaccess file. It would be too late to apply the limit in the php because the upload has already been processed or discarded...

Member Avatar for lordspace
0
226
Member Avatar for kishore5001

It seems __END__ is a "synonym" of __DATA__ following code proves that [code] while (<DATA>) { print; } __END__ hello __DATA__ first data line 2nd data line [/code] [code] C:\>perl c:\d.pl hello first data line 2nd data line [/code] the text "[b]hello[/b]" is displayed as it was put in __DATA__ …

Member Avatar for afbach
0
2K
Member Avatar for lordspace

Hi, Can somebody point me to a visual web CSS editor + live preview similar to Blogger > Layout > Page Elements where you could drag and drop elements and change styles. Thanks

Member Avatar for pritaeas
0
111
Member Avatar for happygeek
Member Avatar for azharalibuttar

Another option is to use a hardware router (which enables wireless network as well) e.g. D-Link

Member Avatar for Dima Bilan
0
106
Member Avatar for HelenLF

I'd keep the old domain because of its age. If you're starting a new product then feel free to register a new domain. Many people use shorter domains when they publish ads in magazines and newspapers.

Member Avatar for mahgobb
0
95
Member Avatar for sarithak

Please paste the SQL lines. This is just php. Additionally for escaping please use [url]http://ca2.php.net/mysql_real_escape_string[/url] "Filename all ready exits" should be [B]Filename already exists[/B]

Member Avatar for sarithak
0
101
Member Avatar for arunajasmine
Member Avatar for jen140

Why don't you call an external binary e.g. curl to get the content. You might want to add some headers (at least user agent) so the site doesn't block you by detecting the user agent string. Executing an external binary will be a separate process and the memory will be …

Member Avatar for lordspace
0
96
Member Avatar for whiteyoh

I'd use phpmailer or Zend Framework's Zend_Mail. Your mail script could be (ab)used by spammers by injecting additional parameters e.g. "To: ", "Bcc: " etc !

Member Avatar for samarudge
0
117
Member Avatar for sven1981

If you're referring to the name or other meta info - Yes. An image could be modified a little bit and this makes the binary different.

Member Avatar for lordspace
0
78
Member Avatar for puneet88

If you are going to use Java maybe Java applets should do the job. Have you seen these links ? [url]http://www.bin-co.com/blog/2007/07/3-simple-steps-to-create-a-web-installer/[/url] [url]http://sourceforge.net/projects/webinstall/[/url]

Member Avatar for lordspace
0
113
Member Avatar for rEhSi_123

Also the script should validate if the real receiver is opening the message.

Member Avatar for rEhSi_123
0
119
Member Avatar for Aamit

How about Google ? [url]http://translate.google.com/translate_buttons[/url]

Member Avatar for cwarn23
0
2K
Member Avatar for frob
Member Avatar for Sheetu

They buddy there isn't such thing as Apache 4. PHP could be 4 or 5 or 6 but the latest apache version is 2.2.11 as 2009-01-28

Member Avatar for lordspace
0
64
Member Avatar for nicolemcgrgr50

You could use PHP Mailer and then configure an external mail server e.g. Gmail that's just an idea. Maybe you are running Windows ?

Member Avatar for cwarn23
0
125
Member Avatar for anuspan

Open php.ini file which is usually in c:\php or c:\php5 or in C:\windows and look for "save_path" and make sure the folder exists. Here is how my settings look like session.save_handler = files session.save_path = "c:/temp"

Member Avatar for anuspan
0
123
Member Avatar for Ravigandha
Member Avatar for serdas

If you contact the people developing that software they might be able to make some customizations or create an addon for you.

Member Avatar for lordspace
0
175
Member Avatar for jcauaeaudits

Pages change their positions is SERP because everyday thousands of pages are created and the index gets rearranged.

Member Avatar for lordspace
0
117
Member Avatar for charbel007

what you can do is <input type="checkbox" name="emails[]" value="user1@domain.com" /> <input type="checkbox" name="emails[]" value="user2@domain.com" /> <input type="checkbox" name="emails[]" value="user3@domain.com" /> After the form submission you'll have an array with emails. The emails in checkboxes should be populated when you render the table. You can access them using this: [code] <?php …

Member Avatar for charbel007
0
800
Member Avatar for kevin wood

You can take a look at : [url]http://www.jeroenwijering.com/?item=JW_Image_Rotator[/url] or [url]http://www.huddletogether.com/projects/lightbox2/[/url]

Member Avatar for aylen
0
104
Member Avatar for kartik14

Ping 1.2.3.4 where 1.2.3.4 is the IP address assigned during Fedora setup or by DHCP server.

Member Avatar for Belrog
0
178
Member Avatar for 2eXtreme

Hi, The solution here is going to solve this issue but may not be good for SEO. You can use it only for the upload page and user specific pages don't need SEO on the other hand. Here we go. Create 2 frames. You need a small frame for the …

Member Avatar for lordspace
0
124
Member Avatar for veledrom

You have at least two options: [B]#1 quick and dirty:[/B] replace the line with this: [code]if (@mysql_num_rows($run) > 0)[/code] [B]#2 Check the return type.[/B] [code]if (empty($run)) { if (mysql_num_rows($run) > 0) { .... } } else { // NO results } [/code] a quote from [url]http://www.php.net/mysql_query[/url] [QUOTE]Return Values For SELECT, …

Member Avatar for lordspace
0
165
Member Avatar for marjan_m

It is always a good idea to post the error message you receive. Also you could read the FAQ of the hosting that you're using because : - you may be using wrong ftp address - wrong ftpuser: your ftp username may look like an email (cPnael managed hostings) - …

Member Avatar for hooinsider
0
123
Member Avatar for Robin_CG

Is it a local machine or a hosting server ? Could you post apache's log files ?

Member Avatar for Robin_CG
0
208

The End.