| Subcribe via RSS

Call-time pass-by-reference has been deprecated

April 12th, 2008 | No Comments | Posted in anything under the moonlight, php by dreamluverz


Got this error and after some digging I found a solution. It was listed below. But looking back into my code I noticed that I called the function twice and used it incorrectly that caused the error!. :P Anyways, aside from that in case you encountered this error you can have the solution below :D

Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer

Solution:

For the Warning: Call-time pass-by-reference, in c:\EasyPhp\apache
\php.ini set :
allow_call_time_pass_reference = true
Tags: , , ,

[function.main]: failed to open stream: Permission denied

March 4th, 2008 | No Comments | Posted in php by dreamluverz

Warning: … [function.main]: failed to open stream: Permission denied



Warning: main() [function.include]: Failed opening … for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in …

I wanna bear in mind that this error has something to do with file permission coz at first glance I just checked the path of the included file but looking closely it has something to do with the file permission. Changing it to 755 solved the issue. :P

And one more thing, I had this error_reporting(E_ALL && ~NOTICES); on my script and can’t see why my included file is not functioning. I’ve been looking what could be the error. Commented this error_reporting(E_ALL && ~NOTICES); kuala!!! I found the Warning msg! :P so be sure to comment this line when debugging your code or else you’ll get crazy looking for the error :P

Tags: , , ,

Warning: mysql_real_escape_string() [function.mysql-real-escape-string]:

March 2nd, 2008 | No Comments | Posted in anything under the moonlight, php by dreamluverz

Warning: mysql_real_escape_string() [function.mysql-real-escape-string]: Access denied for user ‘apache’@'localhost’ (using password: NO)…

I’m having that error for using mysql_real_escape_string in one of my functions. Checked php manual and it says u need to have mysql connection to use that. :P well.. my bad…coz I’m using it in a variable before putting in a query. This is an example on how to use it anyway…


// Connect
$link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password')
OR die(mysql_error());

// Query
$query = sprintf(”SELECT * FROM users WHERE user=’%s’ AND password=’%s’”,
mysql_real_escape_string($user),
mysql_real_escape_string($password));
?>

Tags: , , ,

[function.move-uploaded-file]: failed to open stream: Permission denied

February 24th, 2008 | 1 Comment | Posted in php by dreamluverz

[function.move-uploaded-file]: failed to open stream: Permission denied

Encountered this error. I’ve checked the path, permission it’s all correct. Then I tried changing the permission of the folder on where to move the files to 777… problem solved. Thanks God! :)

Tags: , ,

Virtual Class — cannot instantiate

February 23rd, 2008 | No Comments | Posted in php by dreamluverz

I’m getting this error Virtual Class — cannot instantiate within nested class/functions. I checked the class reported by the error and instead of using extended class when using other class inside that specific class, I used class::function, it solved problem.

Tags: , , ,

[function.getimagesize]:could not make seekable

February 21st, 2008 | No Comments | Posted in php by dreamluverz

I’m getting this error using the function getimagesize: [function.getimagesize]:could not make seekable

I’ve checked the path it’s right, checked if the image existed. It was. I took a closer look on the details of getimagesize on php manual for the accepted file types and it says jpg file type and mine was jpeg. MOdified it using photoshop to jpg file type and it solved my prob :)

Tags: , , , ,