recent answers
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/
What is: Failed opening 'includes/languages/english/' for inclusion
You are trying to include a directory. This can not work. Look in line 126 of your file /home/a9394051/public_html/admin/includes/application_top.php.
Their must be something like:
include('includes/languages/english/');
Change it to:
include('includes/languages/english/file.example');
Include function must point to an file/url, not a directory!
Their must be something like:
include('includes/languages/english/');
Change it to:
include('includes/languages/english/file.example');
Include function must point to an file/url, not a directory!
answered by Not Registered on 26 May 2008 8:51
How to display php page
This means your webserver (i.e. apache) is not configured to handle php files correctly.
answered by Not Registered on 26 May 2008 8:49
PHP Fatal error: Can't use method return value in write context in
Could you please post your code? I can only guess you tried something like:
$obj = new Foo();
if (1 == $obj->bar()) continue
Am I right?
$obj = new Foo();
if (1 == $obj->bar()) continue
Am I right?
- what does phpBB : CRITICAL ERROR MEAN, Not Registered
- Warning: Missing Argument and other stuff, Not Registered
- PHP Fatal erro, Not Registered
- php make install fails, Not Registered
- configure: error: Cannot find MySQL header files under , Not Registered
- What is: Failed opening 'includes/languages/english/' for inclusion , Not Registered
- How to display php page, Not Registered
- what is this error Cannot use string offset as an array, Not Registered
- PHP Fatal error: Can't use method return value in write context in, Not Registered
- Warning: fopen: failed to open stream: Permission denied, Not Registered
- what does phpBB : CRITICAL ERROR MEAN
"What is phpBB? Since its creation in 2000, phpBB™ has become the most widely used Open Source... - Warning: Missing Argument and other stuff
Could you please paste the exact error message? Otherwise i can´t help you. Do you have:- PHP Fatal erro
You have a time limit for script execution. Your script exceeded this time limit. You can try to...- php make install fails
Try adding the following line to your httpd.conf: LoadModule suexec_module...- What is: Failed opening 'includes/languages/english/' for inclusion
Have a look at http://php.net/include/ - PHP Fatal erro



















