النتائج 1 إلى 10 من 10

الموضوع: أريد شرح طريقة تركيب سكربت العقارات ؟!

  1. #1
    عضو سوبر نشيط
    تاريخ التسجيل
    Dec 2001
    المشاركات
    658

    أريد شرح طريقة تركيب سكربت العقارات ؟!



    إخواني أريد



    شرح طريقة تركيب سكربت العقارات




    هنا تفاصيل:

    http://www.built2go.com/tutorial.php/look/0/1/


    وهذا شرح بالإنجليزي من يلخصه بالعربي





    وفقكم الله









    Installation:



    Once unzipped you can upload all files and folders that are in the “Scripts” folder, to your website with your favorite FTP program.

    By default the script comes with Zend Encoded system_cls.php file. If you do not have Zend Optimizer installed on the server but you have ionCube, then rename system_cls.php to system_cls_zend.php and rename system_cls_ioncube.php to system_cls.php.





    *MOST FTP programs automatically detect the type of file you are transferring, and upload it in the proper mode. If yours doesn’t, PHP and html files need to be uploaded using ASCII mode, and image files and .ttf files need to be uploaded in BINARY mode. System_cls.php will need to be uploaded in BINARY mode. The ioncube one, if you use it, can be upload in ASCII mode.



    If you are unsure about how to do this then you need to read up on the manual for your favorite FTP software.



    Now depending on how your server is set up depends on if you need a shebang line or not. A shebang line goes into your scripts as the very first line. This line tells the server where php is located so it can run it, almost the same as a perl script. If your server is setup as a cgi module than you will need this line and chmod all files to 755. If your php is installed as an ISAPI module than you do not need this line and you shouldn’t have to chmod anything. Unless your host has it setup to where you do need the shebang line. To find out if you need this “shebang” line for your install you will need to contact your host.



    Once everything it uploaded we need to set some permission on certain folders. Windows usrs shouldn’t’ have to do this unless the permissions are not set for that user. We need to set “dtl_pic”, “org_pic” and the “thumb_pic” folders to 777 (full writable permission) so we can upload images to them when users add listings. The adminpanel will also need to be set to 777 until the install is done and the db.php file is written. Once written and the install done you can set this back to 755.



    Included is a file called pinfo.php, This will also tell you what is installed with your php package. Please have this page ready to view if you ever have a need to contact support at http://www.built2go.com/pmos/



    Lets begin the install:



    If you have any questions you can view a small tutorial, which may help you in this process.

    http://www.built2go.com/tutorial.php/look/0/1/





    First we need to edit a file. Open config.php and set the install directory/url. Only if you don’t install it in the default root directory.



    There are some variables you need to understand, not necessarily have to change.





    The site url variable doesn’t need to be touched unless you install/upload the script to another directory besides root. (public_html)



    $siteurl = "http://".$_SERVER['SERVER_NAME'];



    Again, do not edit that variable unless you installed it in another folder. If you have then it would look like this



    $siteurl = "http://".$_SERVER['SERVER_NAME']. "/foldername";







    This is basic language file. Feel free to change the text all you want. If your language is not English and you want to change it please feel free to edit this file and please send it to me. Full credit will be given to you for the edition to another language.



    $language = "eng";





    This setting is for the modules folder. Best set to the default as it is now.

    define('MODULE_DIR',"modules"); // no ending slashes.





    This setting is for your site email, change it to what your email is.



    define('FROM',"you@domain.com");





    This is the full path to all the scripts. If you are on a Windows server you have to edit this whole variable with the full path to your root directory. No Ending Slash. Do Not change the FULL_PATH name. The only part that needs to be changed is the $_SERVER['DOCUMENT_ROOT'] or the “c:/…” path. That is if you installed it in a new folder rather than the root directory. If you installed it in another folder besides root, than just add the folder like this:



    $_SERVER['DOCUMENT_ROOT']."/newfolder"

    "c:\www\root\inetpub\newfolder"



    Otherwise do not change it to anything. DO NOT edit this variable $_SERVER['DOCUMENT_ROOT'] , leave it intact as it is.



    This needs to be set PRIOR to install.



    IIS:

    This path is an example, please change it to your setup

    define('FULL_PATH', "c:/www/root/inetpub ");



    Unix/Linux:

    define('FULL_PATH', $_SERVER['DOCUMENT_ROOT']);



    These are some paths to the images being used and uploaded. If you install this script in the default directories you do not need to change these.



    define('NEWPICPATH',"$full_path/org_pic");

    define('THUMBPICPATH',"$full_path/thumb_pic");

    define('DTLPICPATH',"$full_path/dtl_pic");

    define('DTLPICURL',"$siteurl/dtl_pic");

    define('THUMBPICURL',"$siteurl/thumb_pic");







    For images it is important to set a set width and height as well as the max file size. If the images are to wide or to high then it has a possibility to distort the template design. So in this case we add a max-height and a max-width. File size is up to you. The bigger the file the more room it takes up on your server/web space. Use at your discretion.



    define('MAXFILE_SIZE',"100"); // in Thousands

    define(MAXIMAGE_W_SIZE,"160"); // max Width of the image define(MAXIMAGE_H_SIZE,"160"); // max Height of the image



    This variable checks when an users sends a contact email or message. Controls spamming of emails.



    define('FLOOD_TIMEOUT',"1800");





    For the modules to work, these variables need to be set. Each should be setup to the specifications of each merchant. ITEM_NAME is your representation of the payment process, name it how you see fit. CURENCY_CODE are for Paypal only. This sets up your currency to use with Paypal, change it to see fit.





    /* payment processors here PAYPAL*/

    define('FROM_PAYPAL',"paypal@paypal.com");

    define(ITEM_NAME," RealEstate");

    define('CURRENCY_CODE', "USD");

    /* Worldpay */

    define('INSTID',"123456"); // worldpay login #

    /*2Checkout*/

    define('SERIAL_ID',"123456"); // 2checkout login #





    This script allows you to add a prefix to your table names for Mysql. This gives the script a little bit more security, as people can’t guess at what you called your table names. This is to thwart hackers that attempt to get your Mysql information.





    /* Mysql Table prefix must be set here */

    define('TABLE_PREFIX',"");







    This ISO variable is important as it defaults to what the user will see when they load the page. By default it will point to United States. You are welcome to change this in the config file. More iso’s can be found here

    http://www.iso.org/iso/en/prods-serv.../list-en1.html



    define('C_ISO',"US");







    If this variable is set to 1 the session table has a tendency to get big. This will allow the script to clear out any old information that is not needed anymore. The script is set to 1 for the install, it is recommended to set it to 0 “after” the install is done.



    $GLOBALS['noshutdownfunc'] = 0;





    This variable is for your currency type. Mostly used to show prices of the homes and stuff. Can be used in conjunction with the Paypal currency code.



    define('CURRENCY', "$");





    Once everything is edited and you have uploaded the changes, we need to go to the install script. This file is located in the “Scripts” folder of the installation and called install.php. Run this file and it will step you through making the database tables and db file.



    Once installed and you move onto the admin section, you need to rename the install script or delete it. I would advise to delete this file off the server.



    After install and you have logged into the adminpanel, please adjust these variables to your liking.





    Once logged in to the adminpanel please read the section on “system Info” where it explains the various variables you have to set before the site is live.









  2. #2
    عضو سوبر نشيط
    تاريخ التسجيل
    Dec 2001
    المشاركات
    658


    اجنهد

    في التركيب


    حتى وصلت إلى هذه الرسالة:


    Unable to create b2gdb.php in adminpanel. Please chmod this folder to 777 and press refresh on this page.



    طبعاً عدلت مراراً وتكراراً المجلد

    adminpanel

    ولكن الرسالة لا تزال تظهر


    ما الحل ؟






  3. #3
    عضو نشيط جدا
    تاريخ التسجيل
    Sep 2006
    المشاركات
    335


    ما رايك نسوى لك الاسكربت اللى تبغاه برمجة خاصة

    باى مواصافت تريدها ؟؟

    ويمكنك مشاهده اخر عمل لنا فى مجال العقارات

    http://www.furss.com/

    ولمراسلتنا من هنا

    http://www.elbayt.net/?page=contact





    __________________
    شبكة البيت للتصميمات وبرمجة الاسكربتات الخاصة
    http://www.Elbayt.NeT
    الزواج - العقارات -الاخبار- مجلات خاصة - نيوك - منتديات - قروبات - مستعمل - الجوال - الوظائف - واى من الاسكربتات الخاصة

  4. #4
    عضو نشيط جدا
    تاريخ التسجيل
    Nov 2005
    المشاركات
    400


    Unable to create b2gdb.php in . Please chmod this folder to 777 and press refresh on this page

    جرب ضع التصريح 777 لمجلد adminpanel






  5. #5
    عضو سوبر نشيط
    تاريخ التسجيل
    Dec 2001
    المشاركات
    658


    اقتباس المشاركة الأصلية كتبت بواسطة اسلام سوفت
    Unable to create b2gdb.php in . Please chmod this folder to 777 and press refresh on this page

    جرب ضع التصريح 777 لمجلد adminpanel

    الأخ اسلام سوفت

    تم حل المشكلة والحمد لله

    كان هناك سطر خطأ في ملف الكونفيق


    والحمد لله الآن تمام باقي التعريب والله يعين


    شاكر لك وفقك الله وبارك فيك






  6. #6
    عضو نشيط جدا
    تاريخ التسجيل
    Mar 2005
    المشاركات
    485


    اخي abomosab

    هذا السكربت لا يمكن استخدام الترميز العربي فيه وانا بصدد حل المشكلة حالياً ..

    سوف اوافيك بالجديد.





    __________________
    سبحان الله وبحمده سبحان الله العظيم

    لا اله الا الله محمد رسول الله (صلى الله عليه وسلم)

  7. #7
    عضو نشيط جدا
    تاريخ التسجيل
    Mar 2005
    المشاركات
    485


    اخي تابع معنا هذا الموضوع لنحل مشكلة الترميز

    http://www.swalif.net/softs/showthr...035#post1390035





    __________________
    سبحان الله وبحمده سبحان الله العظيم

    لا اله الا الله محمد رسول الله (صلى الله عليه وسلم)

  8. #8
    عضو نشيط
    تاريخ التسجيل
    Jul 2004
    المشاركات
    287


    طيب اخوي انت عندك نسخة البرنامج؟؟؟






  9. #9
    عضو نشيط
    تاريخ التسجيل
    Sep 2006
    المشاركات
    204


    هل يمكن أن تتكرم و تعطينا السكربت أو رابط للتحميل بأي لغة كانت ليس بالضرورة النسخة العربية
    يمكن ترسله لي ان أمكن option4web[@]gmail.com
    تحياتي





    __________________
    شكر الخالص للأخ ياسر نحن نفتقدك



    Aniss1230#gmail.com

    اكبر مكتبة للفديو
    http://www.ksarsouk.com
    ehab2004_6@hotmail.com

    العضوية مشتركة

  10. #10
    عضو جديد
    تاريخ التسجيل
    Sep 2007
    المشاركات
    1


    اعرضولنا الحل لاني اعاني من نفس المشكله










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

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

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