WordPress help - Ask your questions

Status
Not open for further replies.
Hello guys, I hope this is the right place to ask.
Add media button and featured image button don't work for me. I searched on google and tried all the methods (deactivate plugins, change browser, clear cache). Do you have any idea how to solve this?
When I opened console I noticed this error Uncaught SyntaxError: Unexpected token ILLEGAL
 
Last edited:
Hi
I installed wordpress yesterday to start building my site. But as soon as i started to install the plugins i got this massage.
What can i do to fix this?

Fatal error: Maximum execution time of 10 seconds exceeded in /home/a3490151/public_html/wp-admin/includes/class-wp-filesystem-direct.php on line 187
 
I'm using the WP theme Tiger on my blog. I really love how the header looks, but with my logo all the way over to the left, I'd like to add two small square affiliate adds to the middle and the right. If anyone could help me with this, I would be very grateful. :)
 

Attachments

  • header-1.jpg
    header-1.jpg
    41.6 KB · Views: 5
  • header-2.jpg
    header-2.jpg
    43.9 KB · Views: 4
i have just installed theme junkies video pro theme. I can insert the video using the embed code but the thumbnail doesnt display. When i add a custom image, it links to the home page and not the video page. any ideas?
 
What is, in your opinion, the most effective way of deleting the wordpress version in the source code ?
 
Hello BHW, I have a question about Alt Atributes. I use the Plugin SEO Friendly Images, and I want to know, how many Atributes make sense? Can I add up to 15, or better just 3 or 4..Thanks in advance!
 
I can't figure out how to change my theme. I've read many threads but I can't find an 'INSTALL THEME" Button, or install plugins. hahah so newbie but.. please.
 
Dashboard / Appearance / Themes / Add new, and you'll have possibility to add / upload new theme, or if you know exact name of theme (from directory), type it, and install. Then you just need to activate it.
 
Want to ask, searching on google how to edit attachment page permalink, but I still don't understand, maybe you can help me how to do it more easily.

For example I have attachment page permalink: domainname.com/beautiful-home/interesting-beautiful-home/ . that's it, how to edit it so it's changed into permalink like this: domainname.com/beautiful-home/attachment/interesting-beautiful-home/ ?

So, it's added with "attachment". Thanks, hope you can help me.. :)
 
Doing this is a bit tough, as you have to modify the wordpress query vars. Check this thread for a clue.

http://wordpress.stackexchange.com/questions/5015/attachment-url-rewrite
Want to ask, searching on google how to edit attachment page permalink, but I still don't understand, maybe you can help me how to do it more easily.

For example I have attachment page permalink: domainname.com/beautiful-home/interesting-beautiful-home/ . that's it, how to edit it so it's changed into permalink like this: domainname.com/beautiful-home/attachment/interesting-beautiful-home/ ?

So, it's added with "attachment". Thanks, hope you can help me.. :)
 
You mean the whole package? That's tough, and not good IMO. As for deleting the version info from the output html, add the following filter:

Code:
function remove_version_info() {
     return '';
}
add_filter('the_generator', 'remove_version_info');
What is, in your opinion, the most effective way of deleting the wordpress version in the source code ?
 
Hi! How to create bulk of twitter account with the create api permission? twitter changed their policy, if you want to create api you have to verify your mobile phone. I want to autoblog and send feed to twitter with picture. Is there any plugin can send feed with photo to twitter without api key need? :sad:
 
Thanks for offering your help - I am struggling with a plugin on a site I bought(big learning curve)
Plugin is Yoast SEO (free version) - I am using the plugin on an amazon store - and when I carete or update an exisiting post - the custom field add a thumbnail inst generating images or thumbnails?? I add the featured image it shows on how page but when I click on that post its empty?? and no thumbnails - I tried to follow the former websites other posts but nada - Help please and Thanks :)
 
Can anyone recommend any theme for tv shows/movies niche? I would need big thumbnails for the movie pictures.
 
Obvious selection to request questions in, Search Engine Optimization so this thread is likely to be of great advantage to nevertheless they wont speak about a lot of things, and have not a hint about selling or users.
 
Hi, have a wp site on a free hosting, now I'm moving to payed host, and have to backup my site to restore it on a new host. Problem is that my free host stop responding during backup (using cyan or updraft plugin), so I can't make a backup file to restore it later.
Is there some way over Ftp or something to download whole site and reupload it on a new host, if this is possible?

thanks in advance
 
Hi, have a wp site on a free hosting, now I'm moving to payed host, and have to backup my site to restore it on a new host. Problem is that my free host stop responding during backup (using cyan or updraft plugin), so I can't make a backup file to restore it later.
Is there some way over Ftp or something to download whole site and reupload it on a new host, if this is possible?

thanks in advance

>Login to your FTP.
>Download phpmyadmin and copy the folder to there.
>Go to your wp-config.php inside root and copy username password, then navigate to yourdomain.com/phpmyadmin
>Use the details you just copied, and login to your database using phpmyadmin.
>Select Database and Export.

You now have the database. For the files, let's do a trick.
Create a new file called zip.php inside your server root (public_html or whatever) and save it after adding the code below:
Code:
<?php
set_time_limit(0);

zipFile(dirname(__FILE__),'mybackup.zip', true);

function zipFile($source, $destination, $flag = '')
{
    if (!extension_loaded('zip') || !file_exists($source)) {
        return false;
    }

    $zip = new ZipArchive();
    if (!$zip->open($destination, ZIPARCHIVE::CREATE)) {
        return false;
    }

    $source = str_replace('\\', '/', realpath($source));
    if($flag)
    {
        $flag = basename($source) . '/';
        //$zip->addEmptyDir(basename($source) . '/');
    }

    if (is_dir($source) === true)
    {
        $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($source), RecursiveIteratorIterator::SELF_FIRST);
        foreach ($files as $file)
        {
            $file = str_replace('\\', '/', realpath($file));

            if (is_dir($file) === true)
            {
                $zip->addEmptyDir(str_replace($source . '/', '', $flag.$file . '/'));
            }
            else if (is_file($file) === true)
            {
                $zip->addFromString(str_replace($source . '/', '', $flag.$file), file_get_contents($file));
            }
        }
    }
    else if (is_file($source) === true)
    {
        $zip->addFromString($flag.basename($source), file_get_contents($source));
    }

    return $zip->close();
}

Run that file from your browser by calling yourdomain.com/zip.php and let it run as long it takes. Once done, enter yourdomain.com/mybackup.zip and download the zip file. That's your files. So now you have everything :-)
 
Couldn't finish creating a .zip file, server stops responding every half a minute (that's why I'm moving to payed host), but managed to do regular wp export, and import on a new host.
Did have to reupload all the images again, and relink all of them :/....
But, job done

Thanks again for giving me this useful answer, anyway, for future backuping
 
Last edited:
This is why you don't use crappy free hosts lol sorry :)
Couldn't finish creating a .zip file, server stops responding every half a minute (that's why I'm moving to payed host), but managed to do regular wp export, and import on a new host.
Did have to reupload all the images again, and relink all of them :/....
But, job done

Thanks again for giving me this useful answer, anyway, for future backuping
 
Status
Not open for further replies.
Back
Top