require_once () [function.require]: Gerekli '/ vars.inc' açılış Başarısız (include_pathdaki = '; C:. \ php5 \ pear')

0 Cevap php

Customerappglobal, customerapp ve naturaleigh - Benim yerel makine üzerinde çeşitli siteler kurulum var. Customerappglobal - - şu anda çalışmıyor çünkü çalışma gerek tek tek şu ben sadece bir tane var. Benim httpd.conf dosyasına aşağıdaki kodu eklemiş:

<VirtualHost *:427>
 # The name to respond to
 ServerName customerappglobal
 # Folder where the files live
 DocumentRoot "C:/HeritageApps/CustomerApp_v2"
 # A few helpful settings...
 <Directory "C:/HeritageApps/CustomerApp_v2">
  allow from all
  order allow,deny
  # Enables .htaccess files for this site
  AllowOverride All
 </Directory>
 # Apache will look for these two files, in this order, if no file is specified in the URL
 DirectoryIndex index.html index.php
</VirtualHost>


<Directory "c:/HeritageApps">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride all

    #
    # Controls who can get stuff from this server.
    #

#   onlineoffline tag - don't remove
#Allow,Deny
    Order Deny,Allow
    Allow from all

</Directory>

Bu çalışması için yeterli görünmektedir (oh ve HOSTS dosyasına eklenen bir satır ..).

Her neyse PHP 5, Apache ve mySQL ile WAMPServer (son bir) kullanıyorum. Ben yüklemek çalışıyorum dosyasında Require_oncenin için göreli yolunu kullanın sürece site güzel yükler.

Ben şu hatayı alıyorum:

Warning: require_once(/vars.inc) [function.require-once]: failed to open stream: No such file or directory in C:\HeritageApps\CustomerApp_v2\Customers\Customers.php on line 2

Fatal error: require_once() [function.require]: Failed opening required '/vars.inc' (include_path='.;C:\php5\pear') in C:\HeritageApps\CustomerApp_v2\Customers\Customers.php on line 2

Bildiğim kadarıyla yolu (C: \ php5 \ armut) dahil yok ve ben any php.ini dosyasında bu yolun izi veya httpd.conf dosyalarını bulamıyorum. Ben hata atma neden yolun olmayan varlığı olduğunu okudum, ama ben herhangi bir çözüm bulamadım. Bu son gün ya da iki olay olmuştur ve bir şey çok uzun süre işe yaramazsa ben yara ve öfkeli alma laneti muzdarip eğilimindedir - yani birisi bana bu konuda yardımcı olabilir, lütfen? Ben gerçekten yanlış gidiyor ya da yanlış nereye gittiğini ne bilmiyorum ... Ben düşünüyorum ki everywhere aradık. Ben sadece tüm bireysel uygulamalar (veya küresel olarak değişen parlak bir başlangıç ​​olurdu!) Için dahil yolunu değiştirmek gerekiyor.

0 Cevap