[CDB] cmBB - Simple Content Management for phpBB

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Ideas Centre
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
Locked
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

Ger wrote: Tue Jul 04, 2017 5:31 pm You say you can't. Why not? There should be a "delete data" link for each disabled extension.
There is, but when i do i get white page again all the time and data stil there :geek:
Last edited by OmkePom on Tue Jul 04, 2017 9:05 pm, edited 1 time in total.
You got Brains like a Peanut, OMG i insulted a Peanut!
BigRed01
Registered User
Posts: 488
Joined: Mon Jan 24, 2005 9:26 am
Location: The upper midwest

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by BigRed01 »

OmkePom wrote: Tue Jul 04, 2017 8:27 pm
Ger wrote: Tue Jul 04, 2017 5:31 pm You say you can't. Why not? There should be a "delete data" link for each disabled extension.
There is, but when i do i get white page again all the time :geek:
Did you do a database backup you can restore?
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

BigRed01 wrote: Tue Jul 04, 2017 9:04 pm
OmkePom wrote: Tue Jul 04, 2017 8:27 pm
Ger wrote: Tue Jul 04, 2017 5:31 pm You say you can't. Why not? There should be a "delete data" link for each disabled extension.
There is, but when i do i get white page again all the time :geek:
Did you do a database backup you can restore?
Not gona do a database backup just for a litle isue i think
:ugeek: ?
You got Brains like a Peanut, OMG i insulted a Peanut!
User avatar
Ger
Registered User
Posts: 2108
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by Ger »

OmkePom wrote: Tue Jul 04, 2017 8:27 pm There is, but when i do i get white page again all the time and data stil there :geek:
Please disable the Upload extensions ext, try again to delete the data. If it doesn't work again, please provide an error log as earlier.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

Ger wrote: Wed Jul 05, 2017 6:55 am
OmkePom wrote: Tue Jul 04, 2017 8:27 pm There is, but when i do i get white page again all the time and data stil there :geek:
Please disable the Upload extensions ext, try again to delete the data. If it doesn't work again, please provide an error log as earlier.
Didnt work again so i sent you a log-file :geek:
You got Brains like a Peanut, OMG i insulted a Peanut!
User avatar
Ger
Registered User
Posts: 2108
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by Ger »

It seems like it didn't install properly, and now you cannot clean up automatically ...
Try cleaning up manually. First up, run these queries:

Code: Select all

DELETE FROM phpbb_config WHERE config_name LIKE 'ger_cmbb_%';
DELETE FROM phpbb_config_text WHERE config_name = 'ger_cmbb_rightbar_html';
DROP TABLE IF EXISTS phpbb_cmbb_article;
DROP TABLE IF EXISTS phpbb_cmbb_category;
Now go to your ACP -> System tab -> Modules management -> Administration panel. Look for the cmBB modules (categories, extensions and the main) and delete them.

This leaves only the permission, but that's checked when installing anyway. Now proceed with step 3.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

Manually doesnt work.
The querie doesnt do anything at all:

DELETE FROM phpbb_config WHERE config_name LIKE 'ger_cmbb_%';# MySQL gaf een lege resultatenset terug (0 rijen). DELETE FROM phpbb_config_text WHERE config_name = 'ger_cmbb_rightbar_html';# MySQL gaf een lege resultatenset terug (0 rijen). DROP TABLE IF EXISTS phpbb_cmbb_article;# MySQL gaf een lege resultatenset terug (0 rijen). DROP TABLE IF EXISTS phpbb_cmbb_category;# MySQL gaf een lege resultatenset terug (0 rijen).

Step 3: Done
Step 4: Done
Step 5: Done and i sent u a log from the error he give, so stil not working

:geek:
You got Brains like a Peanut, OMG i insulted a Peanut!
User avatar
Ger
Registered User
Posts: 2108
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by Ger »

I see you don't have a standard prefix, so you should alter your queries to match. Go

Please run FIRST:

Code: Select all

