Funkywebsites
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Woo Commerce products page looks stupidLooks like you have a theming error, 🙂 try use a compatible theme or maybe think about editing the theme styling in woocommerce settings, turn woocommerce styling off.
Forum: Fixing WordPress
In reply to: Internal server error at wp-login.phpTry chmod the files in question, sounds like a permissions issue..
Forum: Localhost Installs
In reply to: Installation of WordPress as an Intranetif you have a windows based computer on the intranet, install WAMP. it will install mysql and apache server. then all you will have to do is install the wordpress into a directory on your localhost and happy days.
Forum: Fixing WordPress
In reply to: changed url and now i cant find my siteit looks like you have deleted the index.php
Forum: Fixing WordPress
In reply to: All of a sudden site won't loadre install all the main files in wordpress to your ftp except
wp-config.php
/wp-content/uploads
/wp-content/plugins/
/wp-content/themes/might be something wrong with the root files. just something to try
Forum: Fixing WordPress
In reply to: iOS 6 on AT&T 502 Bad Gateway Errormaybe a bad plugin installed that does something with mobile usage of the site..
or even maybe some bad coding within the theme your using, try a standard theme ???
Forum: Fixing WordPress
In reply to: Individual Permalink coming up 404try re creating the page ie teaching-2 and copy all content to it..
test if it works.. if so.
delete old page..
and rename the slug to teaching
🙂
make sure you delete it out of trash aswell as you still cant use that slug 🙂Forum: Fixing WordPress
In reply to: publish wordpress websiteit looks like you have a file access problem with your wordpress site not having correct read value on your FTP…
please log onto your cpanel and have a look at your read / write values on each file / folder you should find they all been reset to 0000, and not 0655 or 0777
Forum: Fixing WordPress
In reply to: publish wordpress websitegive me a text on skype [ redacted ] i will help you with this ??
Forum: Fixing WordPress
In reply to: How to shorten url from form (method="get")?$newstr=md5($str);
$newquery = md5($newstr);$explodethis = explode(“,”, $newquery);
echo $explodethis[0]; // qry1
echo $explodethis[1]; // qry2
echo $explodethis[2]; // qry3Forum: Fixing WordPress
In reply to: How to shorten url from form (method="get")?$str=$_GET[‘qry1’].”,”.$_GET[‘qry2’]”,”.$_GET[‘qry3’];
$newstr=md5($str);
$query=”?page_id=37&query=”.$newstr;put the $query in the url path on form get..
then get it to decode it back after…
with a simple chunk split i think..
Forum: Fixing WordPress
In reply to: How to shorten url from form (method="get")?it would be like
?page_id=72&query=hsywr2t3g4hjsud662js2let me find a code for you. and then the website would look at the query and decode it 🙂
Forum: Fixing WordPress
In reply to: How to shorten url from form (method="get")?you could encode it yourself into a simple string. with a little php code..
Forum: Fixing WordPress
In reply to: changed url and now i cant find my siteyou need to log into the mysql database of the wordpress database and change the path in there as it will have entries relating to your old path. or simple change the path to the old path on ftp. then go into wordpres wp-admin change it both in there, then start moving files about in http://FTP..
Forum: Fixing WordPress
In reply to: Fatal Error 500Solved !!! Was a Permissions Issued!! Sorry Guys