Everything posted by Nathan Explosion
-
(NE) Hide content
OK - thank you; that is MUCH MORE helpful than what was posted. So, is the actual issue better described as the following? In the post, there's a link, then a video then an image, then a Youtube embed However, when viewing as a guest, you see the hidden items as the following (based on the text for hiding) Image (which is incorrect, as it's a link) Video (which is correct) Image (which is correct)
-
(NE) Hide content
Also - you installed the app twice today; prior to that your last update/install was done in May. Is the above issue something that appeared BEFORE you did the 2 installs today, or is one of those installs an update to the latest version? Or has this issue suddently appeared for you, which then lead you to do the 2 installs?
-
(NE) Hide content
No idea - you've said lots there but not provided helpful information such as what version of the application you are running; what version of Invision's software you are running; maybe a screenshot of what it is that you are describing? And some screenshots of your settings would also be helpful. You can delete tables from your database if you wish, but I've not idea why you would do so - hint: this application doesn't have any tables in your database. So...start again with the request for support...provide better information and then I can assist you.
-
First post of Thread
-
Need Help with the Forums while transfer to PHP 8.0 version
Have you uploaded this to your site to ensure all is well?
-
Database size significant increases
-
Edit or add "Font Size"
-
CKEditor Plugin does not appear to be valid
You don't - that's the full CKEditor package. You download individual plugin zip files: https://ckeditor.com/cke4/addon/table
-
Disable Plugin, Custom code block stops working!
And those errors are?
-
constants.php on hosted and localhost question
Fill your boots...
-
constants.php on hosted and localhost question
Because the need for something in one environment doesn't mean it is needed in all environments.
-
constants.php on hosted and localhost question
Note the word 'create'... It's not there because it isn't needed...unless you need to create it and add to it. So...create one.
-
Anyway to allow Members to be Able to Delete their own Posts
Nope - it's a user group level control, not a moderator restriction control.
-
(NE) Translate
Did you follow the provided instructions for inserting the required code into your database templates? If you need assistance on doing that, or a verification that what you have added is correctly done, then I'll need access to your site's ACP to check the templates.
-
Is it safe to remove these HTML templates? Are they are EOL?
An easy way to answer this would be to download the developer tools and check if they still exist in those. If they do, don't remove them. If they don't, delete away. Also - maybe the "Unique to this theme" filter on the template listing answers the question?
-
Sidebar not visible on mobile
-
Advertisements don't load with the lastest version
It works fine but it's not going to be getting any further updates - and I highly doubt that it does do what you are trying to do, so it's not an option at all.
-
4.7.13 Beta 2 - 'cleanup' task locking up->getTimestamp()
Just popped up on my local dev install... DELETE FROM `core_contact_verify` WHERE verify_time<IPS\DateTime::__set_state(array( 'date' => '2023-08-05 12:02:03.826529', 'timezone_type' => 3, 'timezone' => 'UTC', )) IPS\Db\Exception: Truncated incorrect INTEGER value: '8/5/2023 12:02' (1292) #0 C:\wamp64\www\dev\ips_47_dev_c\system\Db\Db.php(1297): IPS\_Db->preparedQuery('/*ips_47_dev_c:...', Array) #1 C:\wamp64\www\dev\ips_47_dev_c\applications\core\tasks\cleanup.php(336): IPS\_Db->delete('core_contact_ve...', Array) #2 C:\wamp64\www\dev\ips_47_dev_c\system\Task\Task.php(274): IPS\core\tasks\_cleanup->execute() #3 C:\wamp64\www\dev\ips_47_dev_c\applications\core\modules\admin\settings\advanced.php(751): IPS\_Task->run() #4 C:\wamp64\www\dev\ips_47_dev_c\system\Dispatcher\Controller.php(107): IPS\core\modules\admin\settings\_advanced->runTask() #5 C:\wamp64\www\dev\ips_47_dev_c\applications\core\modules\admin\settings\advanced.php(38): IPS\Dispatcher\_Controller->execute() #6 C:\wamp64\www\dev\ips_47_dev_c\system\Dispatcher\Dispatcher.php(153): IPS\core\modules\admin\settings\_advanced->execute() #7 C:\wamp64\www\dev\ips_47_dev_c\admin\index.php(13): IPS\_Dispatcher->run() #8 {main} The task's last action is: /* Delete Contact Us Verifications older than a month */ \IPS\Db::i()->delete( 'core_contact_verify', array( "verify_time<?", \IPS\DateTime::create()->sub( new \DateInterval( 'P30D' ) ) ) ); Needs a "->getTimestamp()"
-
Task run times
Here's what I would do based on the currently available functionality. Set the task to run every minute In your execute(), check if the time is 5pm If it is then proceed with the rest of the code If not, then do nothing.
-
Is there a 'Save as Draft' option in blogs or articles?
Make use of the ability to publish in the future: Set a date, work away on the content, and then publish it when ready.
-
Is there a way to do "content cloaking"?
Nathan Explosion replied to John Michaloudis's post in a topic in Classic self-hosted technical help(NE) Hide content
-
Is the Courses option part of my plan?
Nope - it's a Cloud-only feature.
-
How do I use the same theme from the marketplace and edited in two different version
-
Why is member search count different than member widget count? Which is correct?
The widget count is just a SQL query - it's not a figure that is recalculated as and when something is done: /* fetch only successful registered members ; if this needs to be changed, please review the other areas where we have the name<>? AND email<>? condition */ $where = array( 'completed=?', true ); /* Member count */ $stats['member_count'] = \IPS\Db::i()->select( 'COUNT(*)', 'core_members', $where )->first(); Which is: SELECT count(*) from core_members WHERE completed = TRUE; Got a tonne of validating members? Maybe show what search criteria was used for the search result? (To be clear how you got there)
-
Unquote posts
Well, I mistakingly made the assumption that hadn't worked for you...