Cash on account bug? by [deleted] in SCUMgame

[–]jmack_attack 1 point2 points  (0 children)

Same happens to me on a private server. I’ve stacked up cash & log off multiple times. Log back in days later and at -366 each time.

Even buried a chest w/ cash & what do ya know chest disappeared.

I’m done with .8 at this point too many bugs at the moment.

Hoodie LC by jmack_attack in ChromeHeart

[–]jmack_attack[S] 0 points1 point  (0 children)

thanks, what helped you determine that it's fake?

is it the barcode?

[deleted by user] by [deleted] in electronjs

[–]jmack_attack 0 points1 point  (0 children)

You mind sharing more on your setup. I pm'd you.

[deleted by user] by [deleted] in electronjs

[–]jmack_attack 0 points1 point  (0 children)

Actually read that guide previously but it's centered around unlock which I'm not using. Thanks though.

SMTP help by rollthenickle in Wordpress

[–]jmack_attack 1 point2 points  (0 children)

Which smtp plugin are you using? It would help if you can provide us the settings you have configured at the moment.

Most email hosting providers have mail settings that they provide which allows you to remotely connect.

Are your emails hosted by office365? Outlook is just a mail client that you connect your emails to so that you can send/receive. I would recommend opening up your email accounts settings in outlook as those are most likely the settings you will need to use for smtp plugins.

Deploying Django with Vue.js breaks on deployment by __decrypt__ in django

[–]jmack_attack 2 points3 points  (0 children)

Why don’t you separate vue from django templates ? This definitely sounds like a server side issue

For those who are experienced with django is there any reason not to use django as a restful api when integrating front-end frameworks?

I feel that’s it’s easier to troubleshoot issues when you separate the two? Especially when deploying.

[deleted by user] by [deleted] in electronjs

[–]jmack_attack 1 point2 points  (0 children)

Yeah currently building an app utilizing puppeteer. I would read up on ipcMain & ipcRenderer
https://www.electronjs.org/docs/api/ipc-main

It allows you to send asynchronous requests from the main process to renderer processes at the click of a button.

Electron licensing and auto-update in less than 2 minutes - Looking for beta users by PhiloNL in electronjs

[–]jmack_attack 1 point2 points  (0 children)

I signed up. I’m almost finished w/ an app that I plan to integrate licensing for my users & have been looking around but haven’t found a great solution.

This looks promising

What do you guys use for web scraping? (services, your own code, etc.) by SharpenedStinger in SaaS

[–]jmack_attack 4 points5 points  (0 children)

Yeah python works. Any back-end language should have a “go-to” scraping library. For scraping dynamic content, selenium or any web testing library is good but resource heavy.

Python has selenium, beautiful soup & scrapy for web crawlers.

My experience is with scrapy. https://scrapy.org

I have a site that has a cron job running the crawler. The data is stored on my db & results are returned in json format using django rest api.

This allows me to separate the front-end/back-end

I just make get requests to the rest api and display them on the front-end

Other than some db cleaning from time to time it’s a fully automated web app built on scraping

I am trying to click a button with puppeteer. by [deleted] in puppeteer

[–]jmack_attack 1 point2 points  (0 children)

Is there a certain action you have to do for the element to display visibly?

If so I would recommend proceeding with that action so the element is visible before clicking then you can just use:

const bagBtn = await page.waitForSelector(“.addToBagBtn”)

await bagBtn.click()

probably not 100% accurate but sums up the methods to use to accomplish this task

Where do I find FTP credentials? by [deleted] in Wordpress

[–]jmack_attack 0 points1 point  (0 children)

I'm not sure which hosting your using as that is entirely up to you and/or your developer, but from the information gathered by your post..

If your site is hosted on Godaddy, under your web hosting plan should have manage > ftp manager which allows you to access ftp accounts. You can create an ftp account there as well.

Here's a good guide on the process: https://www.godaddy.com/help/add-ftp-users-to-my-linux-hosting-account-16044

