Not Registered's profile
tags
contributions
Warning: fopen: failed to open stream: Permission denied
Simple but insecure:chmod 0777 filename
posted on 21 March 2008 20:47
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?
posted on 31 March 2008 15:13
How to display php page
This means your webserver (i.e. apache) is not configured to handle php files correctly.posted on 26 May 2008 8:49
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!
posted on 26 May 2008 8:51
What is: Failed opening 'includes/languages/english/' for inclusion
Have a look at http://php.net/include/posted on 26 May 2008 13:36
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
posted on 29 May 2008 10:03
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
posted on 14 July 2008 16:56
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?
posted on 18 July 2008 13:07
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.
posted on 4 August 2008 10:15
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...
posted on 1 October 2008 11:26
PHP Fatal error: Can't use method return value in write context in
Please seehttp://www.bala-krishna.com/php-fatal-error-fix-cant-use-method-return-value-in-write-context
posted on 9 October 2008 2:21
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...
posted on 20 October 2008 14:57
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.
posted on 20 October 2008 15:01
Transport error (#404)
I think it is not php related. A 404 error means that a requested page does not exist.What page do you request? Is it a file or some mod_rewrite?
posted on 30 October 2008 12:04
what does following message mean: Fatal error: Call to undefined function validip () in
your php code calls a function which does not exists. It´s name is "validip". Open all your php files and look for "function validip(", perhaps you just have misspelled it and it should be "valid_ip". Or you have to include a php file, in which the function is defined.posted on 6 November 2008 9:28
web site doews not load
In your file "database.php" some code is executed to connect to a database.The given username/password in this code do not match the mysql server (you gave wrong credentials) and therefore no connection is established.
Ask your mysql-administrator or look for some typos in your username/password
posted on 19 November 2008 11:22
what does this error mean
Please post your full error message.posted on 3 February 2009 19:39
my wordpress had an error after changing a theme. How can I fix it?
Sry, I am not a wordpress expert.I can only tell you the function post_class is missing for some reason...
posted on 3 February 2009 19:40
Can not open website anymore
Try to upload an .htaccess file in your document root like this:php_admin_flag register_globals on
posted on 17 February 2009 21:20
can't retrive data from mysql database
This could mean you have a problem to set up a mysql connection. Are you sure your username and password are correct?posted on 17 February 2009 21:21
just error..help me pls
You can´t use function return values directly as an array. This is your code (an example):$str = explode( "-", $frm['CUSTOM1'] )[1];
$id = explode( "-", $frm['CUSTOM1'] )[0];
You must save the return value of explode in a variable before you use it. Change your code to something like:
$arrTmp = explode( "-", $frm['CUSTOM1'] );
$str = $arrTmp[1];
$id = $arrTmp[0];
HTH
posted on 26 February 2009 12:36
Php closing tag displays on screen
No idea. Is your php code executed correctly? Sure there is no typo anywhere?posted on 26 February 2009 12:37
Notice: Undefined index: languages
This error appears when you try to access an array value and the key is not within the associative array.Example:
$test = array ("foo" => "bar", "tricky" => "code");
echo $test['foo']; => foo , all fine
echo $test['lanugages'] => error, because there is no key "languages"
posted on 26 February 2009 12:40
PHP Error message.what does it mean?
you have the wrong username / password to use the mysql connection.You must replace "database usernam" etc. with your own data.
posted on 15 March 2009 22:19
browser cannot open php files
Do you open them locally from your hdd or from internet?posted on 21 March 2009 14:14
ailed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\wamp\www\sample4mail\forgot.php on line 28. what does this mean?
You have tried to send an email using SMTP at localhost.Do you have a mailserver running at localhost?
Otherwise, try to change your SMTP setting in php.ini file and use your remote host.
posted on 24 March 2009 17:27
what does unexpected $end mean?
This could mean that your code endedunexpected. Perhaps you have an open
bracket an forgot the closing one, eg.
<?php
if (1<0) {
code....
closing bracket ist missing
?>
posted on 24 March 2009 17:29
can anyone correct the error in this code for me please
you are not allowed to have a "/" in a variable name, see http://de3.php.net/manual/en/language.variables.basics.phpChange it from $images/pee to $images_pee and so on
posted on 30 March 2009 17:49
browser cannot open php files
why doesn't anybody answers seem to answer this in any foum?posted on 24 June 2009 2:05
browser cannot open php files
google wamp and download it. it is a program used to host webservers but you can simply host it localy for only you when ever and you will be able to open PHP files.posted on 7 January 2010 10:29
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 ' instead of "posted on 7 January 2010 10:31
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 includeposted on 4 May 2010 13:42
What is: Failed opening 'includes/languages/english/' for inclusion
Yes, please see www.deal-shoe.composted on 13 June 2010 16:25
questions
Warning: fopen: failed to open stream: Permission denied
submitted on 21 March 2008 20:21
This happens when I try to access a file using "fopen". I´m on a LAMP system. How can I grant permission?
PHP Fatal error: Can't use method return value in write context in
submitted on 27 March 2008 19:20
Can anybody help me?
what is this error Cannot use string offset as an array
submitted on 9 May 2008 8:55
Cannot use string offset as an array
How to display php page
submitted on 21 May 2008 21:39
The file does not display but the "save file as" dialog box appears
What is: Failed opening 'includes/languages/english/' for inclusion
submitted on 23 May 2008 16:16
Warning: include() [function.include]: Failed opening 'includes/languages/english/' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/a9394051/public_htm...
configure: error: Cannot find MySQL header files under
submitted on 29 May 2008 9:32
My configure exits with this message, although i have written:
--with-mysql=/usr/local/mysql
My path is correct, so what is the problem?
php make install fails
submitted on 29 May 2008 9:59
here is the outut of "make install"
apxs:Error: Activation failed for custom /etc/apache2/httpd.conf file..
apxs:Error: At least one `LoadModule' directive already has to exist.....
PHP Fatal erro
submitted on 6 July 2008 1:07
Fatal error: Maximum execution time of 10 seconds exceeded in /home/a3627172/public_html/File/classes/http.php on line 220
Warning: Missing Argument and other stuff
submitted on 15 July 2008 21:27
happens when i upload content including images
what does phpBB : CRITICAL ERROR MEAN
submitted on 29 July 2008 18:37
When I try to get to a web site, this pops up instead
Undefined index: language in
submitted on 6 October 2008 17:18
The website has Flash navigation, and html below in Iframes two language, English and Arabic. It seems when the website is idle for a bit that this error appears and the site needs to be reloaded N...
Cannot modify header information - headers already sent by
submitted on 19 October 2008 2:51
USing to create an Excel Spreadsheet
what does following message mean: Fatal error: Call to undefined function validip () in
submitted on 6 November 2008 0:37
can you please explain what needs to be done to view the web site or what the issue above means?
web site doews not load
submitted on 18 November 2008 11:10
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'rmaidwel'@'localhost' (using password: YES) in /home/rmaidwel/public_html/includes/functions/database....
what does this error mean
submitted on 17 December 2008 7:41
on line 2 is include_once 'register_globals.php'; do I need to remove this or what?
what does this error mean
submitted on 17 December 2008 7:44
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/nosexdat/public_html/sign_up.php:7) in /home/nosexdat/public_html/re...
my website shows this
submitted on 5 January 2009 8:35
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/a5578334/public_html/flash.php on line 7
my wordpress had an error after changing a theme. How can I fix it?
submitted on 12 January 2009 1:57
PHP error message, Fatal error: Call to undefined function post_class() in /home/a1734240/public_html/wp-content/themes/litethoughts/index.php on line 7
can't retrive data from mysql database
submitted on 17 February 2009 7:53
it showing an error that is : Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/events/public_html/index.php on line 37
Fatal err
Can not open website anymore
submitted on 17 February 2009 16:42
Server Requirement Error: register_globals is disabled in your PHP configuration. This can be enabled in your php.ini configuration file or in the .htaccess file in your catalog directory.
error copying batch files!
submitted on 17 February 2009 19:46
"copy.php" script want to copy all files(url in "url.txt" file) to this server, but return "error"!
Please help me.
note: i use copy function for copy file from anot...
just error..help me pls
submitted on 23 February 2009 5:59
Parse error: syntax error, unexpected '[' in /home/a4462461/public_html/index.php on line 163
here's the code
<?php
$arr = get_defined_vars( );
while ( list( $kk, $vv ) ...
Php closing tag displays on screen
submitted on 25 February 2009 2:51
I have a php script at the geginning of my html. Everything works fine however, in the upper left hand corner the closing tag is printed on screen. There is no extra white space around the tags. An...
Notice: Undefined index: languages
submitted on 26 February 2009 10:51
Notice: Undefined index: languages in /home/cs114183/public_html/infusions/wooya_web_stats_panel/wooya_web_stats_panel.php on line 40
i have the following error plz tell me the solution
submitted on 4 March 2009 10:27
<br />
<b>Warning</b>: [MapServer Error]: msDrawMap(): Failed to draw layer named 'clouds'.
in <b>C:\ms4w\Apache\htdocs\test1\ex1_map_basic.php</b> on lin...
PHP Error message.what does it mean?
submitted on 14 March 2009 1:30
PHP Error Message
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'database usernam'@'localhost' (using password: YES) in /home/a5464673/public_ht...
browser cannot open php files
submitted on 20 March 2009 3:58
when i try to run my php files, browser(Mozilla Firefox) cannot open the files. Why??
ailed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\wamp\www\sample4mail\forgot.php on line 28. what does this mean?
submitted on 23 March 2009 9:18
how to send mail using php script?
what does unexpected $end mean?
submitted on 24 March 2009 6:56
says there is an unexpected $end at the bottom of my code
can anyone correct the error in this code for me please
submitted on 27 March 2009 16:17
Parse error: syntax error, unexpected '/', expecting ')' in /www/110mb.com/m/y/f/r/e/n/c/h/myfrenchwife/htdocs/thumb php.php on line 3
<?php
function createThumbnail ( $i...
No permission to access /php/php-cgi.exe
submitted on 30 April 2009 7:26
php scrpts are not executed
Php Error
submitted on 18 May 2009 14:13
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND dateadded < '2009-05-18'' at line 1...
What does this php message mean
submitted on 13 June 2009 9:17
A PHP error was encounted
Severity: User Warning
Message: Smarty error: unable to read resource: "includes/subscribe.html"
Filename: Smarty/Smarty.class.php
Line number: 1095
What does this php message mean
submitted on 13 June 2009 9:30
A PHP error was encounted
Severity: User Warning
Message: Smarty error: unable to read resource: "includes/subscribe.html"
Filename: Smarty/Smarty.class.php
Line number: 1095
What this fwrite error means?
submitted on 15 June 2009 4:25
I get this error:
supplied argument is not a valid stream resource
I dont get it... How do i validate that resource?
Thanks
connecting with database
submitted on 25 June 2009 17:14
hii.i m a student and i have some problem . i want to with database. it show the error which is ERROR:mysql_connect() access denied for user "ODBC@LOCALHOST" can any1 help me
is a php error a hosting issue?
submitted on 26 June 2009 11:00
i am wanting to find out whether a php error is a web hosting issue or a web developer issue?
How to redirect to custom error page if any php script error
submitted on 27 August 2009 11:27
I want to redirect to our custom error page if any php script error like (404 redirection). Is this possible?
syntax error close to a double quote (") - none on page
submitted on 23 October 2009 2:33
PHP is throwing it's usual vague error 'check your book on syntax... error near " on line X
The scripts is are short and there is no double quote (")
I understand the &qu...
Sending mail error
submitted on 25 October 2009 6:56
I am using php, I am using wamp server and running php file , which is placed in wampserver/www/ . But I am getting the error "Failed to connect to mailserver at "localhost" port 25,...
What does this error message mean?
submitted on 3 December 2009 1:21
Can't use function return value in write context
Fatal error: Call to undefined function:
submitted on 10 May 2010 15:25
can anyone give me a pointer pls? i just installed some software and i went through all the stages of the installation without any problems
but when i go to the home page of my site i get this mes...
Fatal error: Cannot redeclare is_rtl()
submitted on 18 June 2010 16:05
Tried to open my wordpress made website, instead of the site I only get to see this error all of a sudden.
Fatal error: Cannot redeclare is_rtl() (previously declared in /var/accounts/CN20090364...
what does this mean
submitted on 20 June 2010 20:12
php error severity:notice Message: Undefined indez: out
Filename.libraries/Vinlink.php Line number : 48
Why is this happening?
submitted on 1 July 2010 8:50
Parse error: syntax error, unexpected '<' in /home/a5611424/public_html/forum/pages/index.php(74) : eval()'d code on line 1
This script is supposed to look up information and s...
while calling a php script from another
submitted on 9 July 2010 12:30
i had copied the php coding from the server to the localhost.now its not running,since i need to change several urls of linking those php files.but facing problems with include() function.and also ...
PHP Download error
submitted on 10 August 2010 11:46
When I try to open php file from htdoc dir of apache server, i get one window suggesting to open or download file
interests
- Warning: fopen: failed to open stream: Permission denied
- PHP Fatal error: Can't use method return value in write context in
- what is this error Cannot use string offset as an array
- How to display php page
- What is: Failed opening 'includes/languages/english/' for inclusion
- configure: error: Cannot find MySQL header files under
- php make install fails
- PHP Fatal erro
- Warning: Missing Argument and other stuff
- what does phpBB : CRITICAL ERROR MEAN
- fopen errors
- Undefined index: language in
- Cannot modify header information - headers already sent by
- Transport error (#404)
- what does following message mean: Fatal error: Call to undefined function validip () in
- web site doews not load
- what does this error mean
- what does this error mean
- my website shows this
- my wordpress had an error after changing a theme. How can I fix it?
- can't retrive data from mysql database
- Can not open website anymore
- error copying batch files!
- just error..help me pls
- Php closing tag displays on screen
- Notice: Undefined index: languages
- i have the following error plz tell me the solution
- PHP Error message.what does it mean?
- browser cannot open php files
- ailed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in C:\wamp\www\sample4mail\forgot.php on line 28. what does this mean?
- what does unexpected $end mean?
- can anyone correct the error in this code for me please
- No permission to access /php/php-cgi.exe
- Php Error
- What does this php message mean
- What does this php message mean
- What this fwrite error means?
- connecting with database
- is a php error a hosting issue?
- failed to open stream: Device busy
- How to redirect to custom error page if any php script error
- syntax error close to a double quote (") - none on page
- Sending mail error
- What does this error message mean?
- Fatal error: Call to undefined function:
- Fatal error: Cannot redeclare is_rtl()
- what does this mean
- Why is this happening?
- while calling a php script from another
- PHP Download error
- 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?



















