Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6836587
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:22:24+00:00 2026-05-26T23:22:24+00:00

How do I solve my PHP startup warning: PHP Warning: PHP Startup: Unable to

  • 0

How do I solve my PHP startup warning:

PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions 
/no-debug-non-zts-20090626/imap.so' - /usr/lib/php/extensions/no-debug-non-zts-20090626
/imap.so: cannot open shared object file: No such file or directory in Unknown on 
 line  0
 PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions 
/no-debug-non-zts-20090626/mcrypt.so' - /usr/lib/php/extensions/no-debug-non-zts-  
20090626/mcrypt.so: cannot open shared object file: No such file or directory in   
Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions 
/no-debug-non-zts-20090626/memcache.so' - /usr/lib/php/extensions/no-debug-non-zts- 
20090626/memcache.so: cannot open shared object file: No such file or directory in  
Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions
/no-debug-non-zts-20090626/mysql.so' - /usr/lib/php/extensions/no-debug-non-zts- 
20090626/mysql.so: cannot open shared object file: No such file or directory in 
Unknown on line 0 PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib
/php/extensions/no-debug-non-zts-20090626/mysqli.so' - /usr/lib/php/extensions
/no-debug-non-zts-20090626/mysqli.so: cannot open shared object file: No such file or 
directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions
/no-debug-non-zts-20090626/pdo.so' - /usr/lib/php/extensions/no-debug-non-zts-20090626
/pdo.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions  
/no-debug-non-zts-20090626/pdo_mysql.so' - /usr/lib/php/extensions/no-debug-non-zts-
20090626/pdo_mysql.so: cannot open shared object file: No such file or directory in 
Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions
/no-debug-non-zts-20090626/suhosin.so' - /usr/lib/php/extensions/no-debug-non-zts-  
20090626/suhosin.so: cannot open shared object file: No such file or directory in 
Unknown on line 0

I’ve many configuration files in my config folder, I don’t know where they come from:

PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/gd.ini on  
line 1 in Unknown on line 0 
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/gd.ini on 
line 2 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/imap.ini 
on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/mcrypt.ini 
on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d  
/memcache.ini on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d 
/mysql.ini   
on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d 
/mysqli.ini  
on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/pdo.ini    
on   line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d  
/pdo_mysql.ini on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/xcache.ini 
on line 1 in Unknown on line 0
PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/conf.d/xcache.ini 
on line 9 in Unknown on line 0

Because of the warning I think I don’t need them?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T23:22:24+00:00Added an answer on May 26, 2026 at 11:22 pm

    mysql_pdo is the PHP Data Objects extension used for creating prepared SQL statements. For mysql_cli, CLI stands for Command Line Interface. Instead of removing the config files, open each one and remove or change the comments that are generating warnings (comments begin with a ; in php.ini)

    As for the dynamic loading warnings, there is a directive in php.ini called extension and will look similar to the following: (This is for a Windows box, *nix will be slightly different)

    extension=php_bz2.dll
    ;extension=php_curl.dll
    ;extension=php_dba.dll
    extension=php_mbstring.dll
    extension=php_exif.dll
    

    Notice how some are commented out – Your php.ini is attempting to dynamically load extensions that cannot be found. Either comment out the lines in the configuration file(s) that are loading the erroneous extensions, or find the missing files. You may need to modify the php.ini directive extension_dir if you determine that you have the extension files, but PHP is not “finding” them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here's the problem I'm trying to solve: I have a dynamic php-driven website that
How to solve set_time_limit not affecting PHP-CLI? #!/usr/bin/php -q <?php set_time_limit(2); sleep(5); // actually,
I'm writing an algorithm in PHP to solve a given Sudoku puzzle. I've set
can anybody help me solve this : i got $filename= index 198.php; i use
I've been working with PHP lately, and I came across something I couldn't solve.
<?php $tab=1;/*$_GET['tab'];*/ $id=1111;/*$_GET['id'];*/ include_once('solve.php'); $query=SELECT user_job.level1, user_job.tab_level, job.money_gain, job.exp_gain, job.energy_required, job.name,job.job_id FROM user_job RIGHT
EXPLAINING WHAT I'M TRYING TO SOLVE: I have a webpage ( file_list.php ) showing
I'm trying to solve Project Euler #9, which is http://projecteuler.net/index.php?section=problems&id=9 . I've looked through
I have a rather (I think) easy problem to solve but being a PHP
Having found out how to find PHP problems. I am now trying to solve

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.