SHOW TABLES;
And post results here in code-tags.
Now go back to step 1. Disable the extension, and then delete data. When manually is needed, do these queries instead of the previous:

Code: Select all

DELETE FROM php32_config WHERE config_name LIKE 'ger_cmbb_%';
DELETE FROM php32_config_text WHERE config_name = 'ger_cmbb_rightbar_html';
DROP TABLE IF EXISTS php32_cmbb_article;
DROP TABLE IF EXISTS php32_cmbb_category;
Now again:

Code: Select all

SHOW TABLES;
And post results here in code-tags.

Follow instructions from step 3.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

Code: Select all


+ Opties
Tables_in_DB1174859 	
php32_acl_groups
php32_acl_options
php32_acl_roles
php32_acl_roles_data
php32_acl_users
php32_ads
php32_ads_forums
php32_ads_groups
php32_ads_in_pos
php32_ads_positions
php32_ajax_chat
php32_ajax_chat_sessions
php32_attachments
php32_banlist
php32_bbcodes
php32_bookmarks
php32_bots
php32_cmbb_category
php32_config
php32_config_text
php32_confirm
php32_disallow
php32_drafts
php32_ext
php32_extension_groups
php32_extensions
php32_flags
php32_forums
php32_forums_access
php32_forums_track
php32_forums_watch
php32_groups
php32_icons
php32_ium_reminder
php32_lang
php32_log
php32_login_attempts
php32_menu_buttons
php32_menu_colors
php32_migrations
php32_moderator_cache
php32_modules
php32_notification_types
php32_notifications
php32_oauth_accounts
php32_oauth_states
php32_oauth_tokens
php32_poll_options
php32_poll_votes
php32_posts
php32_privmsgs
php32_privmsgs_folder
php32_privmsgs_rules
php32_privmsgs_to
php32_profile_fields
php32_profile_fields_data
php32_profile_fields_lang
php32_profile_lang
php32_ranks
php32_reports
php32_reports_reasons
php32_search_results
php32_search_wordlist
php32_search_wordmatch
php32_sessions
php32_sessions_keys
php32_sitelist
php32_smilies
php32_styles
php32_teampage
php32_topics
php32_topics_posted
php32_topics_track
php32_topics_watch
php32_user_group
php32_user_notifications
php32_users
php32_warnings
php32_whovisitedthistopic
php32_words
php32_zebra
php3_acl_groups
php3_acl_options
php3_acl_roles
php3_acl_roles_data
php3_acl_users
php3_attachments
php3_banlist
php3_bbcodes
php3_bookmarks
php3_bots
php3_config
php3_config_text
php3_confirm
php3_disallow
php3_drafts
php3_ext
php3_extension_groups
php3_extensions
php3_forums
Tables_in_DB1174859 	 
php3_forums_access
php3_forums_track
php3_forums_watch
php3_groups
php3_icons
php3_lang
php3_log
php3_login_attempts
php3_migrations
php3_moderator_cache
php3_modules
php3_notification_types
php3_notifications
php3_oauth_accounts
php3_oauth_states
php3_oauth_tokens
php3_poll_options
php3_poll_votes
php3_posts
php3_privmsgs
php3_privmsgs_folder
php3_privmsgs_rules
php3_privmsgs_to
php3_profile_fields
php3_profile_fields_data
php3_profile_fields_lang
php3_profile_lang
php3_ranks
php3_reports
php3_reports_reasons
php3_search_results
php3_search_wordlist
php3_search_wordmatch
php3_sessions
php3_sessions_keys
php3_sitelist
php3_smilies
php3_sphinx
php3_styles
php3_teampage
php3_topics
php3_topics_posted
php3_topics_track
php3_topics_watch
php3_user_group
php3_user_notifications
php3_users
php3_warnings
php3_words
php3_zebra
php_acl_groups
php_acl_options
php_acl_roles
php_acl_roles_data
php_acl_users
php_attachments
php_banlist
php_bbcodes
php_bookmarks
php_bots
php_config
php_config_text
php_confirm
php_disallow
php_drafts
php_ext
php_extension_groups
php_extensions
php_forums
php_forums_access
php_forums_track
php_forums_watch
php_groups
php_icons
php_lang
php_log
php_login_attempts
php_migrations
php_moderator_cache
php_modules
php_notification_types
php_notifications
php_oauth_accounts
php_oauth_tokens
php_poll_options
php_poll_votes
php_posts
php_privmsgs
php_privmsgs_folder
php_privmsgs_rules
php_privmsgs_to
php_profile_fields
php_profile_fields_data
php_profile_fields_lang
php_profile_lang
php_ranks
php_reports
php_reports_reasons
php_search_results
php_search_wordlist
Tables_in_DB1174859 	 
php_search_wordmatch
php_sessions
php_sessions_keys
php_sitelist
php_smilies
php_styles
php_teampage
php_topics
php_topics_posted
php_topics_track
php_topics_watch
php_user_group
php_user_notifications
php_users
php_warnings
php_words
php_zebra
phpbb3_acl_groups
phpbb3_acl_options
phpbb3_acl_roles
phpbb3_acl_roles_data
phpbb3_acl_users
phpbb3_attachments
phpbb3_banlist
phpbb3_bbcodes
phpbb3_bookmarks
phpbb3_bots
phpbb3_config
phpbb3_config_text
phpbb3_confirm
phpbb3_disallow
phpbb3_drafts
phpbb3_ext
phpbb3_extension_groups
phpbb3_extensions
phpbb3_forums
phpbb3_forums_access
phpbb3_forums_track
phpbb3_forums_watch
phpbb3_groups
phpbb3_icons
phpbb3_lang
phpbb3_log
phpbb3_login_attempts
phpbb3_migrations
phpbb3_moderator_cache
phpbb3_modules
phpbb3_notification_types
phpbb3_notifications
phpbb3_oauth_accounts
phpbb3_oauth_tokens
phpbb3_poll_options
phpbb3_poll_votes
phpbb3_posts
phpbb3_privmsgs
phpbb3_privmsgs_folder
phpbb3_privmsgs_rules
phpbb3_privmsgs_to
phpbb3_profile_fields
phpbb3_profile_fields_data
phpbb3_profile_fields_lang
phpbb3_profile_lang
phpbb3_ranks
phpbb3_reports
phpbb3_reports_reasons
phpbb3_search_results
phpbb3_search_wordlist
phpbb_acl_groups
phpbb_acl_options
phpbb_acl_roles
phpbb_acl_roles_data
phpbb_acl_users
phpbb_ads
phpbb_ads_forums
phpbb_ads_groups
phpbb_ads_in_pos
phpbb_ads_in_positions
phpbb_ads_positions
phpbb_ajax_chat
phpbb_ajax_chat_sessions
phpbb_attach_download
phpbb_attachments
phpbb_banlist
phpbb_bbcodes
phpbb_bookmarks
phpbb_bots
phpbb_captcha_answers
phpbb_captcha_questions
phpbb_chat
phpbb_chat_sessions
phpbb_config
phpbb_config_text
phpbb_confirm
phpbb_disallow
phpbb_drafts
phpbb_ext
phpbb_extension_groups
phpbb_extensions
phpbb_forums
phpbb_forums_access
Tables_in_DB1174859 	 
phpbb_forums_track
phpbb_forums_watch
phpbb_groups
phpbb_icons
phpbb_lang
phpbb_log
phpbb_login_attempts
phpbb_migrations
phpbb_moderator_cache
phpbb_modules
phpbb_notification_types
phpbb_notifications
phpbb_oauth_accounts
phpbb_oauth_states
phpbb_oauth_tokens
phpbb_poll_options
phpbb_poll_votes
phpbb_posts
phpbb_privmsgs
phpbb_privmsgs_folder
phpbb_privmsgs_rules
phpbb_privmsgs_to
phpbb_profile_fields
phpbb_profile_fields_data
phpbb_profile_fields_lang
phpbb_profile_lang
phpbb_ranks
phpbb_reports
phpbb_reports_reasons
phpbb_search_results
phpbb_search_wordlist
phpbb_search_wordmatch
phpbb_sessions
phpbb_sessions_keys
phpbb_sitelist
phpbb_smilies
phpbb_styles
phpbb_teampage
phpbb_topics
phpbb_topics_posted
phpbb_topics_track
phpbb_topics_watch
phpbb_user_group
phpbb_user_notifications
phpbb_users
phpbb_warnings
phpbb_words
phpbb_zebra
again:

Code: Select all


+ Opties
Tables_in_DB1174859 	
php32_acl_groups
php32_acl_options
php32_acl_roles
php32_acl_roles_data
php32_acl_users
php32_ads
php32_ads_forums
php32_ads_groups
php32_ads_in_pos
php32_ads_positions
php32_ajax_chat
php32_ajax_chat_sessions
php32_attachments
php32_banlist
php32_bbcodes
php32_bookmarks
php32_bots
php32_config
php32_config_text
php32_confirm
php32_disallow
php32_drafts
php32_ext
php32_extension_groups
php32_extensions
php32_flags
php32_forums
php32_forums_access
php32_forums_track
php32_forums_watch
php32_groups
php32_icons
php32_ium_reminder
php32_lang
php32_log
php32_login_attempts
php32_menu_buttons
php32_menu_colors
php32_migrations
php32_moderator_cache
php32_modules
php32_notification_types
php32_notifications
php32_oauth_accounts
php32_oauth_states
php32_oauth_tokens
php32_poll_options
php32_poll_votes
php32_posts
php32_privmsgs
php32_privmsgs_folder
php32_privmsgs_rules
php32_privmsgs_to
php32_profile_fields
php32_profile_fields_data
php32_profile_fields_lang
php32_profile_lang
php32_ranks
php32_reports
php32_reports_reasons
php32_search_results
php32_search_wordlist
php32_search_wordmatch
php32_sessions
php32_sessions_keys
php32_sitelist
php32_smilies
php32_styles
php32_teampage
php32_topics
php32_topics_posted
php32_topics_track
php32_topics_watch
php32_user_group
php32_user_notifications
php32_users
php32_warnings
php32_whovisitedthistopic
php32_words
php32_zebra
php3_acl_groups
php3_acl_options
php3_acl_roles
php3_acl_roles_data
php3_acl_users
php3_attachments
php3_banlist
php3_bbcodes
php3_bookmarks
php3_bots
php3_config
php3_config_text
php3_confirm
php3_disallow
php3_drafts
php3_ext
php3_extension_groups
php3_extensions
php3_forums
php3_forums_access
Tables_in_DB1174859 	 
php3_forums_track
php3_forums_watch
php3_groups
php3_icons
php3_lang
php3_log
php3_login_attempts
php3_migrations
php3_moderator_cache
php3_modules
php3_notification_types
php3_notifications
php3_oauth_accounts
php3_oauth_states
php3_oauth_tokens
php3_poll_options
php3_poll_votes
php3_posts
php3_privmsgs
php3_privmsgs_folder
php3_privmsgs_rules
php3_privmsgs_to
php3_profile_fields
php3_profile_fields_data
php3_profile_fields_lang
php3_profile_lang
php3_ranks
php3_reports
php3_reports_reasons
php3_search_results
php3_search_wordlist
php3_search_wordmatch
php3_sessions
php3_sessions_keys
php3_sitelist
php3_smilies
php3_sphinx
php3_styles
php3_teampage
php3_topics
php3_topics_posted
php3_topics_track
php3_topics_watch
php3_user_group
php3_user_notifications
php3_users
php3_warnings
php3_words
php3_zebra
php_acl_groups
php_acl_options
php_acl_roles
php_acl_roles_data
php_acl_users
php_attachments
php_banlist
php_bbcodes
php_bookmarks
php_bots
php_config
php_config_text
php_confirm
php_disallow
php_drafts
php_ext
php_extension_groups
php_extensions
php_forums
php_forums_access
php_forums_track
php_forums_watch
php_groups
php_icons
php_lang
php_log
php_login_attempts
php_migrations
php_moderator_cache
php_modules
php_notification_types
php_notifications
php_oauth_accounts
php_oauth_tokens
php_poll_options
php_poll_votes
php_posts
php_privmsgs
php_privmsgs_folder
php_privmsgs_rules
php_privmsgs_to
php_profile_fields
php_profile_fields_data
php_profile_fields_lang
php_profile_lang
php_ranks
php_reports
php_reports_reasons
php_search_results
php_search_wordlist
php_search_wordmatch
Tables_in_DB1174859 	 
php_sessions
php_sessions_keys
php_sitelist
php_smilies
php_styles
php_teampage
php_topics
php_topics_posted
php_topics_track
php_topics_watch
php_user_group
php_user_notifications
php_users
php_warnings
php_words
php_zebra
phpbb3_acl_groups
phpbb3_acl_options
phpbb3_acl_roles
phpbb3_acl_roles_data
phpbb3_acl_users
phpbb3_attachments
phpbb3_banlist
phpbb3_bbcodes
phpbb3_bookmarks
phpbb3_bots
phpbb3_config
phpbb3_config_text
phpbb3_confirm
phpbb3_disallow
phpbb3_drafts
phpbb3_ext
phpbb3_extension_groups
phpbb3_extensions
phpbb3_forums
phpbb3_forums_access
phpbb3_forums_track
phpbb3_forums_watch
phpbb3_groups
phpbb3_icons
phpbb3_lang
phpbb3_log
phpbb3_login_attempts
phpbb3_migrations
phpbb3_moderator_cache
phpbb3_modules
phpbb3_notification_types
phpbb3_notifications
phpbb3_oauth_accounts
phpbb3_oauth_tokens
phpbb3_poll_options
phpbb3_poll_votes
phpbb3_posts
phpbb3_privmsgs
phpbb3_privmsgs_folder
phpbb3_privmsgs_rules
phpbb3_privmsgs_to
phpbb3_profile_fields
phpbb3_profile_fields_data
phpbb3_profile_fields_lang
phpbb3_profile_lang
phpbb3_ranks
phpbb3_reports
phpbb3_reports_reasons
phpbb3_search_results
phpbb3_search_wordlist
phpbb_acl_groups
phpbb_acl_options
phpbb_acl_roles
phpbb_acl_roles_data
phpbb_acl_users
phpbb_ads
phpbb_ads_forums
phpbb_ads_groups
phpbb_ads_in_pos
phpbb_ads_in_positions
phpbb_ads_positions
phpbb_ajax_chat
phpbb_ajax_chat_sessions
phpbb_attach_download
phpbb_attachments
phpbb_banlist
phpbb_bbcodes
phpbb_bookmarks
phpbb_bots
phpbb_captcha_answers
phpbb_captcha_questions
phpbb_chat
phpbb_chat_sessions
phpbb_config
phpbb_config_text
phpbb_confirm
phpbb_disallow
phpbb_drafts
phpbb_ext
phpbb_extension_groups
phpbb_extensions
phpbb_forums
phpbb_forums_access
phpbb_forums_track
Tables_in_DB1174859 	 
phpbb_forums_watch
phpbb_groups
phpbb_icons
phpbb_lang
phpbb_log
phpbb_login_attempts
phpbb_migrations
phpbb_moderator_cache
phpbb_modules
phpbb_notification_types
phpbb_notifications
phpbb_oauth_accounts
phpbb_oauth_states
phpbb_oauth_tokens
phpbb_poll_options
phpbb_poll_votes
phpbb_posts
phpbb_privmsgs
phpbb_privmsgs_folder
phpbb_privmsgs_rules
phpbb_privmsgs_to
phpbb_profile_fields
phpbb_profile_fields_data
phpbb_profile_fields_lang
phpbb_profile_lang
phpbb_ranks
phpbb_reports
phpbb_reports_reasons
phpbb_search_results
phpbb_search_wordlist
phpbb_search_wordmatch
phpbb_sessions
phpbb_sessions_keys
phpbb_sitelist
phpbb_smilies
phpbb_styles
phpbb_teampage
phpbb_topics
phpbb_topics_posted
phpbb_topics_track
phpbb_topics_watch
phpbb_user_group
phpbb_user_notifications
phpbb_users
phpbb_warnings
phpbb_words
phpbb_zebra
BTW Querie didnt work at all

:geek:
You got Brains like a Peanut, OMG i insulted a Peanut!
User avatar
Ger
Registered User
Posts: 2108
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by Ger »

Right, all cmBB tables are removed I see. Somehow, only the categories table was created, not the articles table.
To be sure: your database is DB1174859 and your table prefix is php32? You can check this in your config.php file.

Anyway: you should have a clean sheet now, so you should be able to install cmBB as usual.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

Okay,

I install it manually, there is still DATA he says.

When i turn it on he gives,

Code: Select all

Algemene fout
SQL ERROR [ mysqli ]

Table 'DB1174859.php32_cmbb_article' doesn't exist [1146]

SQL

INSERT INTO php32_cmbb_article (title, alias, user_id, is_cat, category_id, content, visible, topic_id) VALUES ('Home', 'index', '2', 1, 1, '', 1, 0)

BACKTRACE

FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()

FILE: [ROOT]/phpbb/db/driver/driver.php
LINE: 999
CALL: trigger_error()

FILE: [ROOT]/phpbb/db/driver/mysqli.php
LINE: 193
CALL: phpbb\db\driver\driver->sql_error()

FILE: [ROOT]/phpbb/db/driver/factory.php
LINE: 329
CALL: phpbb\db\driver\mysqli->sql_query()

FILE: [ROOT]/ext/ger/cmbb/migrations/install_cmbb.php
LINE: 179
CALL: phpbb\db\driver\factory->sql_query()

FILE: (not given by php)
LINE: (not given by php)
CALL: ger\cmbb\migrations\install_cmbb->add_default_values()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 711
CALL: call_user_func_array()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 658
CALL: phpbb\db\migrator->run_step()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 436
CALL: phpbb\db\migrator->process_data_step()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 288
CALL: phpbb\db\migrator->try_apply()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 241
CALL: phpbb\db\migrator->update_do()

FILE: [ROOT]/phpbb/extension/base.php
LINE: 78
CALL: phpbb\db\migrator->update()

FILE: [ROOT]/phpbb/extension/manager.php
LINE: 185
CALL: phpbb\extension\base->enable_step()

FILE: [ROOT]/includes/acp/acp_extensions.php
LINE: 197
CALL: phpbb\extension\manager->enable_step()

FILE: [ROOT]/includes/functions_module.php
LINE: 676
CALL: acp_extensions->main()

FILE: [ROOT]/adm/index.php
LINE: 82
CALL: p_master->load_active()
:ugeek:
You got Brains like a Peanut, OMG i insulted a Peanut!
User avatar
Ger
Registered User
Posts: 2108
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by Ger »

That's odd. As per the documentation, the update_data() is added AFTER update_schema(). And as you can see, I have made an instruction to create that table: https://github.com/GerB/cmbb/blob/maste ... bb.php#L28

