{"id":19358,"date":"2016-06-10T07:53:00","date_gmt":"2016-06-10T12:53:00","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=19358"},"modified":"2022-12-13T13:57:14","modified_gmt":"2022-12-13T19:57:14","slug":"how-to-install-webid-auction-software-on-centos","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/","title":{"rendered":"How to install WeBid auction software on CentOS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignnone size-full wp-image-25149\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg\" alt=\"How to install WeBid on CentOS\" width=\"1200\" height=\"628\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg 1200w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-150x79.jpg 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-300x157.jpg 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-768x402.jpg 768w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-1024x536.jpg 1024w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-860x450.jpg 860w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-680x356.jpg 680w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-500x262.jpg 500w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-400x209.jpg 400w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-200x105.jpg 200w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS-50x26.jpg 50w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/p>\n<p>In this tutorial, we will show you <strong>how to install WeBid on a CentOS 7 VPS<\/strong> with Apache, PHP and MySQL installed on it. WeBid is an open source auction software written in PHP. It is the best solution to build auction web sites. This tutorial was tested and written for a <a title=\"CentOS VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">CentOS VPS<\/a>, but it should work on any RPM based Linux distribution.<br \/>\n<!--more--><br \/>\nThis install guide assumes that Apache, MySQL and PHP are already installed and configured on your virtual server. At the time of writing this tutorial, the latest version of WeBid is 1.2 and it requires:<\/p>\n<ul>\n<li>Apache web server. The Apache mod_rewrite module is preferred, but it is not required<\/li>\n<li>PHP 5.2 or higher with the following PHP extensions enabled: BCMath, PDO and GD Graphics Library version 2.0.x+<\/li>\n<li>MySQL 4.1 or higher installed on your <a href=\"https:\/\/www.rosehosting.com\" target=\"_blank\" rel=\"noopener noreferrer\">virtual server<\/a>.<\/li>\n<\/ul>\n<p>Let&#8217;s start with the installation procedure. Make sure your server OS packages are fully up-to-date:<\/p>\n<pre>yum clean all \r\nyum update<\/pre>\n<p>Install PHP dependencies:<\/p>\n<pre>yum install php-bcmath php-pdo php-gd<\/pre>\n<p>Download the latest version of the WeBid auction software available at http:\/\/www.webidsupport.com\/download.php and extract it to a directory on your server accessible by the web server (e.g. \/var\/www\/html\/your-domain.com\/) using the following commands:<\/p>\n<pre>cd \/opt\/ \r\nwget http:\/\/jaist.dl.sourceforge.net\/project\/simpleauction\/simpleauction\/WeBid%20v1.2\/WeBid-1.2.zip -O webid.zip\r\nunzip webid.zip\r\nmv WeBid\/ \/var\/www\/html\/your-domain.com\r\n<\/pre>\n<p>Do not forget to replace your-domain.com with your actual domain name.<br \/>\nNext, create a new MySQL database for WeBid to use and assign a user to it with full permissions:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; SET GLOBAL sql_mode='';\r\nmysql&gt; CREATE USER webid;\r\nmysql&gt; CREATE DATABASE webiddb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON webiddb.* TO 'webid'@'localhost' IDENTIFIED BY 'your-password' WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p>Do not forget to replace &#8216;your-password&#8217; with a strong password.<br \/>\nCreate a new virtual host directive in Apache. Edit the main Apache configuration file (\/etc\/httpd\/conf\/httpd.conf) and add the following line at the end if it is not already done so:<\/p>\n<pre>vi \/etc\/httpd\/conf\/httpd.conf<\/pre>\n<pre>IncludeOptional conf.d\/*.conf<\/pre>\n<p>Then, create a new Apache configuration file on your virtual server:<\/p>\n<pre>touch \/etc\/httpd\/conf.d\/your-domain.com.conf<\/pre>\n<p>Edit the &#8216;your-domain.com.conf&#8217; configuration file:<\/p>\n<pre>vi vi \/etc\/httpd\/conf.d\/your-domain.com.conf<\/pre>\n<p>and add the following lines to it:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@your-domain.com\r\nDocumentRoot \/var\/www\/html\/your-domain.com\/\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\n&lt;Directory \/var\/www\/html\/your-domain.com\/&gt;\r\nDirectoryIndex index.html index.php\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nRequire all granted\r\n&lt;\/Directory&gt;\r\nErrorLog \"\/var\/log\/httpd\/your-domain.com-error_log\"\r\nCustomLog \"\/var\/log\/httpd\/your-domain.com-access_log\" combined\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>Set proper file permissions for the Apache web server to write to the document root (&#8216;\/var\/www\/html\/your-domain.com&#8217;) directory of the WeBid auction web site:<\/p>\n<pre>sudo chown -R apache:apache \/var\/www\/html\/your-domain.com\/<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<p>Open your favorite web browser, navigate to http:\/\/your-domain.com\/ , start the installation process and follow the easy instructions. Enter the WeBid administrator email address, then enter the database connection settings:<br \/>\nDatabase Host: localhost<br \/>\nDatabase Username: webid<br \/>\nDatabase Password: *your-password*<br \/>\nDatabase Name: webiddb<br \/>\nand click on the &#8216;install&#8217; button.<br \/>\nOn the next page, click on the &#8216;step2&#8217; hyperlink and make a note of the random code shown.<br \/>\nFor security reasons you should delete the install directory:<\/p>\n<pre>rm -rf \/var\/www\/html\/your-domain.com\/install\/<\/pre>\n<p>If the installation process completed successfully, open http:\/\/your-domain.com\/admin and create an administrator user account, then log in to the administration back-end of the WeBid auction web site at http:\/\/your-domain.com\/admin\/login.php using the newly created administrator account.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-medium wp-image-19360\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/webid-back-end-300x146.png\" alt=\"webid back-end\" width=\"300\" height=\"146\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/webid-back-end-300x146.png 300w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/webid-back-end-768x375.png 768w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/webid-back-end-1024x500.png 1024w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/webid-back-end.png 1831w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/p>\n<p>That is it. The WeBid installation is now complete.<\/p>\n<hr \/>\n<p>Of course you don&#8217;t have to do any of this if you use one of our <a href=\"https:\/\/www.rosehosting.com\/centos-hosting.html\">Powerful CentOS VPS<\/a> Hosting services, in which case you can simply ask our expert Linux admins to <strong>install WeBid auction software<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install WeBid on a CentOS 7 VPS with Apache, PHP and &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install WeBid auction software on CentOS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#more-19358\" aria-label=\"Read more about How to install WeBid auction software on CentOS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":25149,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,13],"tags":[34,1272],"class_list":["post-19358","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-tutorials","tag-centos","tag-webid","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install WeBid auction software on CentOS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install WeBid auction software on CentOS | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install WeBid auction software on CentOS\" \/>\n<meta property=\"og:description\" content=\"How to install WeBid auction software on CentOS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-10T12:53:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-13T19:57:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install WeBid auction software on CentOS\",\"datePublished\":\"2016-06-10T12:53:00+00:00\",\"dateModified\":\"2022-12-13T19:57:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/\"},\"wordCount\":552,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/How-to-install-WeBid-on-CentOS.jpg\",\"keywords\":[\"centos\",\"WeBid\"],\"articleSection\":[\"CentOS\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/\",\"name\":\"How to install WeBid auction software on CentOS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/How-to-install-WeBid-on-CentOS.jpg\",\"datePublished\":\"2016-06-10T12:53:00+00:00\",\"dateModified\":\"2022-12-13T19:57:14+00:00\",\"description\":\"How to install WeBid auction software on CentOS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/How-to-install-WeBid-on-CentOS.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/How-to-install-WeBid-on-CentOS.jpg\",\"width\":1200,\"height\":628,\"caption\":\"How to install WeBid on CentOS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-webid-auction-software-on-centos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install WeBid auction software on CentOS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install WeBid auction software on CentOS | RoseHosting","description":"How to install WeBid auction software on CentOS | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/","og_locale":"en_US","og_type":"article","og_title":"How to install WeBid auction software on CentOS","og_description":"How to install WeBid auction software on CentOS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-06-10T12:53:00+00:00","article_modified_time":"2022-12-13T19:57:14+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install WeBid auction software on CentOS","datePublished":"2016-06-10T12:53:00+00:00","dateModified":"2022-12-13T19:57:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/"},"wordCount":552,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg","keywords":["centos","WeBid"],"articleSection":["CentOS","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/","name":"How to install WeBid auction software on CentOS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg","datePublished":"2016-06-10T12:53:00+00:00","dateModified":"2022-12-13T19:57:14+00:00","description":"How to install WeBid auction software on CentOS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/06\/How-to-install-WeBid-on-CentOS.jpg","width":1200,"height":628,"caption":"How to install WeBid on CentOS"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-webid-auction-software-on-centos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install WeBid auction software on CentOS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19358","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=19358"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19358\/revisions"}],"predecessor-version":[{"id":44230,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19358\/revisions\/44230"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/25149"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=19358"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=19358"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=19358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}