Hi i have a problem with upload files. When i try upload image cant save on my page and tell me
please select my files...
Hi i have a problem with upload files. When i try upload image cant save on my page and tell me
please select my files...
Hi @iki,
Please use the right checkbox to select file before clicking on green button.
Also please let me know if your website is a WP Multisite installation.
In any case you should check the attachments table in database. Use Hosting cPanel > phpMyAdmin Database manager, navigate to the WordPress database and find _wpforo_attachments table. If this table doesn't exist try to create it by executing the SQL command below in SQL tab of phpMyAdmin. Please change the red marked table prefix if your table prefix doesn't match:
CREATE TABLE IF NOT EXISTS `wp_wpforo_attachments`(
`attachid` INT NOT NULL AUTO_INCREMENT,
`userid` INT NOT NULL,
`filename` varchar(255) NOT NULL,
`fileurl` VARCHAR(255) NOT NULL,
`size` INT NOT NULL DEFAULT 0,
`mime` varchar(255) NOT NULL,
`posts` INT NOT NULL DEFAULT 0,
PRIMARY KEY (`attachid`),
KEY (`posts`),
KEY (`userid`)
);
Thank you for respond, the checkbox select file to upload still dont work, when i searched in database _wpforo_attachments it doesnt exist
, next when i created new tab i have another error. What next? Sorrry for my nescience and my english too.