Jump to content

zille

New Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by zille

  1. My Maximum size allowed is: 1000000KB. What size should I set. Also max uploaded limit in your php.ini file is set 1000MB as I use the same server for my video website and I upload more than 700MB video files and successful without error but that a different website but same server.
  2. Hi, From admin panel I changed the maximum size of image upload to 5mb. Now when uploading image I get following error: 26-Sep-2015 20:14:29 US/Central] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 11952 bytes) in /home/…………………………………Uploader.php on line 270 /** * * rotate uploaded image automatically based on exif orientation * * @param string $fileName * * @return $this */ protected function _imageSmartRotate($fileName) { $output = null; if (function_exists('exif_read_data')) { $exif = @exif_read_data($fileName); if (!empty($exif['Orientation'])) { $image = $this->_imageCreateFunction($fileName); switch ($exif['Orientation']) { case 3: $output = imagerotate($image, 180, 255); break; case 6: $output = imagerotate($image, -90, 255); break; case 8: $output = imagerotate($image, 90, 255); break; } if ($output !== null) { touch($fileName); imagepng($output, $fileName); imagedestroy($output); } } } return $this; } /** * * add watermark to the image that has been uploaded * * @param $fileName * @param $watermarkText * * @return $this */ The line 270 error is this one under Case 6 bold. case 6: $output = imagerotate($image, -90, 255); break; Anyone know what is the problem.
  3. Hi I have a running website. The website has vertical menu but the problem is that especially in Google Chorome if you hit the url address in browser and then immediately press the navigations menu they will work accordingly. If you hit the url and view the main page for some time say 2 min and then click on buttons, most of them will not work especially E-Paper, Ration Stations, IT news, English newspapers, International newspapers. The remaining button will work perfectly any time. The coding for all button is same still this above mention buttons does not work unless you click them immediately after hitting the url in browser. This entirely done in Wordpress. Can anyone find a solution for me. The url is here: Bangladesh Online News
  4. Here is the PHP code for this HTML contact page <?php $mail_to = 'email@address'; // specify your email here // Assigning data from $_POST array to variables $name = $_POST['sender_name']; $mail_from = $_POST['sender_email']; $phone = $_POST['sender_phone']; $message = $_POST['sender_message']; $host_plan = $_POST['radio_group_1']; $additional_options = implode(' | ', $_POST['checkbox_group_1']); $host_period = $_POST['dropdown']; // Construct subject of the email $subject = 'www.bangladeshonlinenews.com Message from visitor ' . $name; // Construct email body $body_message = 'From: ' . $name . "\r\n"; $body_message .= 'E-mail: ' . $mail_from . "\r\n"; $body_message .= 'Phone: ' . $phone . "\r\n"; $body_message .= 'Message: ' . $message; $body_message .= 'User selected ' . $host_plan . ' hosting plan' . "\r\n"; $body_message .= 'Additional options selected: ' . $additional_options . "\r\n"; $body_message .= 'Hosting period: ' . $host_period . "\r\n"; // Construct headers of the message $headers = 'From: ' . $mail_from . "\r\n"; $headers .= 'Reply-To: ' . $mail_from . "\r\n"; $mail_sent = mail($mail_to, $subject, $body_message, $headers); if ($mail_sent == true){ ?> <script language="javascript" type="text/javascript"> alert('Thank you for the message. We will contact you shortly.'); window.location = 'contact.html'; </script> <?php } else { ?> <script language="javascript" type="text/javascript"> alert('Message not sent. Please, notify site administrator zille@qwre.com'); window.location = 'contact.html'; </script> <?php } ?> Unfortunately I have no knowledge in PHP. I added some fields in HTML but not sure how to edit the PHP file to make it work. Can anyone help. The HTML code already mention at the top.
  5. Can anyone Tell me where I find a easy tutorial to make a contact page using only HTML
  6. I have created this HTML Contact Page for my website. I have new in HTML but using various website info I managed to create a simple contact page. Now when I click on send button nothing happens. Later I found in search that I need a PHP file to support. I tried many time but nothing happen. Anyone can help me Here is my HTML code: <head> <title>News Contact Page</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <form action="contact.php" method="POST"> <label for="field_name">Your name:</label> <input type="text" id="field_name" name="sender_name"> <br /><br /> <label for="field_email">Your Email Address:</label> <input type="text" id="field_email" name="sender_email"> <br /><br /> <label for="field_phone">Your Mobile Number:</label> <input type="text" id="field_phone" name="sender_phone"> <br /><br /> <label for="field_message">Please Write you Enquire in brief:</label> <textarea id="field_message" name="sender_message"></textarea> <br /><br /> <b><p>Select Why You want to Contact US:</p></b> <input id="radio_1" type="radio" name="radio_group_1" value="shared"> <label for="radio_1">Add New link</label> <br /> <input id="radio_2" type="radio" name="radio_group_1" value="vps"> <label for="radio_2">Report Dead link</label> <br /> <input id="radio_3" type="radio" name="radio_group_1" value="dedicated"> <label for="radio_3">Advertising Price</label> <br /><br /> <b><p>Additional Add New Link Options:</p></b> <label for="field_name">Your Website URL:</label> <input type="text" id="field_url" name="sender_url"> <br /><br /> <label for="field_name">Your Website name:</label> <input type="text" id="field_url" name="sender_url"> <br /><br /> <label for="field_name">Your Website Logo:</label> <form action="index.php" enctype="multipart/form-data"> Select a file to upload: <input type="file" name="selectedfile" /> </form> <b><p>Additional Report Dead Link Options:</p></b> <label for="field_name">Category of Dead Link:</label> <input type="text" id="field_cate" name="sender_cate"> <br /><br /> <label for="field_name">Name of the Dead URL Website:</label> <input type="text" id="field_deadurl" name="sender_deadulr"> <br /><br /> <b><p>Additional Advertising Options:</p></b> <input id="check_1" type="checkbox" name="checkbox_group_1[]" value="privacy"> <label for="check_1">Feature Category Advertising</label> <br /> <input id="check_2" type="checkbox" name="checkbox_group_1[]" value="ssl"> <label for="check_2">Top Banner Advertising</label> <br /> Advertise for: <select name="dropdown"> <option value="1m">1 month</option> <option value="2m">3 months</option> <option value="6m">6 months</option> <option value="1y">1 year</option> </select> <br /><br /> <label for="field_name">Your Website name:</label> <input type="text" id="field_url" name="sender_url"> <br /><br /> <form action="index.php" enctype="multipart/form-data"> Upload your website Logo For Advertising: <input type="file" name="selectedfile" /> </form> <input type="submit" name="send_message" value="Send"> </form> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.