Ok this is a little simular to my problem but also more involved. I am a newbie to php and MySQL. I have to have phpScheduleIt up and running on a Windows XP for my job. Originally the whole thing crashed before I work on it. So I deleted the old phpScheduleIt (version 1.1.0) along with the old server that supported it
(WAMP with Apache 1.0.x, MySQL 4.02, php 3.x, phpMyAdmin 2.61, and MySQLite 0.9.x)
NOW I downloaded and installed the new WAMP5 with the lated updated versions of php5, phpMyAdmin 2.8.1, MySQLite 1.2.0, and MySQL 5. Then I installed phpScheduleIt 1.1.3 just because I wanted something that is more stable. I installation took a little work with the code (because of where the files are located). It seems like phpScheduleIt would work BUT I only get the login and the registraion page to operate BUT for any other page I get this error on the top of the screen
There was an error executing your query:
DB Error: no such table
Back
phpScheduleIt v1.1.3
I used my Administator username and password to enter in the database. But what is odd is that I created the tables in phpMyAdmin and that gives me access to the tables but I can only edit the tables there and who can use them and edit them. So my question is... HOW CAN I CREATE THESE TABLES ON THE WEB ? Because according to MySQL the tables and indexes have aready been created but why wouldn't phpScheduleIt display them.
I even tried changing the error messages in the DBEngine.class.php file so that it would make a different error message that tells the location for each function in that class. Granted I know that there are subclasses that depend on DBEngine.class for the same function but I don't see it coming up. Here's what I wrote for the check_error function.
//------------------------------------------------------------------------------------------------------------
function check_for_error($result) {//-----------------------------------------------The part I changed
if (DB::isError($result))// VVVVV 06/12/06 VVVVV
CmnFns::do_error_box(translate('There was an error executing your query (at god knows where)') . '<br />'
. $result->getMessage()
. '<br />' . '<a href="javascript: history.back();">' . translate('Back') . '</a>');
return false;
}
///-------------------------------------------------------------------------------------------------------------
WHAT CAN I DO?

:shock: