Slllobodan
Forum Replies Created
-
Thank you for the update, all is good now.
Cheers
Forum: Fixing WordPress
In reply to: Error 500 in the wp-adminForum: Fixing WordPress
In reply to: Error 500 in the wp-adminTry using notepad++ to search and replace all the links in your database from https://mysite.com/ to localhost/ then upload database to the xamp.
Forum: Fixing WordPress
In reply to: Error 500 in the wp-adminoh ,sorry u replayed while i was writing. Only thing i can think of is that you didnt convert database links to work on localhost properly, try it again.
C-panel backups have myhome_mysite_backup.gz but localhost is using only mysite_backup.sql.gz format, also database name and username is in mysite_database and mysite_user format. I use Notepad++ to covert all the links with search&replace. Hope that helps.
Forum: Fixing WordPress
In reply to: Error 500 in the wp-adminI downloaded a web page to make modifications
Did you mean that you download backup of a live site to edit in localhost?
Which plugin you are using for localhost?I have configured the configuration file and the links of the database
Did you edit links in database correctly and how?
Did you check or remove htaccess file.
Did you correctly edit wp-config.php?Forum: Fixing WordPress
In reply to: wipe and reloadYour admin works but front-end doesn’t. Try re-saving permalinks to anything but default in settings>>permalinks, also try changing theme to default twenty-seventeen and see if that solve the problem, or disable all the plugins if problem is solved enable them one by one to see which one is the problem.
Forum: Fixing WordPress
In reply to: Error 500 in the wp-adminTry to backup .htaccess file and after that delete it, then try to login.
If problem is solved go to wp-admin>>>setting>>>permalinks change permalinks to anything but default and press save as it will recreate htaccess file again.
Forum: Everything else WordPress
In reply to: Jetpack vs. other pluginsIf you need just 1 or 2 functions from Jetpack i would rather use specific plugins, but for wp beginners i think Jetpack is good as it will help you simplify a lot of things.
Check Jetpack modules list and decide.
https://www.hermesthemes.com/jetpack-wordpress-plugin-modules-features-explained/Forum: Fixing WordPress
In reply to: Plugin to upload mediaIt have to be something specific, is it a html, audio, video, text, product…..what?
Forum: Fixing WordPress
In reply to: How do you add your Adsense Activation Code into the siteEditing theme files would be much easier with FileZilla software for win or mac instead using editor in wp. Just install https://filezilla-project.org/ and logging with:
host: your-site-.com
username: your-hosting-username
password: your-hosting-passwordFind all your website files and structure in public_html, look for wp-content/themes/your-theme-name/header.php
Forum: Fixing WordPress
In reply to: How do you add your Adsense Activation Code into the siteIm personally using adInserter plugin, no advertise Im NOT developer i just like this plugin as its easy to use.
Otherwise you can add it manually anywhere you want by inserting ONE time in header:
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
Open tools>>editor and find header.php file and add before </head>
and add the rest of the adsense code anywhere you want like widget or template files:
<!-- MY-SITE-ADS RESPONSIVE --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-1111111111111111" data-ad-slot="111111111111111" data-ad-format="vertical"</ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script>
Use responsive ads to adjust to all sizes automatically.
If you want to use specific sizes with responsive ads just add this before the code:
<div class="ads_2"> <style type="text/css"> .adslot_2 { width: 120px; height: 240px; } @media (min-width:500px) { .adslot_2 { width: 120px; height: 600px; } } @media (min-width:800px) { .adslot_2 { width: 160px; height: 600px; } } @media (min-width:1000px) { .adslot_2 { width: 300px; height: 1050px; } } </style> --- GOOGLE ADSENSE CODE --- </div>
- This reply was modified 6 years, 10 months ago by Slllobodan.
- This reply was modified 6 years, 10 months ago by Slllobodan.
- This reply was modified 6 years, 10 months ago by Slllobodan.
Forum: Fixing WordPress
In reply to: Facebook comments error: “can’t download”I would try posting this to the plugin support page at
https://www.ads-software.com/support/plugin/social-gallery-lite
Forum: Installing WordPress
In reply to: Localhost install wordpress based on current HTML websiteTheme looks grate, good work, simple and elegant I like it.
WordPress gives you a lot more functionality i would still at least try to convert some similar theme to yours using same css styling.
Forum: Fixing WordPress
In reply to: Media not recognised by Media LibraryI would try re-installing wordpress, new clean install with new database. You can even try to find does your hosting c-panel have automatic install script like softaculous or similar.
Also site url would help.
- This reply was modified 6 years, 10 months ago by Slllobodan.
Forum: Fixing WordPress
In reply to: siteurl get’s changedWell this is the question, why, url’s are set only in settings>>>general and maybe some plugins have effect on them. Usually debugging wordpress is in order, empty all caches including wp and browser, disable all plugins, revert theme to twenty-seventeen and check everything, also i would check DNS settings at your domain host.
I think it would permanently solve your problem if you define absolute url’s in wp-config.php as i mention before.
- This reply was modified 6 years, 10 months ago by Slllobodan.
- This reply was modified 6 years, 10 months ago by Slllobodan.