 |
 |
 |
Modules |
|
 |
Excellent Webhosting! |
|
 |
Search Coding Ground |
|
 |
Who's Online |
There are currently, 100 Coder(s) Online
You are another valued user and you are welcome! |
|
|
|
 |
Encyclopedia |
|
 |
Participate |
|
 |
Last Updated Scripts/Tutorials |
|
|
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/../.../coding.phpground.net/includes/sql_layer.php on line 286
To fix this go to includes/sql_layer.php from your ftp
and open the sql_layer.php on the pointed line you will find .
case "MySQL":
$row = mysql_fetch_row($res); <------Row 286
return $row;
break;;
------------------
Replace with
-----------------
case "MySQL":
if ($row = mysql_fetch_row($res)) {
return $row;
} else {
print (mysql_error());
}
break;;
this will give you a more detailed error
if you was getting this error under admin.php?op=FaqAdmin
the you will probably get this :
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/.../..../coding.phpground.net/includes/sql_layer.php on line 286
Table '...nuke_faqCategories' doesn't exist
-------------
To solve this go to admin/modules/adminfaq.php
in this file rename all faqCategories with faqcategories
same
replace _faqAnswer with _faqanswer
and re-upload..
---------------
same as above but here go modules/FAQ/index.php
replace _faqAnswer with _faqanswer
and re-upload..
---------------
Good luck!
|
| Posted on Monday, May 10 @ 10:57:19 PDT by Ace |
|
|
 |
 |
|
| |
 |
Related Links |
|
 |
Article Rating |
Average Score: 4.33 Votes: 3

|
|
|
|
 |
Options |
|
|
Associated Topics
 |
|
|
|
:: PHP Net Team 2003-2004 ::
| | |