Oxygen Builder - You'll Build incredible Websites With Oxygen

Oxygen Builder - You'll Build incredible Websites With Oxygen v4.9.1

No permission to download

bmann

New member
Jan 11, 2021
7
4
3
Found nulled versions of OxyMonster and OxyMade with all Design Kits on another site, but he is asking for payment and can't trust. Can anyone post untouched versions, for nulling?
 

NullMaster

Well-known member
Null Master
Trusted Uploader
Jul 25, 2018
12,058
22,063
120
nulled method.
Code:
static function activate_license() {

        // listen for our activate button to be clicked
        if( isset( $_POST[self::$prefix.'license_activate'] ) ) {
            ob_start();
            // run a quick security check
             if( ! check_admin_referer( self::$prefix.'nonce', self::$prefix.'nonce' ) )
                return; // get out if we didn't click the Activate button

            // retrieve the license from the database
            //$license = trim( get_option( self::$prefix.'license_key' ) );
            $license = $_POST[self::$prefix.'license_key'] ? sanitize_text_field($_POST[self::$prefix.'license_key']) : false;
            
            update_option( self::$prefix.'license_key', $license );
            // data to send in our API request
            $api_params = array(
                'edd_action' => 'activate_license',
                'license'    => $license,
                'item_name'  => urlencode( self::$title ), // the name of our product in EDD
                'url'        => home_url()
            );

            // Call the custom API.
            $response = 200;

            // make sure the response came back okay
            

            $license_data = json_decode( wp_remote_retrieve_body( $response ) );
            $license_data->success = true;
            $license_data->error = '';
            $license_data->expires = 'lifetime';
            $license_data->license = 'valid';
            $message = '';
            
            
            
                if ( false === $license_data->success ) {

                    switch( $license_data->error ) {

                        case 'expired' :

                            $message = sprintf(
                                __( 'Your license key expired on %s.' ),
                                date_i18n( get_option( 'date_format' ), strtotime( $license_data->expires, current_time( 'timestamp' ) ) )
                            );
                            break;

                        case 'disabled' :
                        case 'revoked' :

                            $message = __( 'Your license key has been disabled.' );
                            break;

                        case 'missing' :

                            $message = __( 'Invalid license.' );
                            break;

                        case 'invalid' :
                        case 'site_inactive' :

                            $message = __( 'Your license is not active for this URL.' );
                            break;

                        case 'item_name_mismatch' :

                            $message = sprintf( __( 'This appears to be an invalid license key for %s.' ), self::$title );
                            break;

                        case 'no_activations_left':

                            $message = __( 'Your license key has reached its activation limit.' );
                            break;

                        default :

                            $message = __( 'An error occurred, please try again.' );
                            break;
                    }

                }

            

            // Check if anything passed on a message constituting a failure
            

            // $license_data->license will be either "valid" or "invalid"

            update_option( self::$prefix.'license_status', $license_data->license );
            wp_redirect( add_query_arg('tab', 'license', menu_page_url(self::$prefix.'menu')) );
            exit();
        }
    }
 

bmann

New member
Jan 11, 2021
7
4
3
With most of these things you can download them once, remove the plugin, and the design set components are still available. I just tried that today with OxyMonster. Installed, imported the kits, removed the plugin and then was able to export them in Oxygen's settings export.

Any chance you can share the design sets?
 
  • Like
Reactions: Pixelate

lilyleon

New member
Nov 16, 2020
12
3
3
ADVANCED SCRIPTS 2.0.1 (NOT NULLED)

Hi, thank you for posting this - I've been looking at purchasing it, so to get to try it out first is a bonus. However, I've installed this to my site, but I'm being asked for a licence key, before I can do anything with it.

Is there a way to overcome this please?

Lily
 

Prometheus

Active member
Aug 6, 2020
160
194
43
Hi, thank you for posting this - I've been looking at purchasing it, so to get to try it out first is a bonus. However, I've installed this to my site, but I'm being asked for a licence key, before I can do anything with it.

Is there a way to overcome this please?

Lily
I don't have the time to null it, that's why I wrote on the title (NOT NULLED). You have to ask someone here to null it
 

benjiboy

New member
Dec 23, 2020
16
10
3
OxyUltimate 1.4.19 and OxyUltimate Woo 1.1.16.1 booth nulled
Thanks for the upload.

All the shared plugins are very helpful and I'm grateful cos it's helping me in my learning without spending over the top dollars. Hopefully, with time, I will be capable of supporting them or learn to create my own resource. I started using Oxygen this year as my new year resolution, and have successfully built 2 sites from scratch for family. Now I want to tackle and learn WooCommerce with Oxygen.

Question: When I activate all the components from Oxy Ultimate and Oxy Ultimate Woo, I get an error in Oxygen template:
"Warning: preg_match_all(): Compilation failed: regular expression is too large at offset 36156 in /...directory.../plugins/oxygen/component-framework/includes/tree-shortcodes.php on line 407"

