Aleksandar
Forum Replies Created
-
Thanks for the support, I will also report the thread to transliterator plugins developers so they are aware of this too. No further help is needed, we got it working.
Thanks for the support. The problem was in plugin transliterator which translates cyr to latin characters. There is an option to translate REST API and somehow although everything should be on latin and shouldn’t cause an issue, the rest request is broken. I didn’t have issue with other plugins.
Thanks for the reply. I tried reseting sitekit in settings and I just noticed I can’t even access Admin Settings. Upon clicking on admin tab I get the same error in chrome console and Admin is not available.
As for disabling plugin and changing other settings on the website, I can’t go any further as it’s Live website and it will be notable to users. Can I make staging website and test sitekit same as with live version of the website. Will it work with copy on subdomain.website.tld or once it’s set it’s tied up to website.tld ?
https://photos.app.goo.gl/67VAJdBV7tu5AnQRA
- This reply was modified 7 months, 2 weeks ago by Aleksandar.
Thank you for the response. I had no luck with troubleshooting. I tested with troubleshooting plugin switching theme and turning off all plugins but I still get the same error.
Thank you for quick response. So I have submitted the information in the form you provided.
I have multiple websites installed and working fine on the same server. So It’s same environment, same setup, same php version, all of them have wordfence… and so on. And I don’t have problem with sitekit on other websites. The difference that might come to my mind is that while other websites are in English, this one is in sr_RS language (Serbian) and have transliterator installed.
Same here, and it’s not only on one website, this is 3rd website I’ve updated and licenses are not working, on each one “An error occurred while installing your license key.”
And as I see there are many users reporting the same problem since they updated their wordfence.
Alright thanks, I will be watching the github thread too.
Hi, i can access error logs on 2 of the websites and apache logs on one of them, i can’t access error logs on 3rd website.
I have sent the logs on the mail.
On one of the websites i disabled wordfence and selected option to delete database on deactivation, enabled it again, reduced the load to 2 seconds.
I will monitor that website to see if load time will increase over some period.
Hello, thanks for support,
I have sent it from 3 different websites and all of them are on different servers and providers.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] How to translate plugin custom stringsI’ve looked at wp globus translate options plugin and although it works fine for plugins like revolution slider, it doesn’t work for booking one i have.
I’ve looked at “WPGlobus Plus multilingual extension” which technically explains, it should be able to make it work but i am not sure.
Here is the screenshoot of custom field.
https://www.imagebam.com/image/b0bd231326223896
Any suggestions if paid version could work or how to make it work would be appreciated.
Forum: Fixing WordPress
In reply to: date_i18n not capitalizing first letter of the monthI fixed this by wrapping output in specific class like <span class=”mesec”>output</span> and added text-transform:capitalize property to css.
- This reply was modified 7 years, 1 month ago by Aleksandar.
Ok, so i bought a premium plugin and found out that swipebox have the functionality that i need, so this basically works good for me now, i just wish that blueimp could work with that feature because it’s much more nicer and smoother than swipebox. Anyway good work with the plugin.
The solution is actually very simple, it’s just one line of code, since i realized that attachment id is actually same as any other post id i can retrieve user id based on post field.
$post_author_id = get_post_field( 'post_author', $post_id );
This gets the user id of the user who uploaded image and $post_id is image attachment id
So further checking
if( $post_author_id == $current_user->ID )
Checks if the uploader of the image and currently loged in user are the same and allow or cancel image deletion.
Oh looks like i didn’t understood you completely. So basically no need to worry about sanitization aven if i build custom admin page for my theme options because i will do saving with wordpress functions same as i would save any other options in wordpress.
I have build a few customized plugins, many custom metabox options and even theme options and i had no problems before. They always save as intended and escaping any injections or script tags if i try to save. But so many people say always sanitize,always sanitize your inputs so i started to doubt that custom inputs have to get sanitization before saving to database.
But what you said is i need to sanitize inputs in case like if i build custom booking option for users to input their data, that would require custom table in database and custom function, in that case i would have to worry about sanitization.
Thanks for clearing things up a bit.