Somehow it doesn't seem to execute right on your board. Are you sure you have a correct download? Check the migration file I link to above.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

Ger wrote: Wed Jul 05, 2017 11:15 am That's odd. As per the documentation, the update_data() is added AFTER update_schema(). And as you can see, I have made an instruction to create that table: https://github.com/GerB/cmbb/blob/maste ... bb.php#L28
You lost me here :roll: ?

I am sure i got the right one.

I dont have the DATA anymore, so i did a manuel install, but when i want to klik it on he give me this ERROR:

Code: Select all

Algemene fout
SQL ERROR [ mysqli ]

Table 'DB1174859.php32_cmbb_article' doesn't exist [1146]

SQL

INSERT INTO php32_cmbb_article (title, alias, user_id, is_cat, category_id, content, visible, topic_id) VALUES ('Home', 'index', '2', 1, 1, '', 1, 0)

BACKTRACE

FILE: (not given by php)
LINE: (not given by php)
CALL: msg_handler()

FILE: [ROOT]/phpbb/db/driver/driver.php
LINE: 999
CALL: trigger_error()

FILE: [ROOT]/phpbb/db/driver/mysqli.php
LINE: 193
CALL: phpbb\db\driver\driver->sql_error()

FILE: [ROOT]/phpbb/db/driver/factory.php
LINE: 329
CALL: phpbb\db\driver\mysqli->sql_query()

