صفحة 2 من 2 الأولىالأولى 12
النتائج 16 إلى 19 من 19

الموضوع: عندي سكربت كل ما اجي اركبه تطلع لي هذي الرسالة !؟؟؟؟!!

  1. #16
    عضو نشيط
    تاريخ التسجيل
    Jun 2007
    المشاركات
    140


    الشرح من الموقع
    1//قم بتنزيل ملفات الخاصة بالبرنامج من هنا
    eAccelerator binaries for PHP 5.x (windows builds) | Technical articles on: Windows servers, Apache Web Server, MySQL, PHP, IIS
    اختر النسخة المتوافقة مع نسخة php الخاصة بك (ربما يتأخر إصدار نسخة متوافقة مع الإصدارات الأحدث من php

    2//انسخ المكتبات لمجلد ملحقات البي إتش بي الخاص بك
    كود:
    (مثلا : c:\php\extensions)
    تجد هذا المجلد داخل مجلد السيرفر المحلي لو كنت تستخدم واحدا

    تاكد من مسار ملحقات البي إتش بي من داخل ملف بي إتش بي إيني php.ini ابحث عن
    extension_dir = "c:/php/extensions"
    المسار سيتختلف تاكد منه يمكنك عكس الامر واستخدام الخطوة الثالثة لمعرفة المسار المناسب بالبحث عن
    extension_dir
    3//قم بعمل مجلد خاص بالملفات المؤقتة لملفات فك التشفير
    كود:
    (مثلا : D:\tmp\eaccelerator)
    4// اضف هذا لملف php.ini
    كود:
    extension="eaccelerator.dll"
    eaccelerator.shm_size="64" ; 20MB per heavy site ?
    eaccelerator.cache_dir="D:\tmp\eaccelerator"
    eaccelerator.enable="1"
    eaccelerator.optimizer="1"
    eaccelerator.check_mtime="1"
     ; 0 should be faster but will skip checking the modified date on your cached files eaccelerator.debug="0"
    eaccelerator.filter=""
    eaccelerator.shm_max="0"
    eaccelerator.shm_ttl="0" ( I have used 3600 = 1 hour)
    eaccelerator.shm_prune_period="0"  ( testing 1800)
    eaccelerator.shm_only="0" (testing 1 this seem noticeably faster?)
    eaccelerator.compress="1"
    eaccelerator.compress_level="9"
    eaccelerator.keys = "shm" (testing)
    eaccelerator.sessions = "shm" (testing)
    eaccelerator.content = "shm" (testing)
    eaccelerator.admin.name="yourusername" (upto eAccelerator 0.9.4)
    eaccelerator.admin.password="yourpassword" (upto eAccelerator 0.9.4)
    eaccelerator.allowed_admin_path = "C:\MySites\sitebuddy\wwwroot\control.php"  (NEW in eAccelerator 0.9.5)
    5//قم بعمل ريستارت للسيرفر


    هذا الشرح والترجمة من الصفحة التالية
    eAccelerator | Technical articles on: Windows servers, Apache Web Server, MySQL, PHP, IIS

    وهو حتى الخطوة الخامسة
    كود:
    e) Restart your Web Server.
    وهناك إضافات عن شرح الإعدادات الخاصة






  2. #17
    عضو نشيط
    تاريخ التسجيل
    Jun 2007
    المشاركات
    140


    وإن كان سكربت خاص فهذا خطأك لقبولك سكريبت مشفر لا تعلم على ماذا يحتوي وحتى لم تتعلم كيفية تشغيله






  3. #18
    عضو فعال جدا
    تاريخ التسجيل
    May 2007
    المشاركات
    2,455

    Smile



    طيب شوف هذا الشرح لان يتوافق مع الاباتشي اللي عندي لبرنامج اخر ولكن ليس مترجم ربما نستفيد منه اكثر وحبيت اعرفه اكثر فالاول صعب شوي ما يتوافق مع اللي عندي لان يحتاج تغيير اسماء مجلدات اكون شاكر لك

    طبعا هو تبابع لهذا الموقع بالضبط
    eAccelerator - Trac
    ولكن احتاج ترجمته وشكرا لك اخي والله يعافيك

    كود:
    1) Unzip the php source to a directory, we will use c:\php for this example.
    
    2) Unzip the eAccelerator source in the ext\ subdirectory of the php source.
       You should have something like c:\php, c:\php\ext and c:\php\ext\eaccelerator
    
    3) Unpack binary PHP in any other directory, and search for the .lib file.  If you are using PHP4, search for php4ts.lib.  If you are using PHP5 search for php5ts.lib.  For PHP5, php5ts.lib is located in the dev\ subdirectory of the root folder.
       Copy the .lib file to the PHP sources root directory that you unpacked the source files to earlier.  For our example, this is in c:\php.  This file will be used for linking
    
    4) Start Visual Studio and open the eAccelerator workspace:
        File > Open Workspace ...
        The workspace is located in the win32 subdirectory of the eAccelerator source (c:\php\ext\eaccelerator\win32\eaccelerator.dsw)
    
    6) Go to Build > Set active configuration ... and select the target you want to build.  Included Visual Studio profiles are:
        Debug
        Debug PHP5
        Release
        Release PHP5
    Select the profile according the PHP version you will compile.  
    Debug and Release are used for PHP4.  Debug PHP5 and Release PHP5 are used for PHP5.  For our example, we will compile with Release PHP5.
    
    7) Go to Build > Build eAccelerator.dll to build the eaccelerator extension.
    
    The .dll file will be created in sub-directories according to profile selection.  Our example will place the compiled .dll file in c:\php\ext\eaccelerator\win32\Release
    
    eLoader
    ------------
    If you want to build the eLoader dll you need to set eLoader as the active project:
        Project > Set Active Project > 2 eLoader
    Everything is the same as for eAccelerator. If have already done the steps above you have to start at step 6 but set eLoader instead of eAccelerator.
    
    WARNING: If you have build the eAccelerator project you have to do a Clean first else you'll get linker errors.
        Build > Clean







  4. #19
    عضو فعال جدا
    تاريخ التسجيل
    May 2007
    المشاركات
    2,455


    بخصوص السكربت فهو خاص لانه تابع لشركة وراح ابين لك ماهيته لكن احتاج ترجمته وبالتوفيق يالطيب










ضوابط المشاركة

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك
  •  

أضف موقعك هنا| اخبار السيارات | حراج | شقق للايجار في الكويت | بيوت للبيع في الكويت | دليل الكويت العقاري | مقروء | شركة كشف تسربات المياه | شركة عزل اسطح بالرياض | عزل فوم بالرياض| عزل اسطح بالرياض | كشف تسربات المياة بالرياض | شركة عزل اسطح بالرياض