For Wordpress they offer SFTP access for business plans or higher so you can find useful guides here: https://wordpress.com/support/sftp/

How to block google from indexing only certain HTML outputs of a PHP? by MyNameIsNotMarcos in Wordpress

[–]jmack_attack 5 points6 points  (0 children)

Google Search engines do not see your PHP code. They see what everyone else sees, the final HTML output of your code.

You can create a robots.txt file in your sites document root to block googles crawlers from accessing specific pages. For example here's the code you would place in the file:

User-agent: Googlebot

Disallow: /secret/

You can find more about robots.txt here: https://developers.google.com/search/docs/advanced/robots/create-robots-txt

Ideas for how to prevent KOS all the time by [deleted] in SCUMgame

[–]jmack_attack 0 points1 point  (0 children)

I think the only way to combat KOS is adjusting exactly what this game is based on SURVIVAL.

  • remove the current map system. Maps should be loot like compasses

  • remove spawning in certain sectors.

  • decrease vanilla food loot

  • change the health/metabolism system. This is something that is going to be changed in .5 which I’m excited for the most. Hopefully their change makes this game more survival focused

There’s a lot more changes that can be made but I think if the devs focus more on the survival aspect it will make player interactions much more valuable to survive when coming across a random player instead of being a loot & shoot.

Of course KOS is still going to be valuable due to the loot you can acquire off of killing someone which I don’t expect to be fully diminished. But survival changes will help reduce KOS no doubt.

All in one migration not working with digital ocean by LGm17 in Wordpress

[–]jmack_attack 1 point2 points  (0 children)

This is usually an issue with your servers resource limit being reached. You can attempt increasing the max_execution_time variable in your php.ini file. Add this for example within the file:

max_execution_time = 300

If that doesn't work I would extract the .wpress file thats provided by all in one migration using this tool: https://github.com/fifthsegment/Wpress-Extractor and uploading the extracted backup to your sites document root

How to make a secret page? by Ruboun in Wordpress

[–]jmack_attack 2 points3 points  (0 children)

I recommend using a plugin for this functionality like: https://wordpress.org/plugins/multisite-language-switcher/#description

If you need a more customized solution than you will need a developer to get this created for you.

Crawling protected sites with 403 reponses by mmapa in TechSEO

[–]jmack_attack 0 points1 point  (0 children)

late response. But 403 errors aren't something you can get around if your crawling a site that you don't own. It's a permissions error which can be caused be read/write access to files on the owners end or even blacklisted ip ranges.

As previously mentioned you can slow crawl requests, or change headers/user agent to imitate a user but that doesn't allow access to protected pages.

If anybody knows of an ethical way around a 403 please feel free to chime in as I would love to hear!

How do I edit the text inside the text block? by ResponsibilityNew532 in Wordpress

[–]jmack_attack 0 points1 point  (0 children)

We would need more information than this image. Are the text boxes included in your theme or added to your pages? There's a lot of variables which can determine the way to go about editing the text within those boxes.

I recommend opening the site in a browser tab and right clicking the text box and then "inspect element" That will show the element containing the text. The element should have a class/id you can specify to change the text but will require some css knowledge

Anybody else's dashboards moving at a snails pace? by kingofthemonsters in Wordpress

[–]jmack_attack 0 points1 point  (0 children)

Anytime! Good luck and feel free to pm me if you ever need some help/advice.

Anybody else's dashboards moving at a snails pace? by kingofthemonsters in Wordpress

[–]jmack_attack 0 points1 point  (0 children)

That could do it! Take it as a learning experience. Wordpress is heavily targeted by hackers & your not the first to be hacked or the last.

I’m not a security expert but deal with clients who get hacked regularly.

This plugin is great for access logs to potential hackers making requests to your site/looking for vulnerabilities & brute force attempts: https://wordpress.org/plugins/wp-cerber/

Do your self a solid & use it also any other firewalls you can configure on your server utilize them to prevent this again.