This is on a local install on my mac, if I deactivate some Oxy components, I don't get the error (which is what I am doing). Anyone experiencing this, and is there a work around. Five plugins are activated - Oxygen + Elements, Oxy Ultimate + Woo, and WooCommerce.
 
  • Like
Reactions: tanierlyons

mihaise

Member
Apr 4, 2020
29
91
18
Thanks for the upload.

All the shared plugins are very helpful and I'm grateful cos it's helping me in my learning without spending over the top dollars. Hopefully, with time, I will be capable of supporting them or learn to create my own resource. I started using Oxygen this year as my new year resolution, and have successfully built 2 sites from scratch for family. Now I want to tackle and learn WooCommerce with Oxygen.

Question: When I activate all the components from Oxy Ultimate and Oxy Ultimate Woo, I get an error in Oxygen template:
"Warning: preg_match_all(): Compilation failed: regular expression is too large at offset 36156 in /...directory.../plugins/oxygen/component-framework/includes/tree-shortcodes.php on line 407"

This is on a local install on my mac, if I deactivate some Oxy components, I don't get the error (which is what I am doing). Anyone experiencing this, and is there a work around. Five plugins are activated - Oxygen + Elements, Oxy Ultimate + Woo, and WooCommerce.

Search on google for more information but in short description it is not a OxyUltimate plugin issue is a small problem from Oxygen Builder and a little bit from PHP. preg_match_all() function in php has a default limit size of regex character. To solve this you need to edit ext/pcre/pcrelib/config.h from the PHP source distribution, before instalation, to increase the size limit, or specify it when compiling ./configure -DLINK_SIZE=4 to incrase the regex expression size. Other way is to Shorten the Regular Expression by using DEFINE or Split regular expression but this must be implemented in Oxygen Builder. The developer of Oxy Ultimate give you option to enable only the tools you will use. You can solve this only install a recompiled php for the moment.
 

benjiboy

New member
Dec 23, 2020
16
10
3
Search on google for more information but in short description it is not a OxyUltimate plugin issue is a small problem from Oxygen Builder and a little bit from PHP. preg_match_all() function in php has a default limit size of regex character.

Thanks @mihaise for your reply. I'll search online for more info and steps to fix - I was just worried getting that error, and no talks about it. I'll enable the tools I want to learn and go from there. Thanks once again.
 

Akeanes47

New member
May 23, 2020
22
12
3
20
Manhattan
Only for installing classes, which are obtained through the API key, so...
And how about sharing the files that are downloaded after you authenticated? Aren't there any files in the folder after you authenticated? Could make a page with the pre-made templates and save and share? This was discussed in the oxygen Facebook group...

Thanks
 

Prometheus

Active member
Aug 6, 2020
160
194
43
And how about sharing the files that are downloaded after you authenticated? Aren't there any files in the folder after you authenticated? Could make a page with the pre-made templates and save and share? This was discussed in the oxygen Facebook group...

Thanks
The JSON files you mean? yeah, of course you can do that. But obviously you won't trust the API key to somebody random here, it's too much of a hassle. I don't think someone here wants to copy 170+ blocks and 40+ templates, might as well pay for the long job and the cost of the initial products
 

Prometheus

Active member
Aug 6, 2020
160
194
43
And how about sharing the files that are downloaded after you authenticated? Aren't there any files in the folder after you authenticated? Could make a page with the pre-made templates and save and share? This was discussed in the oxygen Facebook group...

Thanks
And the classes of OxyNinja are not worth it, if you want to copy or use a framework you are better with one made by OxyMonster, which is basically Tailwind with a few tweaks
 

Pixelate

Active member
Oct 16, 2019
257
76
28
As I've mentioned before, these plugins need nulling as they require an API key to work properly. I am happy to share with someone who can null them.


Hydrogen Pack and Advanced Scripts haven't had an update for a while so the versions posted here are still up to date. Advanced Scripts v2 will launch early next year I imagine and is being redeveloped from the ground up.

I currently have:
  • Oxygen (agency version)
  • OxyMade
  • OxyMonster
  • Advanced Scripts
  • Hydrogen Pack
  • Core
  • WooCore
  • Swiss Knife (for Oxygen)
  • OxyToolbox
  • OxyExtras
As far as I am aware, every single one of those will need nulling by someone before they are of any use, other than OxyToolbox. I've attached OxyToolbox 1.4.2

Oxygen Toolbox 1.4.2
  • [Stylesheets Editor] Added a new module for managing user/custom Stylesheets outside Oxygen editor.
I'm not a Coder, so is it possible to use OxyMade or does nulling not matter because of the API key issue?
 

Pixelate

Active member
Oct 16, 2019
257
76
28
You can't null the key, so it's not possible to use OxyMade in that way
So is there a way to export the library templates quickly or that has to be done manually - which basically wont happen so dont bother trying to get oxymade design Kits?
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu