combo box error on Mono 2.8 - ext 1.0 RC

Page 2 of 2 FirstFirst 12
  1. #11
    I got feedback from Mono team.

    "Please create and attach a simple, self-contained test case which reproduces
    the issue. The trace you attached can be caused by a number of factors and is
    not sufficient to diagnose the issue."

    Any advice? I explain I have run the combo box coolite example. I don't know how to explain it further.
  2. #12
    In such case we ask our members for a test solution.

    I think you should send them this one. They should just download it, run and see the issue.
  3. #13
    Any update on test solution? Thanks.
  4. #14
    Hi,

    Just send to them a solution which you used to reproduce the problem.
  5. #15
    This has been fixed in Mono svn.
  6. #16
    Thanks for the update.
  7. #17

    This bug as been corrected in newly version of Mono 3.0.1

    Here is the installation procedure for those who wants to deploy on a apache 2 server with Mono

    For Beginners who don't know how to get the new Mono 3.0.1 version on Ubuntu 12.04
    (Because i'm a beginner and i've been working on this for 3 days before make it work)

    ################################################## #############
    ### Getting root access to install and configure Mono 3.0.1 ###
    ################################################## #############
    sudo -s
    ***type your root password***



    ##########################
    ### Install vim editor ###
    ##########################
    apt-get install vim



    #######################
    ### Install apache2 ###
    #######################
    apt-get install apache2



    ########################################
    ### Install tools for compiling mono ###
    ########################################
    apt-get install autoconf automake libtool g++ gettext
    apt-get install mono-gmcs<
    apt-get install git



    ################################################## #####################
    ### Install apache2-threaded-dev (needed for compiling mod_mono)*** ###
    ################################################## #####################
    apt-get install apache2-threaded-dev



    ################################################## ###
    ################################################## ###
    ### We will return to apache2 configuration later ###
    ################################################## ###
    ################################################## ###



    ################################################## ##############
    ### Making the structure we need for getting the source code ###
    ################################################## ##############
    cd /opt
    mkdir mono-3.0



    ################################################## ##############
    ### Move into that new folder before getting the source code ###
    ################################################## ##############
    cd /opt/mono-3.0



    ###########################################
    ### Getting the source code from GitHub ###
    ###########################################
    git clone git://github.com/mono/mono.git
    git clone git://github.com/mono/xps.git
    git clone git://github.com/mono/libgdiplus.git
    git clone git://github.com/mono/mod_mono.git



    ##########################
    ### Compile libgdiplus ###
    ##########################
    cd /opt/mono-3.0/libgdiplus
    ./autogen.sh --prefix=/usr (the prefix is very important for Ubuntu 12.04)
    make
    make install



    ####################
    ### Compile mono ###
    ####################
    cd /opt/mono-3.0/mono/
    make clean
    ./autogen.sh --prefix=/usr (the prefix is very important for Ubuntu 12.04)
    make
    make install



    ###################
    ### Compile xsp ###
    ###################
    cd /opt/mono-3.0/xsp
    ./autogen.sh --prefix=/usr (the prefix is very important for Ubuntu 12.04)
    make
    make install



    ########################
    ### Compile mod_mono ###
    ########################
    cd /opt/mono-3.0/mod_mono
    ./autogen.sh --prefix=/usr (the prefix is very important for Ubuntu 12.04)
    make
    make install



    ################################################## ################
    ################################################## ################
    ### After the installation of mod_mono, the file mod_mono.conf ###
    ### as been added to your apache2 folder(/etc/apache2) ###
    ################################################## ################
    ################################################## ################



    ###########################
    ###########################
    ### Configuring apache2 ###
    ###########################
    ###########################



    ################################################## #########
    ### Configure the default site of apache ### (optional***)
    ################################################## #########
    vim /etc/apache2/sites-available/default
    Modify the line "DocumentRoot /var/www" by "DocumentRoot /var/www/YourFolder" (YourFolder is the folder where you publishing your website!)



    ################################################## #######
    ### Configure the rights to YourFolder ### (optional***)
    ################################################## #######
    cd /var/www/YourFolder
    sudo chown -R root:www-data .
    sudo chmod -R 774 .
    sudo usermod -a -G www-data <yourusername>



    ################################################## #
    ### Adding the mod_mono include in apache2.conf ###
    ################################################## #
    vim /etc/apache2/apache2.conf
    Add "Include /etc/apache2/mod_mono.conf" at the end of the file (without quotes!)



    ################################################## #########
    ### Adding the pointer to ASP .NET 4.0 in mod_mono.conf ###
    ################################################## #########
    vim /etc/apache2/mod_mono.conf
    Add "MonoServerPath /usr/bin/mod-mono-server4" (without quotes!) under the "If Modules condition"


    ##################################
    ### Restart the apache2 server ###
    ##################################
    /etc/init.d/apache2 restart
  8. #18
    Hi @domgoudreault,

    Thank you for posting this guide. It can help someone on the forums in the future!
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Error in control AjaxLinked Combo
    By julioc_m18 in forum 1.x Help
    Replies: 5
    Last Post: Jan 30, 2011, 10:01 PM
  2. [1.0] Error when binding combo
    By shankar in forum 1.x Help
    Replies: 1
    Last Post: Jul 25, 2010, 9:18 AM
  3. Replies: 3
    Last Post: May 11, 2010, 10:36 AM
  4. mono error with version 0.8
    By helmishariff in forum 1.x Help
    Replies: 2
    Last Post: Jul 10, 2009, 6:47 PM
  5. IE7 Update Panel javascript error with Mono
    By cristianpsg in forum Bugs
    Replies: 0
    Last Post: Apr 30, 2009, 1:27 PM

Tags for this Thread

Posting Permissions