FILE: [ROOT]/ext/ger/cmbb/migrations/install_cmbb.php
LINE: 179
CALL: phpbb\db\driver\factory->sql_query()

FILE: (not given by php)
LINE: (not given by php)
CALL: ger\cmbb\migrations\install_cmbb->add_default_values()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 711
CALL: call_user_func_array()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 658
CALL: phpbb\db\migrator->run_step()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 436
CALL: phpbb\db\migrator->process_data_step()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 288
CALL: phpbb\db\migrator->try_apply()

FILE: [ROOT]/phpbb/db/migrator.php
LINE: 241
CALL: phpbb\db\migrator->update_do()

FILE: [ROOT]/phpbb/extension/base.php
LINE: 78
CALL: phpbb\db\migrator->update()

FILE: [ROOT]/phpbb/extension/manager.php
LINE: 185
CALL: phpbb\extension\base->enable_step()

FILE: [ROOT]/includes/acp/acp_extensions.php
LINE: 197
CALL: phpbb\extension\manager->enable_step()

FILE: [ROOT]/includes/functions_module.php
LINE: 676
CALL: acp_extensions->main()

FILE: [ROOT]/adm/index.php
LINE: 82
CALL: p_master->load_active()
Maybe its the same. i dont now i am lost again :ugeek: ?
You got Brains like a Peanut, OMG i insulted a Peanut!
User avatar
Ger
Registered User
Posts: 2108
Joined: Wed Jan 02, 2008 7:35 pm
Location: 192.168.1.100
Contact:

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by Ger »

Well, as you can see in the linked github line, I give the instruction to create the table cmbb_article table:

Code: Select all

			'add_tables' => array(
				$this->table_prefix . 'cmbb_article'	 => array(
				...
Your error states:

Code: Select all

Table 'DB1174859.php32_cmbb_article' doesn't exist [1146]
So that means that above instruction isn't executed (or not properly).

I have no idea why. Only things I can think of is that your installation file is invalid (but you say it is) or your board is somehow messed up. I think I cannot help you past this point. The installation procedure is valid, I'm certain of that. It's already validated as is by the extension validation team. I just ran the automatic validation (EPV) and that checks out OK as well.

Simply put: there's something wrong with your board and I have no idea what.
My extensions:
Simple CMS, Feed post bot, Avatar Resize, Modbreak, Magic OGP, Live topic update, Modern Quote, Quoted Where (GDPR) and Autoresponder.
Newest: FAQ manager for 3.2

Like my work? Buy me a coffee to keep it coming. :ugeek:

-Don't PM me for support-
User avatar
OmkePom
Registered User
Posts: 205
Joined: Tue Jul 15, 2014 8:38 am
Name: IJsbrand Nijboer

Re: [3.2][RC] cmBB - Simple Content Management for phpBB

Post by OmkePom »

I have the extension installed on my second Domein.

All runs wel, but its the only extension that exist on that domein. (proves i have the right 1 i geus)

I will try to install it on my board with all extensions out :)

I am lost, i also have the idea that you are lost to :roll:

Ps,
Board is a new 1, started at 17-01-2017
Never did a restore
You got Brains like a Peanut, OMG i insulted a Peanut!
Locked

Return to “Extensions in Development”