Kohana error with utf8.php - php

Hi I was making app using kohana and I'm getting this error.
Anyone know how to fix this?
Fatal error: require(): Failed opening required '....../system/utf8/transliterate_to_ascii.php' (include_path='.:/usr/share/pear/') in .......system/classes/kohana/utf8.php on line 149
I was trying changin permission on files and nothing works.

Related

Getting Fatal Error when trying to activate wordpress plugin

Here is the error details I am getting:
Plugin could not be activated because it triggered a fatal error.
Warning: require_once(/nas/content/live/makefielddev/wp-content/plugins/woocommerce-services/classes/class-wc-connect-extension-compatibility.php): failed to open stream: No such file or directory in /nas/content/live/makefielddev/wp-content/plugins/woocommerce-services/woocommerce-services.php on line 37
Fatal error: require_once(): Failed opening required '/nas/content/live/makefielddev/wp-content/plugins/woocommerce-services/classes/class-wc-connect-extension-compatibility.php' (include_path='.:/usr/share/pear/php:/usr/share/php') in /nas/content/live/makefielddev/wp-content/plugins/woocommerce-services/woocommerce-services.php on line 37
I know there are other threads for this error, but couldn't find a thread with the "couldn't find a directory" error. I am not sure where to look or how to fix this...Can someone help?
NOTE: I have already tried a different theme and tried deactivating all plugins...regardless I am still getting this error.
More info: this error is triggered specifically by the WooCommerce Tax and Shipping plugin.
hi
This problem occurs because php could not find the
class-wc-connect-extension-compatibility.php file.
I'm not aware of your code in the woocommerce-services.php file.I
suggest a general solution, maybe your problem will be solved
First make sure there is such a file in this path
/nas/content/live/makefielddev/wp-content/plugins/woocommerce-
- services/classes/class-wc-connect-extension-compatibility.php'
Next.
Define the following constants in the woocommerce-services.php file
before writing any code
if (!defined('WOOCOMMERCE_SERVICES_BASENAME')) {
defined('WOOCOMMERCE_SERVICES_BASENAME') || define('WOOCOMMERCE_SERVICES_BASENAME',__DIR__);
}
if (!defined('WOOCOMMERCE_SERVICES_DIR')) {
define('WOOCOMMERCE_SERVICES_DIR', WOOCOMMERCE_SERVICES_BASENAME);
}
constant WOOCOMMERCE_SERVICES_DIR path keeper for
Your plugin.
Replace the code below with your code in the woocommerce-services.php file on line 37
require_once WOOCOMMERCE_SERVICES_DIR.'/classes/class-wc-connect-extension-compatibility.php';

Error when try to run a website in Xampp

I have very basic knowledge of coding, I took a copy of our company's website to practice making changes to it.
But when I try to run it I get this error
Warning: require_once(/var/www/html/classes/database_class_pdo.php):
failed to open stream: No such file or directory in
D:\xampp\htdocs\HJ\top.php on line 10
Fatal error: require_once(): Failed opening required
'/var/www/html/classes/database_class_pdo.php'
(include_path='D:\xampp\php\PEAR') in D:\xampp\htdocs\HJ\top.php on
line 10
Please, can someone tell me the issue here?
Thank you.
It's because your php file is trying to open a file named /var/www/html/classes/database_class_pdo.php but cannot find it. Try to see if the path is correct or if the file exists.

WordPress Error showing in compat.php

I am really new to wordpress environment.
I have the site on https://www.thewebdebug.com which is showing an error like
PHP Error Message
Fatal error: require() [function.require]: Failed opening required '/home/a9739613/public_html/wp-includes/random_compat/random.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/a9739613/public_html/wp-includes/compat.php on line 338
can anybody tell me what is going on and how should i fix it.? I had tried on the web but couldnot find a solution that fits my need. I have recently upgraded my wordpress and some plugins failed to do.

Zend Framework php error

Were currently trying to host an existing website on a new local server. I'm quite new to zend but have some experience in php.
this is the error code i get
Warning: require_once(../../Statement/Pdo.php): failed to open stream: No such file or directory in /Applications/MAMP/htdocs/Hg/Zend/Db/Adapter/Pdo/Abstract.php on line 33
Fatal error: require_once(): Failed opening required '../../Statement/Pdo.php' (include_path='.:/Applications/MAMP/bin/php/php5.5.26/lib/php') in /Applications/MAMP/htdocs/Hg/Zend/Db/Adapter/Pdo/Abstract.php on line 33
The pdo.php file links up fine in phpstorm. I haven't a clue whats up with this now.
Any help would be greatful
Cheers!

dompdf error - path issue

I am using the DOMPDF library to export a web page to a pdf file. Everything works just fine on my pc (localhost) but on Altervista it doesn't seem to work.
I get the following error message:
Fatal error: require_once() [function.require]: Failed opening required '.../dompdf/lib/html5lib/Parser.php' (include_path='.:') in .../dompdf/dompdf_config.inc.php on line 320
It's likely to be a path issue. Or maybe some kind of configuration is required in dompdf.
Can anyone help? Thanks!
alessandro

Categories