Welcome to the vBulletin support forums! In our community forums you can receive professional support and assistance with any issues you might have with your vBulletin Products.
1) Check the error message and select the last digits for execute a query, for example, my message was this:
Non-unique widget GUID: "vbulletin-widget_search-4eb423cfd6a5f3.08329785" on /home/myuser/public_html/core/vb/xml/import/widget.php : 62
So I selected the last 8 digits for the query.
2) Using phpMyadmin or mysql command execute this:
Code:
select * from widget where guid like '%08329785%';
(replace the digits for your owns)
Check the query results and put attention on the widgetid
For example: 308 , 309, 310 3) Then, simply delete them using phpMyadmin
Or if you are using mysql command, you can do the following:
SELECT * FROM widgetinstance WHERE widgetid IN (308,309,310)
If it returns any result, then run the following:
DELETE FROM widgetinstance WHERE widgetid IN (308,309,310)
Then, whether the first query returned results or not, run the following:
DELETE FROM widget WHERE category='customized_copy'
Please make a database backup before doing this. Obviously you should replace "308,309,310" in the first two queries with your own IDs of your custom modules.
I have just upgrade my website to 5.1.2 version, but when the upgrade has reached 75% (Step 7) the upgrade the process was aborted because of this error :
...
Fri 8th Apr '16, 7:49am
Working...
X
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, personalize advertising, and to analyze site activity. We may share certain information about our users with our advertising and analytics partners. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also consent to the transfer of your data to our servers in the United States, where data protection laws may be different from those in your country.
Comment