3261 comments found.
Hi, I have a problem after updating the system font, when I write text, some characters disappear after saving and I can’t save them there. These are characters like ž,á,ý,č and others. I want to make these changes in the administration, page editing, v5.3.5
It is also not possible to add SVG code to the website and user social profile management.
Please open a support ticket and include your website URL. Without being able to review your website, I’m unable to identify what may be incorrect or causing the issue. Once I have access to review it, I’ll be happy to assist you further.
hi, my ticket is #bhzsawdg Thank you
Hi, thank you, I have sent a reply
Hi, I want to report a problem with the support system. I have opened several tickets on the support page, but every ticket is closed automatically right after I submit it. No one replies, and I cannot continue the conversation. To be honest, I am a bit disappointed, because before buying I read that your support is very good. Today I also opened a new ticket, and it was closed immediately again. These are the ticket IDs: #YAddEiAG, #xHS7EuUV, #b3duMmkO. Please tell me how I can contact support properly and get a response. Thanks
I have already replied to you. But I think you closed the ticket. https://ibb.co/1fs45Bws We do not have the authority to close tickets.
You have opened a ticket for the SegPay payment plugin, but no response has been provided to this ticket. You are right, and I am sorry about that. If you still want the special paid payment plugin for SegPay, you can renew this ticket. You have created three tickets so far. You have received responses to two of them, and you closed the other one yourself. However, do not worry; the support system is always ready to serve you.
Hi, No problem at all.
This is actually one of my favorite scripts, and I am very happy that I purchased it. I believe this is probably some technical issue in the background. I did not close the ticket myself. Please reopen it, and we can continue the conversation. Thanks 
I don’t want to open a separate new bug ticket for every small thing, but it might be that the program I downloaded is corrupted, because for example I don’t have any countries or cities in the administration interface. Or do I have to create these myself? Or how exactly is this supposed to work?
Thank you for your kind words, I’m really glad to hear that you’re enjoying the script.
To clarify this point clearly: your downloaded package is NOT corrupted. The files you have are exactly the same as the demo version, with no missing or extra components.
Regarding Countries and Cities: This script does not use a database-based country or city management system in the admin panel. All country names are handled via the language files by design. This approach ensures full localization flexibility and avoids unnecessary database overhead.
You can find and edit the country list here: langs/ (inside the relevant language file)
If you wish to customize, rename, add, or remove countries, you can safely do so directly in those language files.
So in summary: - Nothing is missing from your installation - No additional setup is required - Countries are intentionally managed via language files, not via admin CRUD
If you need guidance on customizing the language files, I’ll be happy to help you step by step.
Yes, apologies, this was my mistake
I built the language file incorrectly. It’s working now, sorry again. I’ll send a video soon showing the issue I still have with uploading videos.
I updated the #b3duMmkO ticket with a video screen recording video link. 
Hello,
Thank you for the update. I’ve reviewed the video you shared on the ticket, and the issue has been clearly identified.
This is a server configuration–related matter, not a bug in the script itself. We are already continuing the process through the support ticket to resolve it properly.
Once the required server setting is adjusted, the video upload functionality will work as expected.
Thank you for your cooperation and understanding.
Best regards,
Thank you very much, you’re awesome
.
However, I wanted to create a new ticket again, and I cannot, because I get this message: “You already have a ticket in progress. If you want to ask a question other than your old ticket, please write ‘close’ on your existing ticket.”
The same thing happened before. But if I click on “create a new ticket” at the bottom of the existing ticket, it closes the ticket I opened before. So this is not a human error, but rather a program error. Now, if I create a new ticket, it will close the previous one. I want to emphasize that this was not my mistake, the program does it automatically because it does not allow creating a new ticket while there is an open ticket.
Hello,
I believe you are referring to the ticket #b3duMmkO.
That ticket was closed in order to open a new one, which means it can no longer be continued. At the moment, you already have an active ticket, which is #OYCDRU3r.
What likely caused the confusion is the following workflow:
- When an open ticket exists, the system does not allow creating another one. - Closing the previous ticket automatically makes the new ticket the active one. - Continuing the conversation on a closed ticket is therefore not possible.
Currently, #OYCDRU3r is your active ticket. I can see that it was edited, but no additional information was provided there yet.
To move forward and assist you properly, please reply directly to the active ticket #OYCDRU3r and include the required details (such as server or cPanel access), as previously requested. Without server-level access, I’m unable to verify or resolve the issue.
This is not a user error or a script bug, but simply how the ticket system is designed to operate: only one active ticket can be handled at a time.
Once you reply on the active ticket, we can continue without any issue.
Best regards,
Hi The script is fantastic, and we’re moving it to a new server, a dedicated virtual server, so that all functions work perfectly. However, it’s very important that the new server will have the latest CloudPanel, which does not support Apache, only NGINX. NGINX, however, cannot handle the .htaccess file and its contents.
So my question is: is the .htaccess file important for the script to work? Does it contain anything that would require running it on an Apache server? The problem is that Apache uses about 600–800 MB of memory, while NGINX only uses around 150 MB. And the CloudPanel, which is currently the most modern hosting panel, only supports NGINX. Thanks
NGINX & CloudPanel Compatibility
Hello,
First of all, thank you very much for your detailed message and your kind feedback about the script. I fully understand your concerns regarding performance, memory usage, and CloudPanel’s NGINX-only architecture.
Short and clear answer:
No, the script does NOT require Apache, and the .htaccess file is NOT mandatory. 
About .htaccess
The .htaccess file is used only for Apache-based servers to handle:
- URL rewriting
- Basic access restrictions
- Minor security rules
When running on NGINX, these rules are simply moved to the NGINX configuration level. This is not a limitation, but actually the recommended and more performant approach.
CloudPanel + NGINX Support
The script is fully compatible with:
- CloudPanel
- NGINX + PHP-FPM
- Dedicated or VPS environments
There are no Apache-specific dependencies in the codebase.
How It Works on NGINX
Instead of using .htaccess, the same logic is defined inside CloudPanel’s Custom NGINX Config section.
Here is a safe and tested example configuration you can use (paths and PHP socket may need adjustment):
map $http_x_forwarded_proto $fastcgi_https { default off; https on; }
server {
listen 80;
server_name yourdomain.com;
root /home/<user>/htdocs/<subfolder_if_installed>;
index index.php index.html;
location ~ /\. {
deny all;
}
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~* \.(css|js)$ {
expires 7d;
add_header Cache-Control "public";
}
location ~* \.(jpe?g|png|gif|svg|ico|pdf)$ {
expires 30d;
add_header Cache-Control "public";
}
location ~ ^/(themes|includes|sources|langs|src)/.*\.(php|phtml|php[0-9]?|phps)$ {
deny all;
return 403;
}
location ~ \.php(?:$|/) {
try_files $fastcgi_script_name =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param HTTPS $fastcgi_https;
fastcgi_param HTTP_AUTHORIZATION $http_authorization;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
}
client_max_body_size 128m;
}
Performance & Memory
Your observation is absolutely correct:
- Apache: ~600–800 MB memory usage
- NGINX: ~150 MB memory usage
Running the script on NGINX + PHP-FPM is actually the preferred setup for high performance and scalability. 
Final Confirmation
- The script works perfectly on NGINX
-
.htaccessis NOT required - CloudPanel is fully supported
- No functionality is lost by not using Apache
I hope this detailed explanation and description has been helpful to you.
Best Regards
Hi everyone!
First of all, I wish everyone a very happy and awesome New Year.
Earlier, I created a ticket in which I submitted the content of the Vhost file, but since then I managed to do it, so please do not take that modification into account.
The website is now working properly, and we are testing it again.
If we find any errors on the new server, I will open a new ticket on the support page.
Thank you very much, and once again, happy New Year to everyone! 
Hi everyone!
First of all, I wish everyone a very happy and awesome New Year.
Earlier, I created a ticket in which I submitted the content of the Vhost file, but since then I managed to do it, so please do not take that modification into account.
The website is now working properly, and we are testing it again.
If we find any errors on the new server, I will open a new ticket on the support page.
Thank you very much, and once again, happy New Year to everyone! 
Hi, on the admin panel there is a section that says: “Minimum point amount: 5”. I don’t quite understand what this 5 is the minimum of. There is a minimum subscription, a minimum tip, so what is this 5 referring to? Thank you for the answer!
Hello,
Thank you very much for the update and for taking the time to inform us. We’re glad to hear that the Vhost configuration has been successfully resolved and that your website is now running properly on the new server.
That approach is perfectly fine. Please feel free to open a new support ticket anytime if you encounter any issues during your testing process. We’ll be happy to review and assist you promptly.
Thank you again for your kind message and wishes. We wish you a successful launch and a happy, healthy, and productive New Year as well.
Best regards, Support Team
That “Minimum point amount: 5” is the floor for anything that’s priced with points. It stops people from setting a point price below 5 when they lock a post or message, create point packages/coins, or set prices for gifts/frames—so 5 points is the cheapest option allowed. It doesn’t touch the separate minimums you set for subscriptions or tips. If you want to let people charge less in points, lower that number.
Super
Thanks. I opened a ticket about the “Unable to read video duration” issue, please check it .Thanks
Sorry i closed the #ARgyeMwE ticket because i fixed the problem
I really love this script 
Can you tell me where are these post types (Image / Video, Reels, Poll, Create as campaign, Product, Schedule) translation, because i dont found in the language file and also not found in óthe admin side.
Thanks 
Hi Mustafa, can you take a look at my ticket, I sent it on Dec 17, 2025. At the moment, what I need the most is the post, I don’t know what the problem is. I found more things, but I can’t update the ticket. The update is brutal good.
existe api de conversão de video ?
No. There is no external video conversion API required. You only need FFmpeg to be installed and enabled on your server. All video processing and conversion operations are handled directly on your own server using FFmpeg.
Dear Developer, I wanted to submit a developer ticket, but this is only possible after purchasing the product. I do not want to purchase it until I get answers to a few important questions, so I am writing here instead. Please send me an email address where we can communicate directly, as the support page only allows contact if I already have a license code. My questions briefly: which transactions currently generate commission for the administrator? is it possible for the administrator to receive a percentage from: live stream viewing, private stream viewing, gift sending, product sales? If these are not available, can this be implemented as a custom development, and if yes: how long would it take, and what would be the cost? Thanks. Botor
Hi! Sorry, I forgot to ask one more thing: is it possible to tip or reward posts here? On most similar platforms, posts can also receive tips, but I couldn’t find this option on your site. Thank you!
Hi, and thank you for your purchase. We really appreciate it.
For security and proper tracking, we handle all support requests exclusively through the customer support form in your client panel. Please submit your request there. This allows us to verify your license and assist you more efficiently, which is why we do not provide direct email support.
Regarding administrator commissions: By default, a global commission rate is applied automatically across all monetization channels. This includes:
- Subscriptions - Paid / private posts (PPV) - Paid live stream access - Live stream gifts and tips - Video calls - Shop product sales - Post payments and campaign-based donations
The administrator’s share is deducted automatically from each of these transactions.
If you need different commission percentages per transaction type or custom commission rules, this can be implemented as a custom development. Once the exact scope is defined, we can provide an estimated timeline and cost.
Regarding your additional question about tipping posts: Yes, post tipping is supported. Followers can send tips directly to posts they like. These tips are added to the creator’s earnings, and the administrator commission is applied in the same way as other earnings.
Next step: Please open a support ticket from your panel with your detailed requirements. After reviewing your use case under your licensed account, we can guide you further and, if needed, prepare a custom development proposal.
Upcoming Update Announcement
Hello Dear DizzyScripts family,
Based on your valuable feedback, I would like to share the planned features and improvements that will be included in the upcoming update. The main goal of this release is to deliver a more stable, flexible, and manageable system.
New Features & Improvements
-
NowPayments Integration
A NowPayments payment gateway will be added to support crypto-based payments. -
Bunny.net Storage Support
Media files will be supported via Bunny.net storage, providing faster delivery and more cost-effective hosting. -
Advanced Blog Module
- Like / Dislike functionality
- Social sharing options for Facebook, Twitter (X), and WhatsApp
- Display of boosted advertisements within blog posts
- Advertisement display support
-
Blog Management & Controls
- Ability to enable or disable the blog module entirely
- Blog post actions:
Delete,Edit,Draft, andPublish - Blog search functionality
- Option to enable or disable individual blog features
-
Bug Fixes
Resolution of reported issues and known bugs. -
Giphy API Validation
If the Giphy API key is not configured, the Giphy feature will be automatically hidden.
This update focuses on improving performance, stability, and overall usability. Your feedback continues to play a key role in shaping the development roadmap.As always, feel free to share your suggestions, report issues, or ask questions in the comments. Thank you for your continued support
You did a nice job with this upgrade
Thank you, that’s great to hear. I’m happy you liked the upgrade. If you have any ideas, feature requests, or suggestions, feel free to let me know.
where can I allow reels and the play time in the admin panel
will we be able to use obs and other was to do a live stream?
You can manage this directly from the admin panel. Please follow these steps:
1-) Go to the Admin Panel. 2-) From the left menu, click on Settings → Limits. 3-) On the top section, click Reels Feature. 4-) Here you can:
- Enable or disable the Reels feature
- Set the maximum reel duration (in seconds)
Once you save the changes, the new settings will be applied immediately.
At the moment, OBS or similar external broadcasting software is not supported in Dizzy. Live streams are started directly from the website, using the built-in camera and microphone with a one-click flow.
Because of this architecture, it is not possible to stream directly from OBS or other tools. Supporting OBS would require an additional RTMP bridge / ingest system, which is not included in the current version.
This may be considered for future updates, but as of now, OBS is not supported.
Hello everyone, how are you?
I hope you are all doing well
With the new year just around the corner, I’ve released a new update for Dizzy. First of all, I would like to wish you all a happy, healthy, and successful new year 
Dizzy is now updated to version v5.3.5.
With this release, my goal was to make Dizzy even more stable and powerful for existing users, while also bringing it to a more mature and reliable level for those who are considering using it for the first time.
What’s new in version 5.3.5
- Poll Posts: Users can now create poll posts with vote-once protection, a dedicated profile polls tab, and full admin management.
- Campaign Posts & Donations: Target-based campaign posts with minimum and maximum donation limits, optional anonymous donations, and admin approval controls.
- Scheduled Publishing: Schedule posts for a future date, manage them from the admin panel, and publish automatically via cron.
- Ads Manager: A new advertising system supporting AdSense and third-party ad networks, with placements, frequency and offset controls, plus automatic migration from the old AdSense setup.
- License / Activation System: Centralized license activation using Envato username and purchase code.
- Payments & UI Improvements: Updated payment flows, improved invoice screens, and multiple user interface enhancements.
- Bug Fixes & Performance: Reported issues have been fixed and overall stability has been improved.
For existing users, this update brings more control, more flexibility, and new monetization tools. For new users, it means starting with a well-maintained, actively developed, and reliable platform.
If you have any feature requests, improvement ideas, or specific requirements you would like to see in Dizzy, feel free to share them with me via the support system:
https://support.dizzyscripts.com/new_ticket
I personally review all requests and feedback and take them into account when planning future updates.
Thank you very much for your support and trust 
Live video, subscriptions, paywall content
Can admin add any of these features as a permission from its backend then link it to any membership subscription that random users or creators must purchase first in order to use the correspondin functionalities sitewide ??
Please avoid creating a new comment for each question. You can continue the conversation by replying under the same comment where your previous question was answered.
Regarding your question: No, this is not possible. The system does not include a permission-based mechanism that allows the admin to bind live video, subscriptions, or paywalled content to a mandatory membership purchase for users or creators.
This functionality is not available in the current product scope.
Hi! I had the same problem; I received the Dizzy update notification four times at different times…
I submitted a ticket (#IYsMhcaQ) regarding license validation and a website error.
Please download again new version.
Thank you for awesome update!
Just curious Today, Why I got like 4 times email notification regarding “New Update Available” from envato?
Hi, is it possible to work with LiveKit to avoid Agora?
Yes, for this Dizzy codebase, LiveKit is supported for live streaming. You can switch the Live Provider to LiveKit in the admin Live Streaming Settings and set your LiveKit API Key/Secret and WebSocket URL; the backend will generate LiveKit room tokens and the frontend will connect using LiveKit.
Dude, the demo is down.
Please tell me that NowPay has already been implemented.
Thanks for your report. Demo activated. NowPayment is not added yet. But it will be come maybe next month.
Hi, Are you planning to integrate Bunny CDN for storage? The three solutions currently in use are among the most expensive on the market. Thanks.
Yes, it’s among my plans. It won’t be in the major update I’m about to do, but it will be added in the next update.
Live video, subscriptions, paywall content
Can admin add any of these features as a permission from its backend then link it to any membership subscription that random users or creators must purchase first in order to use the correspondin functionalities sitewide ??
Could you clarify how the private requests feature work, please ?? What are the files supported ?? Is voice message included
Hello
Hello,
Private Requests (Locked Messages) work as paid, one-to-one messages inside direct messages. A creator can add text, photos, or videos, set a price in points (respecting the configured minimum), and send it as a private request.
The recipient sees the content as a locked card showing the price and the number of attached media items. They can unlock it by paying the required points. If their wallet balance is insufficient, they are prompted to top up first.
The unlock is a one-time payment. Once unlocked, the content remains permanently accessible for that recipient and is not re-locked.
Regarding earnings, the system converts points to the selected currency, applies the configured platform fee, and credits the remaining amount to the creator’s balance.
All private requests are fully confidential between the creator and the recipient, making this feature ideal for custom content, paid media sets, or any bespoke request agreed upon.
Regards
Could everybody use the locked messages feature ??
Are there admin permissions allowin any creator to use subscriptions, paywall & Live Video or could everybody use any of these features ??
Hello,
Locked Messages (Private Requests): All users can receive and unlock locked messages by paying the required amount. However, sending locked messages is restricted to approved creator accounts only. Regular users can interact, follow, and send standard messages, but they cannot sell or send paid private content unless they are approved as creators.
Admin permissions & monetization features: All monetization features such as subscriptions, paywall content, and live video are permission-based and fully controlled by the admin.
From the Admin Panel, you can: – Define who can become a creator – Approve or revoke creator status – Enable or disable subscriptions and paywall features – Enable, disable, or restrict live video and live call features
These features are not available to everyone by default. Only users with creator status and the appropriate permissions granted by the admin can access and use monetization tools.
This ensures full platform control, compliance, and a clear separation between regular users and monetized creator accounts.
In the admin demo I do not see a way to edit the logo size (WxH). I also wonder why the script hangs forever when trying to add a cover image, retrieve lost password or signup register form. I also did not see anywhere to change the orange/light orange colors on the right sidebar widgets. Are all of these possible and I am just missing how/where?
Yes, all of these are available in the management panel. There is also a support panel for assistance. After purchasing, you can ask these technical questions and receive answers. However, when it comes to W/H, you can view the screenshot on the page at https://ibb.co/4R6Dm6V4.
Hello demo links are not functioning
No, it is working without any issue. https://dizzy.dizzyscripts.com
Hopefully you guys can move beyond agora and allow us to restream using our own browers,use live streaming software like obs studios and as in our case,we use https://vdopanel.com/ for our streaming key needs.While agora is certainally a great way of live streaming,in due time,its not going to stay affordable anymore sooner than later and we both(developer and end user) have to be preplan for that moment.Have alternative proactive streaming options.I hope you can consider those options for future updates.By the way,love the new homepage,its a very good upgrade,its more informative and very eye pleasing,keep up the good work!Can wait to see what else you have up your sleeves for next update!!!!!!.
Hi please check this my https://support.dizzyscripts.com/tickets my login credentials not working anymore and reset password system not working too. So I am not able to create a new ticket or check my old tickets
Hello,
I have reviewed the situation carefully and performed several tests on the reset password system. Everything is working correctly. Most likely, your previous reset link expired, as it is valid for 60 minutes. Please request a new password reset and be sure to check your junk or spam folder as well.
I also tested the login flow multiple times using different accounts, and there is no issue preventing access to the system.
Additionally, I would like to kindly remind you that your support period ended on 04/01/2024. To continue receiving technical support, you will need to renew your support package.
If you renew your support and still experience difficulties after requesting a fresh reset link, I will be happy to assist you further.