Search found 22 matches

by phpserver
Tue Dec 16, 2008 1:36 am
Forum: PHP - Code
Topic: PHP send_mail help needed
Replies: 2
Views: 182

Re: PHP send_mail help needed

Have you checked .htaccess files that came with the script?.As a security routine,yahoo creates .htaccess on demand.Talk with your web host,he will help you out.If he dont,get a swift mailer class and rewrite the send email functions to you liking.
by phpserver
Tue Dec 16, 2008 1:30 am
Forum: PHP - Code
Topic: IS IT POSSIBLE TO DECRYPT HTTP PASSWORD?
Replies: 1
Views: 92

Re: IS IT POSSIBLE TO DECRYPT HTTP PASSWORD?

It is possible but i dont see anything useful in such an en devour,it is gonna cost you.
by phpserver
Tue Dec 16, 2008 1:27 am
Forum: PHP - Code
Topic: Get characters in between 2 strings
Replies: 3
Views: 126

Re: Get characters in between 2 strings

You will need a full php script called forgot password.

Code: Select all

<?
class Forgot_password extends model
{
function lost_pass()
{
//ways to retrieve lost pass
}
}
?>
by phpserver
Tue Dec 16, 2008 1:17 am
Forum: PHP - Code
Topic: Retrieve data from XHTML - SOAP & PHP
Replies: 1
Views: 126

Re: Retrieve data from XHTML - SOAP & PHP

What exactly do you want to achieve?.I read your code and its hard to see what you are up to in the first place.
by phpserver
Tue Dec 16, 2008 1:13 am
Forum: PHP - Code
Topic: xmlrpc array problem
Replies: 3
Views: 108

Re: xmlrpc array problem

There is no error.It also happens in a mysql database.Let us say you want to fetch an array from mysql and you ain't got any data,you will get an array.Yours works just fine.
by phpserver
Tue Dec 16, 2008 1:03 am
Forum: Javascript
Topic: what is joomla
Replies: 2
Views: 444

Re: what is joomla

Joomla is a content management system (cms).Of late joomla has evolved to become an mvc on itself.A cms is a fully developed website and is distributed free of charge for anyone to use.Joomla comes with many modules,templates and components such that the feel,functionality and look can be manipulate...
by phpserver
Mon Dec 15, 2008 6:09 am
Forum: PHP - Code
Topic: php guru needed for login.php
Replies: 2
Views: 177

Re: php guru needed for login.php

If a user is authentic he/she will be redirected to the page youy want.

if($login_creds == $theones_taht_exist_in ya database)
{
redirect("the_page_you_wish_to_redirect_to")
}
by phpserver
Sun Dec 14, 2008 4:36 am
Forum: Databases
Topic: Connecting to remote MySQL Database with CPanel
Replies: 2
Views: 494

Re: Connecting to remote MySQL Database with CPanel

You will need a database migration tool to do such a task or do it the easier way.Go to phpmyadmin and export everything to a text file,then take the text file and dump it into your new website. For the part of database migration tools,swiss sql has plenty but i have not yet researched on mysql,chec...
by phpserver
Sun Dec 14, 2008 4:19 am
Forum: Installation and Configuration
Topic: Configure smtp virtual server - IIS6, php5.2.x, win2003Serve
Replies: 2
Views: 1354

Re: Configure smtp virtual server - IIS6, php5.2.x, win2003Serve

mail() consumes a lot of resourses out of ya memory,try using swift mailer class.Swift mailer has found a way to go around the need to use mail(),somehow,and it works just fine.
by phpserver
Sun Dec 14, 2008 4:16 am
Forum: PHP - Code
Topic: How to save and retrieve uploaded files paths in mysql
Replies: 1
Views: 190

How to save and retrieve uploaded files paths in mysql

I intend to make a script that uploads a file in a folder and saves its path in mysql.I have made mine but i would like to see yours,once mine is 100 % complete am gonna share it.

cheers
by phpserver
Wed Oct 22, 2008 3:25 am
Forum: Installation and Configuration
Topic: Problem with phpmyadmin
Replies: 1
Views: 927

Re: Problem with phpmyadmin

Hi! Help me, please, to solve the problem with phpmyadmin! When I launch a phpmyadmin in browser, I have the next response from the server: Forbidden : You don't have permission to access /pma on this server. What I need to change in my configuration settings? Perhaps, I need to do some changes in ...
by phpserver
Wed Oct 22, 2008 3:15 am
Forum: PHP - Code
Topic: Change DNS to point to a php file - How to handle
Replies: 3
Views: 325

Re: Change DNS to point to a php file - How to handle

I have domain name http://www.xxxx.com hosted on Host A and domain name http://www.yyyy.com or http://www.zzzz.com etc... I would like to change the DNS for http://www.yyyy.com or http://www.zzzz.com etc... to point to Host A. How can I capture the event in Host A so that I know which url it coming...
by phpserver
Wed Oct 22, 2008 3:11 am
Forum: PHP - Code
Topic: Community Software
Replies: 1
Views: 190

Re: Community Software

Can anyone suggest a decent, cheap community software? I really like the way the veloist.com site looks, but I was wondering if anyone could guess what they used or suggest another one. Thanks. Veloist.com use a 'clone' to the free version of dolphin distributed in the us and australia by expertzz....
by phpserver
Wed Oct 22, 2008 2:43 am
Forum: Coding Critique
Topic: Login system, lets try and modify
Replies: 6
Views: 3673

Re: Login system, lets try and modify

I tried to make login system so here it is, try it and help to improve it. Sql database table    CREATE TABLE `andmed`.`login` ( `id` INT NOT NULL AUTO_INCREMENT , `username` VARCHAR( 62 ) NOT NULL , `password` VARCHAR( 33 ) NOT NULL , `time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , PRIMARY K...
by phpserver
Wed Oct 22, 2008 2:33 am
Forum: PHP - Code
Topic: Change DNS to point to a php file - How to handle
Replies: 3
Views: 325

Re: Change DNS to point to a php file - How to handle

I have domain name http://www.xxxx.com hosted on Host A and domain name http://www.yyyy.com or http://www.zzzz.com etc... I would like to change the DNS for http://www.yyyy.com or http://www.zzzz.com etc... to point to Host A. How can I capture the event in Host A so that I know which url it coming...