Hi Christian ,

I removed that column and ran the rb-site upgrade but still no luck :( 


########

On Friday, 7 October 2016 20:57:25 UTC+5:30, Christian Hammond wrote:
>
> Hi Kapil,
>
> You'll need to remove that column and finish the upgrade process. You 
> never ran 'rb-site upgrade' on the Review Board site directory (as 
> described in the manual and on that error page).
>
> Once you do that, you should be in good shape.
>
> Please back up your database before running this command, in case 
> something goes wrong due to making hand modifications to the database 
> schema. That'll make it easier to diagnose if it does break.
>
> Christian
>
>
> On Friday, October 7, 2016, kapil chauhan <[email protected] <javascript:>> 
> wrote:
>
>> I have manually added show_submitted coulmn in the table which has fixed 
>> this error but now the latest error is this : 
>>
>> Manual server updates required
>>
>> A recent upgrade requires manual updates to be made on this server. After 
>> these changes are made, you should restart your server.
>>
>> If you have any questions or problems, please contact us on our mailing list 
>> <http://groups.google.com/group/reviewboard>.
>> Review Board version mismatch
>>
>> The version of Review Board running does not match the version the site was 
>> last upgraded to. You are running *1.7.22* and the site was last upgraded to 
>> *2.5.6.1*.
>>
>> Please upgrade your site to fix this by running:
>>
>>     $ rb-site upgrade /var/www/cr.ci.example.com
>>
>>
>> I ran the rb-site upgrade /var/www/cr.ci.example.com but it didn't fixed 
>> the issue ,As of now am clueless and don't have any idea to proceed further 
>> on this issue. Any suggestion is really appreciated Thanks 
>> ############
>>
>> On Thursday, 6 October 2016 22:29:35 UTC+5:30, kapil chauhan wrote:
>>>
>>> Hi Team,
>>>
>>> I am new to Review Board ,I have done Review Board upgrade. Upgrade went 
>>> successful but post upgrade when am trying to browse the reviewboard url it 
>>> is breaking with 500 Error.I have checked the error logs of httpd and found 
>>> below entry which I think can be ignored after going through few posts.
>>>
>>> Error: 
>>> [error]   DeprecationWarning
>>> [Thu Oct 06 16:32:12 2016] [error] 
>>> /usr/lib/python2.6/site-packages/django/views/generic/list_detail.py:10: 
>>> DeprecationWarning: Function-based generic views have been deprecated; use 
>>> class-based views instead.
>>> [Thu Oct 06 16:32:12 2016] [error]   DeprecationWarning
>>>
>>> I am using python 2.6 and its redhat linux 6 version.
>>>
>>> I am also pasting the other configuration files.
>>> #############
>>> settings_local.py
>>> #############
>>>
>>>
>>> # Database configuration
>>> DATABASES = {
>>>     'default': {
>>>         'ENGINE': 'django.db.backends.mysql',
>>>         'NAME': 'rb',
>>>         'USER': 'xxxx',
>>>         'PASSWORD': 'xxxxx',
>>>         'HOST': 'localhost',
>>>         'PORT': '',
>>>     },
>>> }
>>>
>>> # Unique secret key. Don't share this with anybody.
>>> SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
>>>
>>> # Cache backend settings.
>>> CACHES = {
>>>     'default': {
>>>         'BACKEND': 'django.core.cache.backends.me
>>> mcached.MemcachedCache',
>>>         'LOCATION': 'localhost:11211',
>>>     },
>>> }
>>>
>>> # Extra site information.
>>> SITE_ID = 1
>>> SITE_ROOT = '/'
>>> FORCE_SCRIPT_NAME = ''
>>> DEBUG = False
>>>
>>> ###################
>>>
>>> httpd.conf
>>> ##############
>>> <<TRIM>>>
>>>
>>>  <Directory "/var/www/error">
>>>         AllowOverride None
>>>         Options IncludesNoExec
>>>         AddOutputFilter Includes html
>>>         AddHandler type-map var
>>>         Order allow,deny
>>>         Allow from all
>>>         LanguagePriority en es de fr
>>>         ForceLanguagePriority Prefer Fallback
>>>     </Directory>
>>>
>>> BrowserMatch "Mozilla/2" nokeepalive
>>> BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
>>> BrowserMatch "RealPlayer 4\.0" force-response-1.0
>>> BrowserMatch "Java/1\.0" force-response-1.0
>>> BrowserMatch "JDK/1\.0" force-response-1.0
>>>
>>> BrowserMatch "Microsoft Data Access Internet Publishing Provider" 
>>> redirect-carefully
>>> BrowserMatch "MS FrontPage" redirect-carefully
>>> BrowserMatch "^WebDrive" redirect-carefully
>>> BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
>>> BrowserMatch "^gnome-vfs/1.0" redirect-carefully
>>> BrowserMatch "^XML Spy" redirect-carefully
>>> BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
>>>
>>>
>>> LoadModule passenger_module 
>>> /home/user1/.gem/ruby/1.9.1/gems/passenger-5.0.16/buildout/apache2/mod_passenger.so
>>>    <IfModule mod_passenger.c>
>>>      PassengerRoot /home/user1/.gem/ruby/1.9.1/gems/passenger-5.0.16
>>>      PassengerDefaultRuby /usr/bin/ruby
>>>    </IfModule>
>>>
>>>
>>>
>>> <VirtualHost *:80>
>>>         ServerName machine.example.com
>>>         DocumentRoot "/var/www/codereview.example.com/htdocs"
>>>
>>>         # Error handlers
>>>         ErrorDocument 500 /errordocs/500.html
>>>
>>>         WSGIPassAuthorization On
>>>         WSGIScriptAlias "/" "/var/www/
>>> codereview.example.com/htdocs/reviewboard.wsgi/"
>>>
>>>         <Directory "/var/www/codereview.example.com/htdocs">
>>>                 AllowOverride All
>>>                 Options -Indexes +FollowSymLinks
>>>                 Allow from all
>>>         </Directory>
>>>
>>> #<Directory "/var/www/SiteSearch/">
>>>         #        AllowOverride All
>>> # Order Allow,Deny
>>> # Allow from all 
>>>                # Options -Indexes +FollowSymLinks
>>>                # Allow from a
>>>         #</Directory>
>>> #ProxyPreserveHost On
>>> #ProxyPass /sites http://localhost:3000/sites
>>> #ProxyPassReverse /sites http://localhost:3000/sites
>>> #ProxyPass /assets http://localhost:3000/assets
>>> #ProxyPassReverse /assets http://localhost:3000/assets
>>>
>>>         # Alias static media requests to filesystem
>>>         Alias /media "/var/www/codereview.example.com/htdocs/media"
>>>         Alias /maven2 "/var/www/codereview.example.com/htdocs/maven2"
>>>         Alias /static "/var/www/codereview.example.com/htdocs/static"
>>>         Alias /errordocs "/var/www/
>>> codereview.example.com/htdocs/errordocs"
>>>         Alias /favicon.ico "/var/www/
>>> codereview.example.com/htdocs/static/rb/images/favicon.png"
>>> </VirtualHost>
>>>
>>>
>>>
>>>
>>> Any help on this is highly appreciated.
>>>
>> -- 
>> Supercharge your Review Board with Power Pack: 
>> https://www.reviewboard.org/powerpack/
>> Want us to host Review Board for you? Check out RBCommons: 
>> https://rbcommons.com/
>> Happy user? Let us know! https://www.reviewboard.org/users/
>> --- 
>> You received this message because you are subscribed to the Google Groups 
>> "reviewboard" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected].
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> -- 
> -- 
> Christian Hammond
> President/CEO of Beanbag <https://www.beanbaginc.com/>
> Makers of Review Board <https://www.reviewboard.org/>
>
>

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"reviewboard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to