recent answers
Undefined index: language in
It is a notice and not an error.
For me it looks like you have an array and try to access a key, which does not exist (yet)
Here is an example:
<?php
$try = array();
echo $try["no_key_here"];
?>
So, your key "language" is not set/has no data.
For me it looks like you have an array and try to access a key, which does not exist (yet)
Here is an example:
<?php
$try = array();
echo $try["no_key_here"];
?>
So, your key "language" is not set/has no data.
answered by Not Registered on 20 October 2008 15:01
Cannot modify header information - headers already sent by
Your script has output before it can change the HTTP header data.
In most cases, you just have a blank before your opening <?php tag
Or you do a "echo" before session_start()?
If my hints don´t help, please post some more code...
In most cases, you just have a blank before your opening <?php tag
Or you do a "echo" before session_start()?
If my hints don´t help, please post some more code...
answered by Not Registered on 20 October 2008 14:57
PHP Fatal error: Can't use method return value in write context in
Please see
http://www.bala-krishna.com/php-fatal-error-fix-cant-use-method-return-value-in-write-context
http://www.bala-krishna.com/php-fatal-error-fix-cant-use-method-return-value-in-write-context
fopen errors
Could you please post your error message?
Perhaps you are not allowed to open the file, or you have a typo in the file path, or safe_mode is in effect, or you try to open a url and your server settings do not allow it, it could have plenty of reasons.
So please give us some code...
Perhaps you are not allowed to open the file, or you have a typo in the file path, or safe_mode is in effect, or you try to open a url and your server settings do not allow it, it could have plenty of reasons.
So please give us some code...
answered by Not Registered on 1 October 2008 11:26
PHP Fatal error: Can't use method return value in write context in
this error appear in this case, for example:
<?php
$object = new Object();
if( isset($object->getParam()) ){
die('ok');
}
?>
<?php
$object = new Object();
if( isset($object->getParam()) ){
die('ok');
}
?>
answered by Broderix Bro on 29 September 2008 14:55
what does phpBB : CRITICAL ERROR MEAN
"What is phpBB?
Since its creation in 2000, phpBB™ has become the most widely used Open Source forum solution."
This error means, that admin/webmaster of a website made a mistake in their forum software. This should be noticed an repaired soon, so just try again later.
Since its creation in 2000, phpBB™ has become the most widely used Open Source forum solution."
This error means, that admin/webmaster of a website made a mistake in their forum software. This should be noticed an repaired soon, so just try again later.
Warning: Missing Argument and other stuff
Could you please paste the exact error message? Otherwise i can´t help you.
Do you have:
<form enctype='multipart/form-data' ... >
for uploading files?
Do you have:
<form enctype='multipart/form-data' ... >
for uploading files?
answered by Not Registered on 18 July 2008 13:07
PHP Fatal erro
You have a time limit for script execution. Your script exceeded this time limit.
You can try to set an own time limit using the function:
set_time_limit() e.g.:
<?php
set_time_limit(30); //extend it to 30 seconds
In most cases this won´t work because it is forbidden by your webserver-configuration to override the setting.
Ask your provider to kindy raise the max_execution_time directive in php.ini
HTH, Max
You can try to set an own time limit using the function:
set_time_limit() e.g.:
<?php
set_time_limit(30); //extend it to 30 seconds
In most cases this won´t work because it is forbidden by your webserver-configuration to override the setting.
Ask your provider to kindy raise the max_execution_time directive in php.ini
HTH, Max
answered by Not Registered on 14 July 2008 16:56
source: http://de.php.net/manual/de/function.set-time-limit.php
source: http://de.php.net/manual/de/function.set-time-limit.php
php make install fails
Try adding the following line to your httpd.conf:
LoadModule suexec_module /usr/lib/apache2/modules/mod_suexec.so
It does not matter, which module you load here. PHP needs to find a "LoadModule" string and I believe your httpd.conf was simply empty
HTH
LoadModule suexec_module /usr/lib/apache2/modules/mod_suexec.so
It does not matter, which module you load here. PHP needs to find a "LoadModule" string and I believe your httpd.conf was simply empty
HTH
answered by Not Registered on 29 May 2008 10:03
What is: Failed opening 'includes/languages/english/' for inclusion
Have a look at http://php.net/include/
- PHP Download error, Not Registered
- while calling a php script from another, Not Registered
- Why is this happening?, Not Registered
- what does this mean, Not Registered
- Fatal error: Cannot redeclare is_rtl() , Not Registered
- Fatal error: Call to undefined function:, Not Registered
- plz solve this , Sajid Ali
- What does this error message mean?, Not Registered
- Sending mail error, Not Registered
- syntax error close to a double quote (") - none on page, Not Registered
- What is: Failed opening 'includes/languages/english/' for inclusion
Yes, please see www.deal-shoe.com - plz solve this
it means that the path that u're using is not correct check the location of the file that u want to... - syntax error close to a double quote (") - none on page
there will be a quote inside another quote. simply change the quote inside the other quote to '... - browser cannot open php files
google wamp and download it. it is a program used to host webservers but you can simply host it... - browser cannot open php files
why doesn't anybody answers seem to answer this in any foum?























