Jump to content

ABGenc

Members
  • Posts

    1,040
  • Joined

  • Last visited

  • Days Won

    2

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by ABGenc

  1. 58 minutes ago, Martin A. said:

    Who said this to you? Quite impressive of them to say that I'm responsible for errors in the database table core_item_member_map...

    That's their own table, one they added in 4.6. There's no way Member Map is the cause of this. 

    Not sure why you're not able to uninstall it. Might be an issue with apps disabled before 4.5, and then still being disabled in 4.6. Sounds like something they should look into, not push you over to me. I am not responsible for their uninstaller.

    Thanks Martin, I might have pushed them in the direction cause seeing the table name I also thought it was related to the application but have provided every detail as I have given to you.

    I have also insisted that it is an IPS problem if I can not uninstall an application but they did not accept.

    I have shared your comment with them and hope to get it solved soon.

  2. Just now, Stuart Silvester said:

    This is your remaining problem, something is redirecting that request to the homepage instead of showing the Service Worker JS. We don't have any redirects in this controller so I suspect it may be something third party or server related.

    Yes Stuart, @Duken has chosen the landing page as

    start_url: "/forums/discover/"

    but service worker has

    const BASE_URL = "https://www.duken.nl/forums/";

    I think if @Dukendisables the custom URL setting it will work

  3. When you inspect the page there seems to be 2 warnings for Installability.

    For the second warning, there should be a response to following link but it is directed to homepage. But dont know how it is activated though. My site had the application installable a few hours after uploading the images without doing anything additional.

    https://duken.nl/index.php?app=core&module=system&controller=serviceworker

    For Installability to be active there are requirements. You can check the following link ;

    https://web.dev/install-criteria/

    resim.thumb.png.0c10fdcb0afee63d2bb524e504518df4.png

  4. Hi @Martin A. I had disabled Member Map during 4.5 upgrade for a possible future upgrade of the application and a few days ago I have upgraded to 4.6. Now I get errors related to Member Map when I want to split messages like

    IPS\Db\Exception::1062
    UPDATE `core_item_member_map` core_item_member_map  SET `map_item_id`=31670 WHERE map_class='IPS\forums\Topic' and map_item_id=28234
    Duplicate entry 'IPS\forums\Topic-31670-2' for key 'map_unique'

    I can not uninstall the application because it is in the  "Applications not currently installed" list.

    When I try to install, I get the following error

    The application you are attempting to install appears to be installed already. To reinstall the application you must first uninstall it.

    I have raised a ticket to IPS but they said I should contact you. How can I manually uninstall the application ?

  5. I was not familiar to PWA till I have heard here and the only thing I cared about was the push notifications to tell the truth.

    I was a bit upset after upgrading to 4.6.1 cause I had no sign of an application that I had a few weeks ago on this site. I read the articles here and the only thing I found related was the the splash screen setting. I searched, found and placed one and just a few hours later I have seen a notification on my phone to copy the application of my site to home screen. When I said Yes, the application was there with my site's name and logo. Now all is set and working perfectly.

    During the search I have found the following link. If you have not already copied yet, you can easily copy the app on your phome home screen or PC's desktop

    https://support.google.com/chrome/answer/9658361

    And here are the requirements for the app to be installable

    https://web.dev/install-criteria/

    Hope it will be helpful for those who are not familiar with PWA.

  6. On 6/17/2021 at 9:21 AM, Saurabh Jain said:

    and when some get an option to save icon on home screen

    That is one thing I am wondering too. Do users have to manually save the site to home screen or will they be notified to do so as it was for this site? 

    I have upgraded to 4.6.1 and wonder where is the splash screen image setting mentioned below.

    Edit : I have just found the splash screen image setting in > Customization > Icons & Logos

     

  7. 1 hour ago, Paul E. said:

    Yes, look into using a firewall to block these connections.

    Unfortunately, the request has to go to IPS to see if there's an address to return. There aren't files on your server for every thread, forum, etc.

    Cut them off before they hit your webserver.

    I have a builtin firewall on the server but you can not write a rule for this behaviour.

    To make it a bit clearer,

    If the access this link  --> <YourDomain>/system/Redis/Redis.php ( the file exists ) you get a rapid blank page as a response which does not hit IPS and consumes almost no CPU

    But it you access this --> <YourDomain>/system/Redis.php ( no such file ) you get "The page you requested does not exist" from IPS which definitely consumes more CPU

    and if the number of the second one rises my load gets higher.

    I wonder if this can be achieved by a setting in IPS or extra htaccess codes.

  8. Hi,

    Normally my server load is around 1 or a bit lower but time to time it just peaks to 10s. During that time I trace to processes ( using WHM / cPanel ) and find out that several requests like follows are logged.

    Seems there is a program looking for a poor php that it can attack. Actually I dont worry about them cause that is internet but the some pages get an error page from IPS script as ;

    The page you requested does not exist

    Error Code 1S160/2

    which I believe causes the load to server where others just get a white blank  page.

    Any way to overcome the issue so that non existent pages are not processed by IPS script but server instead to cause a much less CPU load ?


    access("/home/myaccount/public_html/system/Dispatcher.php", F_OK) = -1 ENOENT (No such file or directory)
    access("/home/myaccount/public_html/system/Dispatcher/Dispatcher.php", F_OK) = 0
    open("/home/myaccount/public_html/system/Dispatcher/Dispatcher.php", O_RDONLY) = 4

    access("/home/myaccount/public_html/system/Request.php", F_OK) = -1 ENOENT (No such file or directory)
    access("/home/myaccount/public_html/system/Request/Request.php", F_OK) = 0
    open("/home/myaccount/public_html/system/Request/Request.php", O_RDONLY) = 4

    access("/home/myaccount/public_html/system/Session.php", F_OK) = -1 ENOENT (No such file or directory)
    access("/home/myaccount/public_html/system/Session/Session.php", F_OK) = 0
    open("/home/myaccount/public_html/system/Session/Session.php", O_RDONLY) = 4

    access("/home/myaccount/public_html/system/Redis.php", F_OK) = -1 ENOENT (No such file or directory)
    access("/home/myaccount/public_html/system/Redis/Redis.php", F_OK) = 0
    open("/home/myaccount/public_html/system/Redis/Redis.php", O_RDONLY) = 4

    access("/home/myaccount/public_html/system/Settings.php", F_OK) = -1 ENOENT (No such file or directory)
    access("/home/myaccount/public_html/system/Settings/Settings.php", F_OK) = 0
    open("/home/myaccount/public_html/system/Settings/Settings.php", O_RDONLY) = 6

    access("/home/myaccount/public_html/system/Lang.php", F_OK) = -1 ENOENT (No such file or directory)
    access("/home/myaccount/public_html/system/Lang/Lang.php", F_OK) = 0
    open("/home/myaccount/public_html/system/Lang/Lang.php", O_RDONLY) = 6

     

  9. Thats is what I have got during upgrade yesterday and thanks to a previous post (below) which saved the day. We can overcome upgrade error just like you have shown in your video but there may be more tables ( I had mode than 150 in my case) which causes a warning each time you run Support Tool.

    Since I did not want to put a script on the server which was suggested on the other post, I had to do them in batches as you have shown in video which of course took a while.

    By the way you can get a list of the tables if you have SSH access to MYSQL

    >MYSQL

    >USE <DBNAME> ;

    > SHOW TABLE STATUS  WHERE Row_format="Compact";

     

     

  10. 4 minutes ago, ahc said:

    People who are used to the way Twitter works would be more inclined to stick around on other websites that function like Twitter because people hate change and learning new things.

    Besides all functions the top one missings are the application and the notifications. I believe if it was available we would seek less functions among the ones available in othe social media applications 😉

  11. 3 hours ago, breatheheavy said:

    In what way? 

    @Adrian A. got what I mean and I wish I could give more detail but your site seems to be blocking me for not registering and I cant go to the announcement any more 😏

  12. 20 hours ago, breatheheavy said:

    Installed on my site and activated! Going to see how it performs over the next few days with my members then circle back here.

    Feel free to check out my post about it here:

    https://www.breatheheavy.com/exhale/index.php?/forums/topic/779188-introducing-hashtags/

    The subject and your effort was interesting but at the end I realised the hashtags you have used on your site basically seems to run a standart search. The tagging system is much more closer to hashtags than this is 😏

  13. 4 hours ago, Duken said:

    Thank you for the hint. What kind of code did you add? Just to be sure ?

    Custom Ad -> Supply HTML Cod  -> <Ad Code given by Google> -> Custom Location -> Custom Locations Key = Google_Adsense_Auto -> Shows to -> Guests

    and in globaltemplate right before the commented if statement.

          	{advertisement="Google_Adsense_Auto"}
    		<!--[if lt IE 9]>

     

  14. 34 minutes ago, Duken said:

    Is there a solution yet? Hate the ads over text ?

    I have complaints about it as well . The only solution I could apply was @AlexWebsites advice below. I have decided to show the ads to guests and users with very few posts. But to tell the truth the Auto Ads have made a big difference in terms of revenue. It is almost 4 times more compared to times before Auto Ads.

     

  15. 6 hours ago, Mike John said:

    The Auto Welcome app has been updated with a few more bug fixes and re-organizing of the admin settings. I've also confirmed IP.Board 4.3.x compatibility as well.

    Hi Mike, would you recommend upgrade or reinstall ?

  16. 33 minutes ago, opentype said:

    Edit: I just checked. Not sure why you still see that. It shouldn’t be in the 3.0 version at all. Its not only stripped from the templates, but also from the settings form. 

    It was an upgrade according to the instructions. Would you recommend uninstall / install ?

  17. On 12/7/2016 at 2:24 PM, opentype said:

    It checks for the existence of the Twitter handle AND the existence of a Record Image. If both are valid, the meta tags should be generated for the specific article page. 

    Sorry for my ignorance, but would Twitter Card support in general settings conflict with this one ?

×
×
  • Create New...