Page 2 of 2
Windows Install
Posted: Tue Dec 09, 2008 2:51 am
by anointeddan
What are the steps u used in installing the helpdesk software in windows 2003
Posted: Tue Dec 09, 2008 8:32 pm
by Klemen
Have you followed the instructions in readme.htm file?
Posted: Fri Sep 04, 2009 8:16 pm
by ritztech
seems like an old post but i get this (after i uncommented in the php.ini file)
do i need to install like mysql or php extensions to support mysql
THanks
unable to load dynamic library './php_mysql.dll' do i have to install an extension with mysql
Posted: Fri Sep 04, 2009 8:48 pm
by ritztech
i just noticed that no PHP exts are there .....
thanks
Posted: Fri Sep 04, 2009 9:19 pm
by ritztech
Hey again i just changed my install from php 5.14 to 5.20 (that installed the Ext modules)
and now i get this (PASSED the blank screen of death (BSOD) haha )
PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_mssql.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_oci8.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pdo_mssql.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pdo_oci.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pdo_oci8.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pdo_pgsql.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pdo_sqlite_external.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pgsql.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_pspell.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_sybase_ct.dll' - The specified module could not be found. in Unknown on line 0
Posted: Fri Sep 04, 2009 9:47 pm
by Klemen
Save this code as test.php and run it on your server:
Code: Select all
<?php
if (function_exists('mysql_connect'))
{
echo "MySQL installed";
}
else
{
echo "MySQL missing";
}
?>
What does the output say?