Jump to content

[SOLVED] Warning: flock() expects parameter 1 to be resource


eMonk

Recommended Posts

i'm getting the error in the topic with this code. i don't think i'm pointing to the correct path using  $DOCUMENT_ROOT.

 

$DOCUMENT_ROOT = $SERVER['DOCUMENT ROOT'];

// open file for appending
@ $fp = fopen("$DOCUMENT_ROOT/www.domain.com/orders/orders.txt", 'ab');

flock($fp, LOCK_EX);

if (!$fp) {
echo "<p><strong>Your order could not be processed at this time.
	Please try again later.</strong></p></body></html>";
exit;
}

 

- the .php file is uploaded in /www.domain.com/test/processorder.php

- the orders.txt is uploaded in /www.domain.com/orders/orders.txt

 

how do i know 100% if i'm pointing to the right file in fopen?

Link to comment
Share on other sites

here's my html output

 

Warning: flock() expects parameter 1 to be resource, boolean given in /usr/www/virtual/emonk/www.domain.com/test/processorder.php on line 68

 

Your order could not be processed at this time. Please try again later.

 

line 68

flock($fp, LOCK_EX);

 

your if statement was also added to the php file but doesn't appear in the html output...

Link to comment
Share on other sites

by /www.domain.com/orders/orders.txt

do you mean the complete file system root?

then you don't need the document root thing.

 

i tried using

 

@ $fp = fopen("http://www.domain.com/orders/orders.txt", 'ab');

&

@ $fp = fopen("$DOCUMENT_ROOT/orders/orders.txt", 'ab');

 

but get the same error.

Link to comment
Share on other sites

  • 11 months later...

Hi there,

 

I'm getting the above error message. I'm not sure what's wrong becaus I beleive I'm pointing to the correct path.

 

I'm using the example for the PHP and MySQL Web Development book whick I think is the same example used by eMonk in a previous topic.

 

 
// open file for appending

  @ $fp = fopen("http://137.15.xxx.xxx/officet/Commitees/Auto/orders.txt", "a");  


  flock($fp, 2); 

.

 

When adding retcateme (Scott's) suggestion before the flock statement, I get the "Failed to Open" message

 

if($fp){
    echo "Failed to open file";
    exit;
}

Link to comment
Share on other sites

  • 2 years later...

step 1To solve the problem find the line that says:

@ $fp = fopen("$DOCUMENT_ROOT/../orders/orders.txt", 'ab');

Step 2 change it from this

@ $fp = fopen("$DOCUMENT_ROOT/../orders/orders.txt", 'ab');

to this

@ $fp = fopen("$DOCUMENT_ROOT/orders/orders.txt", 'ab');

 

step 3save your php file

 

step 4Also create a file in your server with the name orders and inside create a text file named orders.txt

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.