بحث متقدم | التسجيل
الويب العربي
  تسجيل دخول
 
   
   

  ملاحظة
الموقع متاح للإطلاع والقراءة فقط، المشاركة والمواضيع الجديدة غير متاحة حالياً لحين تطوير الموقع.




الموقع متاح للإطلاع والقراءة فقط، المشاركة والمواضيع الجديدة غير متاحة حالياً لحين تطوير الموقع.

عـودة للخلف   الويب العربي المركز التعليمي المجاني تطويرالمواقع

تطويرالمواقع تبادل خبرات ، سكربتات ، تصاميم ،استفسارات

موضوع مغلق اضف موضوع جديد
 
خيارات الموضوع طريقة العرض
  #1  
قديم 22-03-2007, 08:31 PM
* الليث * * الليث * غير متصل
عضو
 
تاريخ التسجيل: Oct 2005
مشاركة: 80
مستوى تقييم العضوية: 19
* الليث * is on a distinguished road
الافتراضي أريد شرح طريقة تركيب سكربت العقارات ؟!

إخواني أريد

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

B2GRealEstate

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


وفقكم الله




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-services/iso3166ma/02iso-3166-code-lists/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  
قديم 22-03-2007, 09:11 PM
* الليث * * الليث * غير متصل
عضو
 
تاريخ التسجيل: Oct 2005
مشاركة: 80
مستوى تقييم العضوية: 19
* الليث * is on a distinguished road
الافتراضي

اجنهد

في التركيب


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


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



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

adminpanel

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


ما الحل ؟





  #3  
قديم 27-03-2007, 12:43 AM
almulhi almulhi غير متصل
عضو
 
تاريخ التسجيل: Mar 2007
مشاركة: 33
مستوى تقييم العضوية: 0
almulhi is on a distinguished road
الافتراضي

اعطي الملف b2gdb.php التصريح 777 الموجود بالمجلد adminpanel
وسوي تحديث للصفحة فقط





  #4  
قديم 28-03-2007, 11:33 AM
* الليث * * الليث * غير متصل
عضو
 
تاريخ التسجيل: Oct 2005
مشاركة: 80
مستوى تقييم العضوية: 19
* الليث * is on a distinguished road
الافتراضي

إقتباس:

اقتباس من مشاركة almulhi  

   اعطي الملف b2gdb.php التصريح 777 الموجود بالمجلد adminpanel
وسوي تحديث للصفحة فقط



بارك الله فيك

تم حل المشكلة كان هناك خطأ في ملف الكونفق



المشكلة الآن إخواني في التعريب



وفقكم الله





موضوع مغلق




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

كود vB متاح
كود [IMG] متاح
كود HTML مغلق
إنتقل إلى

مواضيع مشابهة
الموضوع الكاتب القسم مشاركة آخر مشاركة
حصريا ولاول مره على الويب العربى سكربت العقارات والاعلانات كامل ومعرب bntrade عروض البرمجة والتصميم والتطوير 0 09-09-2007 12:15 AM
ترجمة سكربت العقارات Built2Go Real Estate بمقابل مادي qwad تطويرالمواقع 6 01-05-2007 07:55 AM
برنامج مدير العقارات المتميز (لا غنى عنه لمواقع العقارات ) ahmed_morshdy طلبات البرمجة والتصميم والتطوير 6 29-04-2007 10:39 AM
مطلوب سكربت العقارات rooosh طلبات البرمجة والتصميم والتطوير 6 13-06-2006 03:00 PM
لو سمحتم أريد طريقة تفعيل Suexec على سيرفري ijnadin أمن المعلومات 2 14-01-2006 07:27 PM


جميع الأوقات بتوقيت مكة المكرمة. الساعة الآن » 05:53 PM.

Powered by vBulletin
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.


 
 »  خدمات البرمجة   »  رئيسية الدليل
  »  خدمات التصميم   »  الأمن والحماية
  »  الدعاية والتسويق
  »  الدعم والتطوير
  »  الشركات الرسمية
  »  حجز دومينات
  »  خدمات الإستضافة
 
 
  »  مكتبة الإستايلات   »  رئيسية المكتبة
  »  أكواد برمجية   »  أدوات الويب ماسترز
  »  مكتبة الهاكات   »  أدوات المصممين
  »  سكربتات متنوعة
  »  مجلات إلكترونية
  »  بلوكات متنوعة
  »  ثيمات مختلفة
 
 

صحيفة متخصصة في متابعة أخبار وجديد الإنترنت العربي
والحوارات الصحفية ومعلومات تقنية متنوعة .

   
 
 

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

 الدعم الفني |  اعتماد العضويات |  قوانين الإنتساب |  إتفاقية الإستخدام |  أهداف الويب العربي |  دليل الشركات |  مكتبة الويب |  صحيفة الويب العربي |  الرئيسية