wpismypuppet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: restoring media after deleting a userThe only way you’ll be able to “restore” the media is to restore your WordPress database back to a time before you were hacked… Otherwise you’ll have to re-upload all the images and assign them to the correct post.
Once an image is deleted, it’s “permanently” deleted according to WordPress. The fact that you still have them in the upload folder is a good thing! But the database records that point to, and associate, the media files are gone, and those can only be replaced with a database restore, or re-establishing them via re-upload.
Forum: Fixing WordPress
In reply to: Image issuesUm… Guest has no rights to anything… all I see is the dashboard and the guest profile. Can’t help you there…
Forum: Fixing WordPress
In reply to: Custom Taxonomy Terms Page Not FoundWell, that test wouldn’t work, right? Cause you have a custom taxonomy called “section”. Change “glossary-sections” permalink to something completely unique and see if you can access the page that way.
Forum: Fixing WordPress
In reply to: How to Increase Upload File Size LimitNo problem… Glad it worked out.
Forum: Fixing WordPress
In reply to: Custom Taxonomy Terms Page Not FoundDo you have a custom post or custom taxonomy that shares the slug “glossary-sections” by any chance?
Forum: Fixing WordPress
In reply to: How to Increase Upload File Size LimitOpen up your index.php file on the root of your website and add the following as the FIRST line:
<?php phpinfo(); die(); ?>Now load your website and you should see a whole PHP Version informational page…
Look for a line “Configuration File (php.ini) Path” and see what path is… That should show you where the file is located and you should be able to get it that way.
Forum: Fixing WordPress
In reply to: Custom Taxonomy Terms Page Not FoundSo to get this straight… you have a physical page with a slug called “library”, a child page with a slug called “glossary-section” and a custom taxonomy where the terms will display as “library/glossary-start-here/[term-name-here]”, correct?
And you want to be able to see a page called “library”, a taxonomy archive called “glossary-section”, and when any term is clicked, a taxonomy term page called “/library/glossary-start-here/[term-name-here]”??? Is that correct?
Forum: Fixing WordPress
In reply to: How to Increase Upload File Size Limitphp.ini will not be found in your website’s folder. If you have full access to your server, do a search for php.ini. It’s usually in an etc folder inside the php installation folder. How are you running your site? IIS, Apache??? Once you change the php.ini, you have to restart the web service.
In order for a .htaccess file to modify the php.ini settings, you have to tell your server to let that happen… it’s not set to do so by default as it is a major security issue.
And in order for a php.ini file within your website folder to modify the main php.ini information, you also have to have the server allow those changes.
But none of that is necessary if you have full access. Just do a search for php.ini and find the lines above and change them. Then restart Apache or whatever you are using as a web service.
Forum: Fixing WordPress
In reply to: How to Increase Upload File Size LimitIt’s a restriction in PHP, not WordPress. The best solution is if you have access to php.ini, make the following changes:
memory_limit = 32M upload_max_filesize = 10M post_max_size = 20MThis, of course, depends on your hosting company. Most don’t allow direct access to php.ini, but offer alternative solutions to change just those values you need to alter. You’d have to check out your hosting company’s policy.
You can also try to add this info into the .htaccess file by adding:
php_value upload_max_filesize 10M php_value post_max_size 20M php_value memory_limit 32MBut most hosting companies will restrict users from using .htaccess to modify php.ini information. Check with your host on the best solution, but these are the only two options.
Forum: Fixing WordPress
In reply to: Custom Taxonomy Terms Page Not FoundThis might be silly, but have you visited settings->permalinks? You don’t have to change anything, but just visiting that page resets the permalinks. This is a common fix for a lot of taxonomy rewrites.
Forum: Fixing WordPress
In reply to: Please help! Sub pages not showing upBy default, child pages do not show up in WordPress menus… most of the time, parent pages won’t show either unless you click a checkbox telling them to. Try going into “appearance”->”menus” Do you have a menu set up there? Maybe more than one?
If you do, find the primary navigation and see if you can manually add a child page. On the left side, you’ll see a box called “pages” and by default it’s on “most recent”, which annoys me 🙂 Change that tab to “view all” and see if your child page is listed. If it is, check it, then click “add to menu”. Simply drag and drop it where you need it.
If you want it as a child to a parent link (i.e. a drop down), then when you drag and drop under the parent, drag it slightly inward (to the right) until the dashed border shows it indented.
See if any of this helps… let me know what you find.
Forum: Fixing WordPress
In reply to: WP Gallery pictures: weird lines in ExplorerGlad it worked out!
Forum: Fixing WordPress
In reply to: Please help! Sub pages not showing upHmmm… I’m having trouble visualizing what it is you are trying to accomplish. In the admin area, you are under “Pages”. Then you make a new parent page… and that works. Something like http://uphypnosis.org/classes/.
Then you add a new page as a child to “classes” called class1 for example… so you should have a link like http://uphypnosis.org/classes/class1/.
And this is where you are having an issue? This new page, http://uphypnosis.org/classes/class1/, shows a 404 or something? Am I on the right track?
Forum: Fixing WordPress
In reply to: Using Anchor TextOk… so here’s the deal.n On the page that generates this page:
http://www.theparadym.co.uk/trailers/
Find where the title is being pumped out. It might be index.php for all I know, but you’ll want a template file for this page regardless since you want to add #trailer to the end of those anchor tags, and you don’t want that to be appending to just any post. Are you familiar with making a template?
Once you find where the title is being pumped out, you’ll see the code that makes the anchor tag enclosing it… Might look something like:
echo '<h4><a href="'.get_permalink().'">'.get_the_title().'</a></h4>';Simply change it to look like this:
echo '<h4><a href="'.get_permalink().'#trailer">'.get_the_title().'</a></h4>';Then, on the page that is generating these “pages”:
http://www.theparadym.co.uk/games/watch-dogs/
Where you are pumping out the word “Trailers” add the bookmark. So I believe you have:
<h3 id="trailers">Trailers</h3>Change it to:
<h3 id="trailers"><a name="trailer"></a>Trailers</h3>Just make sure the name=”trailer” matches #trailer. You don’t want name=”trailer” and then #trailers as that won’t work. Just duplicate this method for Games, News, whatever…
Forum: Fixing WordPress
In reply to: Add pictures to Media LibraryUnless you have a direct connection to your remote server through a mapped drive, it is impossible to tell WordPress to look at a different server to upload images. So, yes… you would have to first copy them down to your local machine and then upload them to WordPress from there.
The only other solution would be if you could remote desktop the remote server and get on the internet from it… then you could log into WordPress from the remote machine and browse the files no problem.
Theoretically speaking… let’s pretend that you have the remote server mapped to your local machine. If you were to have WordPress access those file and upload them, those files would still be “copied” to your local machine and then uploaded to WordPress from there… it would just be more transparent to you… but there would never be a “direct” connection from WordPress to a remote machine… only the machine you are using to log into the admin area.