patrickposner
Forum Replies Created
-
Hey @erikmolenaar,
thanks for your report!
They should definitely be included by default – the problem often is related to file permissions.
We try to include the wp-includes files automatically (JS/CSS/images), but often we are getting blocked by the server itself.This is often done as a “security mechanism” at the hosting level or as part of a caching mechanism to artificially boost performance (like on InstaWP).
There isn’t a whole lot we can do here, but you should see the result of our copy process in the debug log (it will tell you which files we haven’t been able to copy!)
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Logging UI could be clearerHey @erikmolenaar,
thanks for your feedback!
Activity Log:
This depends on your cron schedule – we use WP Cron to pull in the updates (so it can be anything from every minute to every 15 minutes, depending on your hosting setup).
Debug Log:
These are two different things – the Activity Log is the baseline, whereas the debug log shows you every little detail – every file, every page, every API response, etc.
I’ll have a look if we can improve the wording here, but the Clear Log button is related to the Debug Log!
Thanks again for your feedback – keep it coming! 🙂
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Broken link in dashboard widget@muraokashotaro great catch!
I’m getting this fixed right away and including it in the next update!
Much appreciated!
@jamesjosephfinn good catch!
This is indeed a bug in the handler (just pushed a patch for it) – update will be available soon!
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Breaks SVG@revixi5 Try again now with 3.6.8 – looks like I’ve missed parts of the SVG problem on the last version, but it should handle both cases now!
@wolfdal3 Try again now with version 3.6.8 – we implemented batch processing for huge ZIP files as long as ZIPArchive is available as an extension (which seems to be the case on your site).
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] Breaks SVG@revixi5 fixed now in today’s update!
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] mobile menu problem@mhjackson123 thanks for reaching out!
There are a few JavaScript files missing specifically for the mobile menu – manually including them in Simply Static -> Settings -> General -> Include -> Additional Files and Directories will solve that.
Take a look a the docs right here to find the files to include: https://docs.simplystatic.com/article/55-how-to-find-missing-css-and-js-files-on-your-static-site
We are going to improve that with the next update to avoid that – you probably have some old constants in your wp-config.php file flagging this even though the plugin isn’t active.
@y54qi solved now in 3.6.5!
Hey @johnwuser1245,
thanks for reaching out!
Simply Static replaces URLs by looking for your WordPress Site URL (Settings → General → Site Address) in the generated HTML/CSS/JS files and swapping it with the destination URL (or converting to relative paths).
Your WordPress staging site’s Site URL is set to http://10.16.205.66. When Elementor and other plugins generate CSS/JS, they embed that internal IP as the base URL. Simply Static then:
1.Fetches all pages from http://10.16.205.66
2.Looks for http://10.16.205.66 in the output files to replace it
3.Replaces it with relative paths (if you chose “relative URLs”) or your destination URLIf URLs in the generated files don’t match the Site URL exactly (e.g., protocol mismatch http vs https, trailing slash differences, or the URL was hardcoded differently), they won’t be replaced. The CORS error you’re seeing confirms that http://10.16.205.66 URLs are leaking through into the static output served on https://arbitcds.com.
What To Do
- Your staging site’s Site URL should be your staging site’s actual URL (the internal IP or local domain). Don’t change it to the production domain — that would break WordPress admin and routing.
- Enable “Force URL Replacement”
This is in Simply Static → Settings → General. It does a final string replacement pass on all files. - Check the “Origin URL” and “Destination URL” in Simply Static Settings
Go to Simply Static → Settings → General and verify:
• Origin URL: Should be http://10.16.205.66 (matching your WP Site URL exactly, including protocol and no trailing slash
• Destination URL: Should be https://arbitcds.com (your production domain)
If these don’t match what’s in your files, replacement will silently fail. - Check for protocol mismatches
The most common reason “force replace” doesn’t work is a protocol mismatch. Your staging uses http:// but if any plugin generates https://10.16.205.66 URLs (or vice versa), those won’t match the origin pattern. You can add a filter to handle both:add_filter( 'ss_origin_url', function( $origin_url ) {
// Ensure both http and https variants are covered
return $origin_url;
} );
Or better yet, add custom force-replace entries. In Simply Static → Settings → General, under “Force URL Replacement”, add entries for both protocols:
• http://10.16.205.66 → https://arbitcds.com
• https://10.16.205.66 → https://arbitcds.co - Check for hardcoded URLs in Elementor data
Elementor stores URLs in postmeta as serialized data. Sometimes URLs are hardcoded with the full domain. After export, grep your static output:grep -r "10.16.205.66" /path/to/static/output/
This will show you exactly which files still contain the unreplaced IP. Share the file types (.html, .css, .js) — this helps narrow down where replacement is failing. - Try absolute URL mode first
Try absolute URL replacement first instead of relative. Set the Destination URL to https://arbitcds.com and disable relative URLs temporarily. This is easier to debug because you can grep the output for the old IP address. Once that works, you can switch back to relative if needed.
Hey Richard,
this will be patched in the next update shipping early next week!
Look out for the 2.2.0 release!Hey @awaisaltafwds,
we are not allowed to do support for the pro version in the forum – please reach out via our dedicated pro support on our website, and we are happy to help you, thanks!
Forum: Plugins
In reply to: [Simply Static - The Static Site Generator] @font-face src:url not updating@rahbekdigital should be solved now in 3.6.1!
Hey @maddogtannen,
this has been already fixed in our latest dev version – please use our official support channel to get a link to it as we are not allowed to do support for the pro version here.