Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Upgrade Failure
ericwongmma
New
I just upgraded to 2.1.11 and tried to use the update utility and the update failed.
Now I can't load my site at all.
My site is
Any idea what the issue is?
0
Comments
what version did you upgrade from?
use the typical troubleshooting methods.
turn debug on.
In order to reveal full descriptive error messages:
add the following configuration statement to conf/config.php
$Configuration['Debug'] = TRUE;
try running /utility/structure a few times
and try
try running /utility/update a few times
http://vanillaforums.org/discussion/comment/219687/#Comment_219687
delete the ini files from cache folder.
download core files again and try re-installing
http://vanillaforums.org/discussion/comment/188810/#Comment_188810
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
check your .htaccess and make sure it is correct.
http://vanillaforums.org/discussion/comment/220157/#Comment_220157
this is your error.....
"NetworkError: 500 hphp_invoke - http://forum.powerdojo.com/discussions"
try turning off to troubleshoot.
/plugins/Logger
/plugins/Awards
/plugins/AeliaFoundationClasses/
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
@peregrine - thanks for the help.
I did what you said in your first message and got this code thrown to me:
=================
drop procedure if exists
SearchAnyWhere
;create definer=
liviawon_vanilla
localhost
procedureSearchAnyWhere
(inWhat
varchar(50))reads sql data
begin
declare Done int default False;
declare TableName, ColumnName, DataType, Dummy varchar(80);
declare FieldValue varchar(255);
declare GetAllColumns cursor for select TABLE_NAME, COLUMN_NAME, DATA_TYPE from information_schema.COLUMNS where TABLE_SCHEMA = 'GDN_liviawon_desserta_pdvanilla' and DATA_TYPE in ('char', 'varchar', 'tinytext', 'text', 'mediumtext', 'longtext', 'int', 'mediumint', 'smallint');
declare continue handler for not found set Done = True;
set @PxLength = 4;
set @SelectAll = Null;
open GetAllColumns;
ReadLoop: loop
fetch GetAllColumns into TableName, ColumnName, DataType;
set TableName = substr(TableName, @PxLength+1);
if Done then leave ReadLoop;
end if;
set @SelectSql = concat('select "', TableName, '" as TableName, "', ColumnName, '" as ColumnName,
', ColumnName, '
as RowValue from ', TableName, ' where', ColumnName, '
like "%', What, '%"');set @SelectAll = concat_ws(' union all ', @SelectAll, @SelectSql);
end loop;
close GetAllColumns;
select @SelectAll;
prepare St from @SelectAll;
execute St;
end;
=================
I then click Run Structure and Data scripts and get this error (image file because a lot of text):
I'll try the next steps now.
Thanks again!
BTW - do you do hourly dev/troubleshooting work? If so, PM me with your hourly rates.
OK I disabled those plugins but no change - site still won't load.
And just for fun I tried disabling all plugins but still no dice.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
@ericwongmma
if you are not using Useful Functions plugin, I would delete it from your plugins folder after you disable it and remove it from your config.php
you may need to do this temporarily even if you need it.
that is the source of your problem I believe, and it should update successfully after you disable useful functions (if you don't have other issues).
after you disable the plugin, run /utility structure again. then utility/update if structure was successful
and post any errors if not successful.
I don't do paid consulting any more. .
But I can try to help you here. But I can give you suggestions of developers I'd like you to send a donation to, if you would like to send a donation to someone.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
@peregrine - I just deleted Userful Functions and removed it from config.php.
I was then able to run /utility structure and utility/update succesfully.
However, I still cannot load the site.
Oh and yes please send me suggestions for devs to donate to. Why don't you do paid consulting work anymore and why don't you accept donations? Just a bit curious as I find this unique.
ok
I'll pm you if you have time to try to fix now. we can work on it.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
post your .htaccess if you are using apache.
is your vanilla forum installed under root or /forum or somewhere else/
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
here's my .htaccess:
Original
If you modify this file then change the above line to: # Modified
RewriteEngine On
# Certain hosts may require the following line.
# If vanilla is in a subfolder then you need to specify it after the /.
# (ex. You put Vanilla in /forum so change the next line to: RewriteBase /forum)
# RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php\?p=$1 [QSA,L]
change
to
RewriteBase /
remove the #
that is a comment.
http://vanillaforums.org/discussion/comment/220157/#Comment_220157
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Done... still no go.
can you post your config.php
removany passwords and e-mail info, etc.
do you have a backup of your .htaccess before you upgraded?
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
You see to have disappeared. I have to go now as well. perhaps someone else can help if you decide to come back on line.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Sorry yes, had to go.
Here's my config.php: