mattspaeth
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Responsive Slider] Not displaying correctly on Internet ExlorerI’m having this exact same problem, but it’s occurring in Chrome. The script is calculating the images way too small on page load, but then when resizing the browser, it calculates correctly.
Site is on a private staging server, so I can’t post a link. Any ideas?
Thank you for being so helpful and responsive. You are certainly a standout developer. I have sent Teamwork Desk a message to request if they can use the Reply-To header.
Forum: Fixing WordPress
In reply to: What would make this search form stop working?Jose, I am doing this because I only need the jQuery toggle function to work on browser windows greater than 1139 px.
Below this width, I have CSS media queries that make the search form visible and hide the button that causes it to appear/disappear at browser window sizes above 1139 px.
As far as I know, there isn’t a way to interactively toggle visibility using CSS. Is there?
Oops, thanks Mikko. I forgot that’s how this plugin works.
The reason I thought it wasn’t working was because the search form wasn’t appearing with the category dropdown below it. But I just tried it and it’s clear that it’s working.
The category dropdown is now appearing after a term is searched. Is this how it’s supposed to function?
Thanks Cheey,
I am trying to use a CSV I exported from a Bento database, which apparently doesn’t make the grade either. I looked at the file and it only had one of fields quote delimited, probably because this field contains paragraphs of text.
Do you know of any tools I could use to either import and export a better formatted CSV? Or alternatively, an application that processes CSVs to change delimiting?
Thanks,
MattForum: Fixing WordPress
In reply to: Multiple search boxes on one siteThis is awesome. I have been looking to do the exact same thing. Did you submit this plugin? I would love to use it.
ipstenu, can you advise me what options I would need to select to copy one table to another? I am getting errors while copying “Data only”. I tried “Add AUTO_INCREMENT value” both on and off.
Here is the error:
SQL query:
INSERT INTO
foodtestone
.wp_posts
SELECT *
FROMfoodtestthree
.wp_posts
MySQL said:
#1062 – Duplicate entry ‘1’ for key ‘PRIMARY’
Thanks,
MattI didn’t get any warnings about tables already existing while doing my import. WordPress gives me the blank screen, not phpMyAdmin. Thanks for the info, I will dig into the DBs later today. Hopefully, I can resurrect some stuff.
Thanks,
MattOk, that .htaccess file is in the subfolder.
Do you have any ideas on how to fix the database I am trying to import?
Thanks ipstenu, it looks like you posted that while I was writing my lengthy memoirs.
Those redirects were created when I used my hosts web-based interface. I just looked up my .htaccess for the new currently working fresh install (but no data) and here is the .htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
It is the same as above without the redirects. I have to leave the house for most of the day, but I will be able tinker with your .htaccess suggestions later this evening. Thank you for your help.
Matt
Andrea,
Thanks for your interest in my problem. To make this easier to understand I will call my previously existing site, “subdirectory wp site” and the new install, “parent directory wp site”. The “parent directory wp site” is installed in the root of my public_html directory and the “subdirectory wp site” is the one that is broken.
When I was first installing the “parent directory wp site” I was transferring it from my local MAMP server. I just uploaded everything into my root public_html directory and then imported the mysql database using phpMyAdmin. I was having issues getting it to work even after I changed wp-config, I think there were variables in the database that were preventing it from working. I was just getting 404 errors. So finally I deleted everything I uploaded for this site in the public_html directory, and did a fresh install. I never touched anything in the existing “subdirectory wp site”.
I got the new “parent directory wp site” to work on the new installation by using the Tools->Import command from within the WP administration interface and then installed the custom theme I created on my local MAMP server.
Going through phpMyAdmin, I somehow lost the database for my previously existing “subdirectory wp site”. Or actually the one I thought it was has entries for my new “parent directory wp site” and does not have any of the old “subdirectory wp site” entries. Perhaps I inadvertently imported into the wrong database. When you import into a database with phpMyAdmin, does it add to that database’s entries or replace them?
So now I did a fresh install for the previously existing “subdirectory wp site” in a separate subdirectory. It is completely working until I try to import the back up file of this site’s mysql database, then it gives me the blank screen. If I point it towards another database, it works but I don’t have the data I am trying to get back.
Any thoughts?
I am definitely going to do lots of backups through Tools->Export in the future!
Thanks,
MattOK. I think it is something with the database that is causing this problem. I installed a new copy of WP into another subdirectory. When I imported the database, it is giving me the same blank page.
Does anyone know what I need to change in the database so it can load correctly?
It is a subfolder install. Google Chrome has been acting up on me lately and I noticed some folders in strange places in cPanel. I wonder if something got inadvertently changed or moved. I am not very familiar with .htaccess files.
Here is the .htaccess
RewriteEngine on RewriteCond %{HTTP_HOST} ^foodintegritynow.com$ [OR] RewriteCond %{HTTP_HOST} ^www.foodintegritynow.com$ RewriteRule ^/?$ "http\:\/\/foodintegritynow\.org" [R=301,L] RewriteCond %{HTTP_HOST} ^foodintegritynow.net$ [OR] RewriteCond %{HTTP_HOST} ^www.foodintegritynow.net$ RewriteRule ^/?$ "http\:\/\/foodintegritynow\.org" [R=301,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Thanks for your help.